Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-22 14:40:24 +0400 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms) Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (10.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (5.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreatePosts (20130422111954) Migrating to CreateUsers (20130422112200)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (20.8ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (6.5ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (5.7ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (5.1ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (5.4ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (5.5ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (21.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (5.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.5ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (6.7ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (5.6ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (5.7ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (6.8ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (5.7ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (5.2ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (18.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (6.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.6ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (5.6ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (5.2ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (5.3ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (5.7ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (5.7ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (6.6ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Started GET "/" for 127.0.0.1 at 2013-04-22 15:54:41 +0400 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.3ms) Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) begin transaction SQL (1.8ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (48.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (10.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Mon, 22 Apr 2013 15:10:58 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.7ms) commit transaction Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (2.9ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00]]  (18.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Mon, 22 Apr 2013 15:12:05 UTC +00:00], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 8], ["topmost_obj_type", "p"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 9], ["topmost_obj_type", "p"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 10], ["topmost_obj_type", "p"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 4], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 5], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["user_id", 6], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00], ["name", "Category_0"], ["owner_id", 4], ["owner_type", "u"], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:12:06 UTC +00:00]]  (6.5ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (10.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (5.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.4ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (7.4ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (6.0ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (6.9ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (5.7ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (5.5ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (5.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (2.4ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Mon, 22 Apr 2013 15:14:01 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Mon, 22 Apr 2013 15:14:01 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Mon, 22 Apr 2013 15:14:01 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Mon, 22 Apr 2013 15:14:01 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (4.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.8ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (7.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (7.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (366.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (10.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.4ms) commit transaction  (0.1ms) begin transaction SQL (1.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (1.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 22 Apr 2013 15:14:02 UTC +00:00]]  (10.0ms) commit transaction Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-25 22:56:56 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (14.5ms) Completed 500 Internal Server Error in 21ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: <%= inkwell_timelines("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__657917219_80649070' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms) Started GET "/" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (3.8ms) Compiled test.css (0ms) (pid 18368) Compiled application.css (21ms) (pid 18368) Compiled jquery.js (2ms) (pid 18368) Compiled jquery_ujs.js (0ms) (pid 18368) Compiled test.js (0ms) (pid 18368) Compiled application.js (65ms) (pid 18368) Completed 200 OK in 113ms (Views: 112.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Served asset /application.css - 200 OK (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Served asset /jquery.js - 304 Not Modified (15ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Served asset /application.js - 200 OK (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-25 22:57:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-25 22:59:34 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (7.8ms) Completed 500 Internal Server Error in 10ms ActionView::Template::Error (undefined method `inkwell_timelines_tag' for #<#:0x8caa0b4>): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__657917219_73746890' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (1.7ms) Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-25 22:59:45 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:18:57 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (4.7ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (Missing partial partials/script with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___355451440__623431398' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:20:51 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (14.6ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (Missing partial /partials/script with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__447761412_82801700' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:20:57 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (1.7ms) Completed 500 Internal Server Error in 4ms ActionView::Template::Error (Missing partial /partials/script with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__447761412_82801700' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:20:57 +0400 Processing by TestController#show as HTML Rendered test/show.html.erb within layouts/application (20.1ms) Completed 500 Internal Server Error in 22ms ActionView::Template::Error (Missing partial /partials/script with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__447761412_82801700' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (2.2ms) Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:22:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (0.8ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:47 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.3ms) Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:23:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (0.7ms) Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:18 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (0.6ms) Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.3ms) Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:25 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (1.4ms) Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.1ms) Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.6ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (2.8ms) Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:24:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (2.9ms) Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:28 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.5ms) Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Served asset /jquery.js - 304 Not Modified (11ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:25:56 +0400 Served asset /application.js - 304 Not Modified (7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.2ms) Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:26:34 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.2ms) Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:27:10 +0400 Served asset /application.js - 304 Not Modified (2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.3ms) Rendered test/show.html.erb within layouts/application (3.7ms) Completed 200 OK in 25ms (Views: 25.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 02:31:55 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.8ms) Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 16:25:25 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:25:50 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (4.8ms) Completed 500 Internal Server Error in 20ms ActionView::Template::Error (undefined method `[]' for nil:NilClass): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__1043349519__621264588' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:26:22 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (5.4ms) Completed 500 Internal Server Error in 21ms ActionView::Template::Error (undefined method `config' for InkwellTimelines:Module): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__408745335__621859478' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (12.9ms) Completed 200 OK in 26ms (Views: 26.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 16:27:35 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:28:20 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (5.6ms) Completed 500 Internal Server Error in 20ms ActionView::Template::Error (Missing partial test/post, application/post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag("test_id") %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___159862392__623397088' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:29:04 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered inkwell_timelines/_post.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (13.1ms) Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 16:29:04 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 16:29:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:05 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:05 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.0ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.1ms) Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:15 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Processing by TestController#show as HTML Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/partials/_script.html.erb (0.2ms) Rendered inkwell_timelines/_post.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (3.6ms) Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Served asset /test.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-27 16:29:24 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (14.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (6.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.1ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (5.6ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (5.9ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (5.6ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (7.5ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (8.1ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (140.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (11.5ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (38.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (9.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (19.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.7ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (45.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (7.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 15:09:48 UTC +00:00]]  (7.9ms) commit transaction Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (14.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (9.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (10.6ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (10.1ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (11.5ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (10.5ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (10.6ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (11.4ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (10.9ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (10.6ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (4.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (7.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (7.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 14], ["category_id", 2], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 14], ["category_id", 8], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 15], ["category_id", 1], ["created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 16], ["category_id", 7], ["created_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 21], ["category_id", 4], ["created_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 24], ["category_id", 3], ["created_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sat, 27 Apr 2013 16:24:38 UTC +00:00], ["blog_item_id", 24], ["category_id", 8], ["created_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Sat, 27 Apr 2013 16:24:39 UTC +00:00]]  (5.3ms) commit transaction Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (18.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (5.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.8ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (6.1ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (5.0ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (5.8ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (1.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (5.3ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (6.2ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (6.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (10.9ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00]]  (21.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00]]  (4.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.7ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.9ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Sun, 28 Apr 2013 11:02:47 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[2,3,4,5]', "updated_at" = '2013-04-28 11:02:48.214155' WHERE "categories"."id" = 1  (6.5ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[3,4]', "updated_at" = '2013-04-28 11:02:48.221787' WHERE "categories"."id" = 2  (5.9ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[8]', "updated_at" = '2013-04-28 11:02:48.229837' WHERE "categories"."id" = 7  (7.3ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (1.0ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (4.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (4.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (299.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (70.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (8.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 14], ["category_id", 2], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (23.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 14], ["category_id", 8], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 15], ["category_id", 1], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 16], ["category_id", 7], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 21], ["category_id", 4], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 24], ["category_id", 3], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["blog_item_id", 24], ["category_id", 8], ["created_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Sun, 28 Apr 2013 11:02:48 UTC +00:00]]  (6.9ms) commit transaction Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered test/show.html.erb within layouts/application (29.4ms) Completed 200 OK in 61ms (Views: 60.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:18:46 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Rendered test/show.html.erb within layouts/application (40.4ms) Completed 200 OK in 62ms (Views: 60.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:47 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:46:58 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (2.5ms) Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:46:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:46:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:46:59 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Rendered test/show.html.erb within layouts/application (43.3ms) Completed 200 OK in 66ms (Views: 64.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Served asset /test.css - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:50 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:51 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (2.1ms) Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (2.4ms) Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Served asset /application.css - 304 Not Modified (17ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:56:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (1.6ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:02 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.0ms) Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.3ms) Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:57:03 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 18:58:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Rendered test/show.html.erb within layouts/application (39.0ms) Completed 200 OK in 60ms (Views: 58.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:58:11 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:58:11 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:58:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:58:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:58:12 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:58:12 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (44.0ms) Completed 200 OK in 68ms (Views: 66.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 18:59:13 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 19:00:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (5.8ms) Rendered test/show.html.erb within layouts/application (46.0ms) Completed 500 Internal Server Error in 59ms ActionView::Template::Error (undefined local variable or method `options' for #<#:0x93b9b84>): 1:
2: <% options.each do |option| %> 3: Blog 4: Timeline 5: Favorites app/views/inkwell_timelines/_tab_menu.html.erb:2:in `_app_views_inkwell_timelines__tab_menu_html_erb___329997275_73285330' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___276367636__622614108' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Rendered test/show.html.erb within layouts/application (42.1ms) Completed 200 OK in 65ms (Views: 63.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:01:28 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (42.2ms) Completed 200 OK in 64ms (Views: 62.9ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:06:15 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (4.1ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 19:07:55 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:07:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:07:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:07:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (42.7ms) Completed 200 OK in 65ms (Views: 63.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:08:02 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (1.5ms) Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (2.6ms) Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:11:37 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 19:51:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered test/show.html.erb within layouts/application (45.3ms) Completed 500 Internal Server Error in 60ms ActionView::Template::Error (undefined local variable or method `active_timeline' for #<#:0x991518c>): 1: <%= inkwell_timelines_tag('timelines_block', User.where(:nick => 'Pushkin').first) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___317922817__622343498' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (40.8ms) Completed 200 OK in 65ms (Views: 62.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 19:51:27 +0400 Served asset /application.js - 304 Not Modified (2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 20:16:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (45.5ms) Completed 500 Internal Server Error in 60ms ActionView::Template::Error (undefined method `call' for nil:NilClass): 1: <%= inkwell_timelines_tag('timelines_block', User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__272170157__623654668' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-04-28 20:18:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (75.3ms) Completed 500 Internal Server Error in 81ms ActionView::Template::Error (undefined method `reblog?' for #): 1: <%= inkwell_timelines_tag('timelines_block', User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/models/user.rb:46:in `block in blogline' app/models/user.rb:35:in `blogline' config/initializers/inkwell_timelines.rb:16:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__1045550146_92212830' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms) Started GET "/" for 127.0.0.1 at 2013-04-28 20:23:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (24.9ms) Completed 500 Internal Server Error in 27ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: <%= inkwell_timelines_tag('timelines_block', User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/models/user.rb:55:in `reblog?' app/models/user.rb:46:in `block in blogline' app/models/user.rb:35:in `blogline' config/initializers/inkwell_timelines.rb:16:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__1045550146_92212830' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms) Started GET "/" for 127.0.0.1 at 2013-04-28 20:23:42 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (26.4ms) Completed 500 Internal Server Error in 29ms ActionView::Template::Error (undefined method `is_reblogged=' for #): 1: <%= inkwell_timelines_tag('timelines_block', User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/models/user.rb:46:in `block in blogline' app/models/user.rb:35:in `blogline' config/initializers/inkwell_timelines.rb:16:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__1045550146_92212830' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms) Started GET "/" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (34.2ms) Completed 200 OK in 43ms (Views: 41.1ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-28 20:24:21 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (17.2ms) Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (16.4ms) Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-30 00:10:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.9ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (17.6ms) Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 16:45:37 +0400 Served asset /application.js - 304 Not Modified (15ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (75.5ms) Completed 200 OK in 99ms (Views: 94.4ms | ActiveRecord: 4.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (18.4ms) Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 16:48:35 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 16:53:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (91.5ms) Completed 500 Internal Server Error in 105ms ActionView::Template::Error (undefined method `keys' for #): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___558409968__623693818' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 16:55:05 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered inkwell_timelines/_post.html.erb (0.2ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered inkwell_timelines/_comment.html.erb (0.2ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) Rendered inkwell_timelines/_post.html.erb (0.0ms) Rendered test/show.html.erb within layouts/application (78.3ms) Completed 200 OK in 102ms (Views: 96.1ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 16:55:06 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 16:55:06 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 16:55:06 +0400 Served asset /jquery.js - 304 Not Modified (16ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 16:55:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 16:55:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 16:55:06 +0400 Served asset /application.js - 304 Not Modified (2ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (18.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered inkwell_timelines/_comment.html.erb (0.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (105.0ms) Completed 200 OK in 128ms (Views: 122.5ms | ActiveRecord: 5.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Served asset /jquery.js - 304 Not Modified (12ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:04:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/users/1" for 127.0.0.1 at 2013-05-01 17:04:28 +0400 ActionController::RoutingError (uninitialized constant UsersController): activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__676523665__call__548216585__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.3ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (3.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered inkwell_timelines/_comment.html.erb (0.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (105.5ms) Completed 200 OK in 129ms (Views: 122.0ms | ActiveRecord: 6.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:07:53 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (15.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:39 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered inkwell_timelines/_comment.html.erb (0.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (20.3ms) Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (20.3ms) Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Served asset /test.css - 304 Not Modified (19ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:54 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.0ms) Completed 200 OK in 29ms (Views: 26.2ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:55 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (17.7ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:08:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.4ms) Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:09:04 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (66.0ms) Completed 200 OK in 70ms (Views: 67.4ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered inkwell_timelines/_comment.html.erb (0.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:49 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (40.6ms) Completed 200 OK in 45ms (Views: 43.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:16:50 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:17:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered inkwell_timelines/_comment.html.erb (0.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (108.9ms) Completed 200 OK in 143ms (Views: 138.5ms | ActiveRecord: 4.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:17:44 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:17:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:17:44 +0400 Served asset /jquery.js - 304 Not Modified (7ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:17:44 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:17:44 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:17:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:21:14 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (90.4ms) Completed 500 Internal Server Error in 105ms ActionView::Template::Error (uninitialized constant InkwellTimelines::InkwellTimelinesHelpers::OutputBuffer): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__860074118__622359778' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.7ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered inkwell_timelines/_comment.html.erb (0.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered inkwell_timelines/_comment.html.erb (0.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (106.6ms) Completed 200 OK in 128ms (Views: 122.9ms | ActiveRecord: 5.2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:36 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) Rendered inkwell_timelines/_comment.html.erb (0.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered inkwell_timelines/_comment.html.erb (0.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.8ms) Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:21:38 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:22:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered inkwell_timelines/_comment.html.erb (16.5ms) Rendered test/show.html.erb within layouts/application (34.7ms) Completed 500 Internal Server Error in 36ms ActionView::Template::Error (undefined method `user' for #): 1:
2: <%= record.user.nick %> 3: 4:
5:
app/views/inkwell_timelines/_comment.html.erb:2:in `_app_views_inkwell_timelines__comment_html_erb__813775115__620613868' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___580713685__623430758' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (73.0ms) Completed 200 OK in 79ms (Views: 75.9ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:23:38 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (16.8ms) Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:12 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (122.4ms) Completed 200 OK in 159ms (Views: 153.0ms | ActiveRecord: 5.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:24:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (112.6ms) Completed 200 OK in 146ms (Views: 139.8ms | ActiveRecord: 5.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:24:45 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:24:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:45 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:45 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:24:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (114.2ms) Completed 200 OK in 149ms (Views: 143.7ms | ActiveRecord: 5.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 17:27:13 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.5ms) Compiled inkwell_timelines/wall_item.css (0ms) (pid 26292) Compiled inkwell_timelines/index.css (4ms) (pid 26292) Compiled application.css (23ms) (pid 26292) Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /application.css - 200 OK (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /inkwell_timelines/index.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:38:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.7ms) Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:32 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (21.3ms) Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /test.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:41:35 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (27.4ms) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (1ms) (pid 26292) Completed 200 OK in 41ms (Views: 39.2ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /inkwell_timelines/index.css - 200 OK (4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:44:29 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (28.2ms) Compiled inkwell_timelines/wall_item.css (0ms) (pid 26292) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (1ms) (pid 26292) Completed 200 OK in 43ms (Views: 41.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:48:51 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/inkwell_timelines" for 127.0.0.1 at 2013-05-01 22:49:33 +0400 ActionController::RoutingError (No route matches [GET] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/inkwell_timelines/up_down.png" for 127.0.0.1 at 2013-05-01 22:50:01 +0400 ActionController::RoutingError (No route matches [GET] "/inkwell_timelines/up_down.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started GET "/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-01 22:50:08 +0400 ActionController::RoutingError (No route matches [GET] "/inkwell_timelines/up-down.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms) Started GET "/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-01 22:50:11 +0400 ActionController::RoutingError (No route matches [GET] "/inkwell_timelines/up-down.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms) Started GET "/up-down.png" for 127.0.0.1 at 2013-05-01 22:50:17 +0400 ActionController::RoutingError (No route matches [GET] "/up-down.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms) Started GET "/assets/up-down.png" for 127.0.0.1 at 2013-05-01 22:50:25 +0400 Served asset /up-down.png - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/up-down.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/assets/up-down.png" for 127.0.0.1 at 2013-05-01 22:51:49 +0400 Served asset /up-down.png - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/up-down.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (32.3ms) Compiled inkwell_timelines/wall_item.css (1ms) (pid 26292) Compiled inkwell_timelines/index.css (5ms) (pid 26292) Compiled application.css (2ms) (pid 26292) Completed 200 OK in 55ms (Views: 51.8ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /application.css - 304 Not Modified (21ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:04 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.2ms) Compiled inkwell_timelines/wall_item.css (1ms) (pid 26292) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (2ms) (pid 26292) Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/wi-favorite.png" for 127.0.0.1 at 2013-05-01 22:52:37 +0400 Served asset /wi-favorite.png - 404 Not Found (1ms) ActionController::RoutingError (No route matches [GET] "/assets/wi-favorite.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (41.5ms) Compiled inkwell_timelines/wall_item.css (1ms) (pid 26292) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (1ms) (pid 26292) Completed 200 OK in 60ms (Views: 58.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-01 22:53:28 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (3ms) Started GET "/" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (16.2ms) Compiled inkwell_timelines/wall_item.css (1ms) (pid 26292) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (2ms) (pid 26292) Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-01 22:55:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-comment-hover.png" for 127.0.0.1 at 2013-05-01 22:55:56 +0400 Served asset /inkwell_timelines/wi-comment-hover.png - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wi-reblog-hover.png" for 127.0.0.1 at 2013-05-01 22:55:57 +0400 Served asset /inkwell_timelines/wi-reblog-hover.png - 200 OK (4ms) Started GET "/assets/inkwell_timelines/wi-favorite-hover.png" for 127.0.0.1 at 2013-05-01 22:55:57 +0400 Served asset /inkwell_timelines/wi-favorite-hover.png - 200 OK (5ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (33.7ms) Completed 200 OK in 40ms (Views: 37.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:01:49 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.3ms) Completed 200 OK in 36ms (Views: 34.0ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:02:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (64.9ms) Completed 200 OK in 73ms (Views: 70.0ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:03:48 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (64.7ms) Completed 200 OK in 71ms (Views: 67.4ms | ActiveRecord: 3.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:05:49 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:07:10 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.8ms) Compiled inkwell_timelines/wall_item.css (2ms) (pid 26292) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (2ms) (pid 26292) Completed 200 OK in 60ms (Views: 57.9ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-active.png" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/wi-active.png - 404 Not Found (1ms) ActionController::RoutingError (No route matches [GET] "/assets/inkwell_timelines/wi-active.png"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/wi-comment.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/wi-favorite.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-01 23:07:11 +0400 Served asset /inkwell_timelines/wi-reblog.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Processing by TestController#show as HTML User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.0ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.0ms) Compiled inkwell_timelines/wall_item.css (1ms) (pid 26292) Compiled inkwell_timelines/index.css (0ms) (pid 26292) Compiled application.css (2ms) (pid 26292) Completed 200 OK in 59ms (Views: 55.0ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/wi-comment.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/wi-favorite.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-01 23:07:34 +0400 Served asset /inkwell_timelines/wi-reblog.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.2ms) Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-01 23:08:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-01 23:08:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-01 23:08:52 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.3ms) Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 14:06:59 +0400 Served asset /application.js - 304 Not Modified (18ms) Started GET "/" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 14:07:02 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (16.7ms) Compiled inkwell_timelines/tab-menu.css (0ms) (pid 26292) Compiled inkwell_timelines/index.css (4ms) (pid 26292) Compiled application.css (1ms) (pid 26292) Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:06:25 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (20.6ms) Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:12:06 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (2.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (33.7ms) Completed 200 OK in 61ms (Views: 56.6ms | ActiveRecord: 4.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:08 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (25.2ms) Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:13:10 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (16.9ms) Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /application.css - 304 Not Modified (23ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:21:44 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (20.1ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (7ms) (pid 26292) Completed 200 OK in 60ms (Views: 58.0ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:35:48 +0400 Served asset /application.js - 200 OK (3ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (18.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (16ms) (pid 26292) Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /inkwell_timelines/index.js - 200 OK (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:17 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 46ms (Views: 43.7ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 15:37:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.0ms) Compiled inkwell_timelines/index.js (2ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 56ms (Views: 54.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:55:55 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.6ms) Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 15:57:09 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (15.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.2ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 60ms (Views: 58.2ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /inkwell_timelines/index.js - 200 OK (21ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:25 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (18.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /application.css - 304 Not Modified (24ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:04:51 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.6ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 54ms (Views: 52.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:05:32 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.0ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 51ms (Views: 49.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:07:11 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (17.3ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 49ms (Views: 47.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (30.4ms) Completed 200 OK in 38ms (Views: 36.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:08:57 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.8ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 54ms (Views: 51.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:09:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:10:33 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (25.3ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 60ms (Views: 58.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:10:34 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.3ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (16ms) (pid 26292) Completed 200 OK in 69ms (Views: 67.3ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /inkwell_timelines/index.js - 200 OK (7ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:11:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:11:30 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:16:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (19.0ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 53ms (Views: 51.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:07 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (20.0ms) Completed 200 OK in 41ms (Views: 39.0ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 16:16:08 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 56ms (Views: 54.1ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:53 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (39.0ms) Completed 200 OK in 50ms (Views: 47.2ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:12:54 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.1ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (1ms) (pid 26292) Completed 200 OK in 59ms (Views: 56.5ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:16:34 +0400 Served asset /application.js - 304 Not Modified (31ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (33.3ms) Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:20:44 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (19.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 55ms (Views: 53.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:21:03 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:24:22 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.8ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.6ms) Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (21ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:23 +0400 Served asset /application.js - 304 Not Modified (2ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.2ms) Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:24:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (4.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.9ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (6ms) (pid 26292) Completed 200 OK in 75ms (Views: 73.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:26:36 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.9ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (28.6ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 67ms (Views: 63.3ms | ActiveRecord: 3.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:03 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (32.2ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 84ms (Views: 82.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:45 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (13.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.9ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 57ms (Views: 55.2ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /inkwell_timelines/index.js - 200 OK (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:27:57 +0400 Served asset /application.js - 304 Not Modified (40ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (3.8ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.2ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 51ms (Views: 45.1ms | ActiveRecord: 5.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /inkwell_timelines/index.js - 200 OK (21ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:29:43 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.1ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:30:00 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (2.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (29.2ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 70ms (Views: 65.8ms | ActiveRecord: 3.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:38:41 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (4.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.3ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:43:54 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (26.9ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 62ms (Views: 60.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:44:17 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (35.9ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 70ms (Views: 68.2ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:46:26 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (19.8ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 54ms (Views: 52.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:43 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.7ms) Completed 200 OK in 44ms (Views: 42.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 60ms (Views: 57.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:52 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (36.4ms) Completed 200 OK in 47ms (Views: 44.1ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:49:53 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.1ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 55ms (Views: 53.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:50:13 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.8ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 56ms (Views: 54.2ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:25 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (53.9ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 73ms (Views: 69.9ms | ActiveRecord: 3.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:53:56 +0400 Served asset /application.js - 304 Not Modified (18ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.8ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 44ms (Views: 42.5ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /inkwell_timelines/index.js - 200 OK (20ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:54:21 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.6ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (1.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.1ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 53ms (Views: 49.3ms | ActiveRecord: 3.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (16ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 17:58:08 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.4ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 67ms (Views: 65.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:12 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-02 18:00:13 +0400 Processing by TestController#show as HTML User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.8ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.2ms) Completed 200 OK in 36ms (Views: 33.1ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:14 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (16.4ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 18:00:36 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (22.4ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 67ms (Views: 65.5ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:52 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (13.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.9ms) Completed 200 OK in 45ms (Views: 42.2ms | ActiveRecord: 3.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 18:01:54 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.6ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 64ms (Views: 61.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-02 18:02:48 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (22.1ms) Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:03:15 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.5ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 46ms (Views: 43.4ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /inkwell_timelines/index.js - 200 OK (21ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:07:22 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.9ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (25.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 45ms (Views: 42.3ms | ActiveRecord: 3.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (14ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:09:38 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Processing by TestController#show as HTML User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.6ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 68ms (Views: 65.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /application.css - 304 Not Modified (19ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:11:30 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (16.7ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (1ms) (pid 26292) Completed 200 OK in 50ms (Views: 48.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:12:31 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (25.3ms) Compiled inkwell_timelines/index.js (0ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 59ms (Views: 57.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:13:36 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (19.4ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 52ms (Views: 50.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:14:00 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (18.2ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 54ms (Views: 52.1ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:18:48 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:27 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (1.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (26.9ms) Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:38 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.7ms) Completed 200 OK in 36ms (Views: 33.7ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:26:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:29:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (19.0ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 55ms (Views: 53.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:29:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.6ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 50ms (Views: 48.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:41 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 57ms (Views: 54.5ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /test.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:30:48 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.5ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 50ms (Views: 47.5ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:18 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.0ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (2ms) (pid 26292) Completed 200 OK in 42ms (Views: 39.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:31:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.3ms) Compiled inkwell_timelines/index.js (2ms) (pid 26292) Compiled application.js (8ms) (pid 26292) Completed 200 OK in 62ms (Views: 60.1ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /jquery.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /inkwell_timelines/index.js - 200 OK (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:32:49 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.5ms) Compiled inkwell_timelines/index.js (1ms) (pid 26292) Compiled application.js (3ms) (pid 26292) Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:33:35 +0400 Served asset /application.js - 304 Not Modified (21ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:47:47 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:49:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (21.7ms) Completed 500 Internal Server Error in 50ms ActionView::Template::Error (undefined method `load_distance' for # (in /media/workspace/repo/public_projects/inkwell_timelines/app/assets/javascripts/inkwell_timelines/index.js.erb)): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", :media => "all" %> 6: <%= javascript_include_tag "application" %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___433324115_76810370' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms) Started GET "/" for 127.0.0.1 at 2013-05-03 00:49:38 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (26.2ms) Completed 500 Internal Server Error in 41ms ActionView::Template::Error (undefined method `load_distance' for # (in /media/workspace/repo/public_projects/inkwell_timelines/app/assets/javascripts/inkwell_timelines/index.js.erb)): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", :media => "all" %> 6: <%= javascript_include_tag "application" %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___433324115_76810370' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (26.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (125.8ms) Compiled inkwell_timelines/index.js (3ms) (pid 749) Compiled application.js (3ms) (pid 749) Completed 200 OK in 181ms (Views: 174.9ms | ActiveRecord: 5.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 00:49:56 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (52.1ms) Compiled inkwell_timelines/index.js (2ms) (pid 749) Compiled application.js (3ms) (pid 749) Completed 200 OK in 88ms (Views: 85.7ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 01:03:46 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-03 01:05:19 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (29.7ms) Completed 500 Internal Server Error in 31ms ActionView::Template::Error (undefined method `item_id=' for #): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> app/models/user.rb:45:in `block in blogline' app/models/user.rb:38:in `blogline' config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___989332912_83422360' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Started GET "/" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (48.8ms) Completed 200 OK in 57ms (Views: 53.4ms | ActiveRecord: 3.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 01:05:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (113.5ms) Completed 200 OK in 156ms (Views: 149.8ms | ActiveRecord: 5.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 01:45:42 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.8ms) Completed 200 OK in 53ms (Views: 50.1ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-03 01:46:28 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Blogline Load (5.8ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (32.0ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (3ms) (pid 1469) Completed 200 OK in 70ms (Views: 63.2ms | ActiveRecord: 6.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:39 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (16.1ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 49ms (Views: 48.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (18ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 12:48:59 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (16.1ms) Compiled inkwell_timelines/index.js (1ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 12:52:10 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (17.1ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 12:54:44 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (12.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (32.8ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 59ms (Views: 57.0ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (19ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 12:56:52 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (2.8ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.9ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (34.5ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 70ms (Views: 65.1ms | ActiveRecord: 5.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:00:44 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:00:45 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (21.4ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 59ms (Views: 57.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:01:59 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Processing by TestController#show as HTML User Load (6.5ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.1ms) Compiled inkwell_timelines/index.js (1ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 76ms (Views: 67.5ms | ActiveRecord: 7.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (13ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:02:38 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (20.4ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:10:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (1.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.0ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 61ms (Views: 58.0ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:24:00 +0400 Served asset /application.js - 304 Not Modified (31ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:24:13 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.6ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.1ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 59ms (Views: 57.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:26:02 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.0ms) Compiled inkwell_timelines/index.js (14ms) (pid 1469) Compiled application.js (3ms) (pid 1469) Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:26:58 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (34.3ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (3ms) (pid 1469) Completed 200 OK in 58ms (Views: 56.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /inkwell_timelines/index.js - 200 OK (25ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:27:53 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:28:32 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (27.5ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 63ms (Views: 61.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:28:33 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (15.4ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 53ms (Views: 51.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:29:53 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.8ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (2ms) (pid 1469) Completed 200 OK in 60ms (Views: 58.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /test.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 Served asset /application.js - 304 Not Modified (20ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:31:26 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:31:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (24.2ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (3ms) (pid 1469) Completed 200 OK in 48ms (Views: 46.1ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:45 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:31:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:46 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:46 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:31:46 +0400 Served asset /application.js - 304 Not Modified (9ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:31:46 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (19.8ms) Compiled inkwell_timelines/index.js (2ms) (pid 1469) Compiled application.js (3ms) (pid 1469) Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /inkwell_timelines/index.js - 200 OK (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:33:48 +0400 Served asset /application.js - 304 Not Modified (11ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:49 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:49 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:49 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:50 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:50 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:50 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:51 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:52 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:52 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:53 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:53 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:53 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:33:53 +0400 ActionController::RoutingError (No route matches [POST] "/inkwell_timelines"): actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (106.5ms) Compiled inkwell_timelines/data.css (0ms) (pid 2835) Compiled inkwell_timelines/index.css (15ms) (pid 2835) Compiled application.css (2ms) (pid 2835) Compiled inkwell_timelines/data.js (0ms) (pid 2835) Compiled inkwell_timelines/index.js (6ms) (pid 2835) Compiled application.js (2ms) (pid 2835) Completed 200 OK in 181ms (Views: 175.7ms | ActiveRecord: 4.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/data.css?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /inkwell_timelines/data.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/data.js?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /inkwell_timelines/data.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:39 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.2ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:42 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.1ms) Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:42 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.0ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:42 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.0ms) Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:43 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.0ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:49 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.0ms) Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:38:49 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.1ms) Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (113.0ms) Completed 200 OK in 157ms (Views: 151.0ms | ActiveRecord: 5.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/data.css?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /inkwell_timelines/data.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/data.js?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /inkwell_timelines/data.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:39:48 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.2ms) Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:39:50 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.1ms) Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:39:51 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.0ms) Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:39:53 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.0ms) Completed 200 OK in 14ms (Views: 14.1ms | ActiveRecord: 0.0ms) Started POST "/inkwell_timelines" for 127.0.0.1 at 2013-05-04 13:39:53 +0400 Processing by InkwellTimelines::DataController#index as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/inkwell_timelines/data/index.html.erb within layouts/inkwell_timelines/application (0.1ms) Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 16:35:55 +0400 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (20.9ms) Completed 500 Internal Server Error in 36ms ActionView::Template::Error (undefined method `current_user' for #): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__156726637_76829020' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 16:36:26 +0400 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Rendered test/show.html.erb within layouts/application (19.4ms) Completed 500 Internal Server Error in 35ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__590453821_89538330' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:36:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (3.2ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__590453821_89538330' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:38:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (9.9ms) Completed 500 Internal Server Error in 11ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__590453821_89538330' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (60.4ms) Completed 500 Internal Server Error in 66ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___793386459_84448520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.3ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:09 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (4.3ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___793386459_84448520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:10 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (4.3ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___793386459_84448520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:12 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (7.7ms) Completed 500 Internal Server Error in 10ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___793386459_84448520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:13 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (4.8ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___793386459_84448520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.2ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:19 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (4.6ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___793386459_84448520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (57.5ms) Completed 500 Internal Server Error in 63ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___536929983_76354060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 16:39:47 +0400 Processing by TestController#show as HTML User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered test/show.html.erb within layouts/application (6.1ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `current_user' for ApplicationController:Class): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => User.where(:nick => 'Lermontov').first) %> config/initializers/inkwell_timelines.rb:13:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___536929983_76354060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (11.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (114.0ms) Compiled inkwell_timelines/index.css (0ms) (pid 4226) Compiled application.css (2ms) (pid 4226) Compiled inkwell_timelines/index.js (2ms) (pid 4226) Compiled application.js (14ms) (pid 4226) Completed 200 OK in 164ms (Views: 149.1ms | ActiveRecord: 14.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /jquery.js - 304 Not Modified (23ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:15:35 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/timeline/get" for 127.0.0.1 at 2013-05-04 17:15:44 +0400 Processing by TimelineController#show as HTML Completed 500 Internal Server Error in 7ms ActionView::MissingTemplate (Missing template timeline/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__248719606__process_action__299902831__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__440010937__call__739253540__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (120.9ms) Compiled inkwell_timelines/index.js (15ms) (pid 4348) Compiled application.js (3ms) (pid 4348) Completed 200 OK in 166ms (Views: 160.7ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /inkwell_timelines/index.js - 200 OK (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:18:53 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:18:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Completed 500 Internal Server Error in 7ms ActionView::MissingTemplate (Missing template timeline/show, application/show with {:locale=>[:en], :formats=>[:html, :html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__903167919__process_action__108537718__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__87122515__call__950465902__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:18:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Completed 500 Internal Server Error in 7ms ActionView::MissingTemplate (Missing template timeline/show, application/show with {:locale=>[:en], :formats=>[:html, :html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__903167919__process_action__108537718__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__87122515__call__950465902__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Lermontov' LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (46.3ms) Completed 200 OK in 54ms (Views: 51.9ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /application.css - 304 Not Modified (19ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:20:06 +0400 Served asset /application.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:20:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 17:21:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 Rendered test/show.html.erb within layouts/application (14.0ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (undefined local variable or method `current_user' for #<#:0xb5236a44>): 1: <%= inkwell_timelines_tag('timelines_block', :obj => User.where(:nick => 'Pushkin').first, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__621715185__627986238' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.8ms) Started GET "/" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (52.8ms) Completed 200 OK in 61ms (Views: 58.0ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:22:35 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (24.3ms) Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:29 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (27.0ms) Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:23:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (112.1ms) Completed 200 OK in 154ms (Views: 148.3ms | ActiveRecord: 5.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:24:31 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:27:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (106.9ms) Completed 200 OK in 147ms (Views: 142.0ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:27:17 +0400 Served asset /application.js - 304 Not Modified (4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (1.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (107.6ms) Completed 200 OK in 148ms (Views: 143.0ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:28:15 +0400 Served asset /application.js - 304 Not Modified (6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (13.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (121.2ms) Completed 200 OK in 151ms (Views: 134.1ms | ActiveRecord: 16.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (20ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:30:58 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:31:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (11.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (114.6ms) Completed 200 OK in 144ms (Views: 128.6ms | ActiveRecord: 15.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /test.css - 304 Not Modified (20ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:33:24 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:33:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:33:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:33:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 17:33:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (113.6ms) Completed 200 OK in 144ms (Views: 140.0ms | ActiveRecord: 4.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /test.css - 304 Not Modified (17ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 18:46:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 18:50:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 18:50:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.7ms) Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 18:50:40 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:18:02 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.0ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (122.7ms) Completed 500 Internal Server Error in 138ms ActionView::Template::Error (undefined method `Encode' for ActiveSupport::JSON:Module): 1: <%= inkwell_timelines_tag('timelines_block', :obj_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___158767264_78723190' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (122.8ms) Completed 200 OK in 153ms (Views: 148.2ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /test.css - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /jquery.js - 304 Not Modified (17ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:18:23 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:20:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (116.9ms) Completed 200 OK in 146ms (Views: 141.4ms | ActiveRecord: 4.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (15ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:20:04 +0400 Served asset /application.js - 304 Not Modified (6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (123.7ms) Completed 200 OK in 155ms (Views: 148.9ms | ActiveRecord: 5.9ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /jquery.js - 304 Not Modified (17ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:21:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (136.6ms) Completed 200 OK in 167ms (Views: 161.8ms | ActiveRecord: 5.1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (10ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /jquery.js - 304 Not Modified (19ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:31 +0400 Served asset /application.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (117.2ms) Completed 200 OK in 147ms (Views: 140.5ms | ActiveRecord: 5.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (14ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:23:56 +0400 Served asset /application.js - 304 Not Modified (4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (114.6ms) Completed 200 OK in 145ms (Views: 140.8ms | ActiveRecord: 4.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /application.css - 304 Not Modified (9ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (26ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:24:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 19:32:22 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.2ms) Compiled inkwell_timelines/index.js (2ms) (pid 5851) Compiled application.js (3ms) (pid 5851) Completed 200 OK in 57ms (Views: 55.2ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:23 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (2.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.1ms) Compiled inkwell_timelines/index.js (2ms) (pid 5851) Compiled application.js (2ms) (pid 5851) Completed 200 OK in 59ms (Views: 55.2ms | ActiveRecord: 3.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:32:45 +0400 Served asset /application.js - 304 Not Modified (23ms) Started GET "/" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (20.6ms) Compiled inkwell_timelines/index.js (2ms) (pid 5851) Compiled application.js (2ms) (pid 5851) Completed 200 OK in 45ms (Views: 42.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /test.css - 304 Not Modified (16ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:34:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\""=>{"{\\\"blogline\\\":{\\\"obj_id\\\":1}}"=>{"\"}"=>nil}}} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:34:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:34:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:34:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (115.3ms) Completed 200 OK in 146ms (Views: 141.5ms | ActiveRecord: 4.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (22ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:46:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:46:37 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:46:37 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\""=>{"{\\\"name\\\":\\\"blogline\\\",\\\"value\\\":{\\\"obj_id\\\":1}}"=>{"\"}"=>nil}}} Rendered text template (0.0ms) Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (126.4ms) Completed 200 OK in 159ms (Views: 153.7ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /jquery.js - 304 Not Modified (21ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:50:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\"{\\\"obj_id\\\":1}\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (117.4ms) Completed 200 OK in 147ms (Views: 141.5ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /jquery.js - 304 Not Modified (25ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:51:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\"{\\\"obj_id\\\":1}\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (16.8ms) Compiled inkwell_timelines/index.js (2ms) (pid 6231) Compiled application.js (2ms) (pid 6231) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Served asset /application.js - 304 Not Modified (21ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:53:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\"{\\\"obj_id\\\":1}\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (117.9ms) Completed 200 OK in 147ms (Views: 142.1ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /jquery.js - 304 Not Modified (20ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (12ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Served asset /application.js - 304 Not Modified (9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-04 19:53:41 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\"{\\\"obj_id\\\":1}\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2013-05-05 20:41:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.7ms) Compiled inkwell_timelines/index.js (2ms) (pid 6308) Compiled application.js (3ms) (pid 6308) Completed 200 OK in 55ms (Views: 53.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Served asset /application.js - 304 Not Modified (24ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 20:41:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\"{\\\"obj_id\\\":1}\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 20:43:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (127.9ms) Completed 200 OK in 160ms (Views: 154.9ms | ActiveRecord: 4.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (21ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /test.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Served asset /application.js - 304 Not Modified (9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 20:43:41 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_options\":\"{\\\"obj_id\\\":1}\"}"=>nil} Rendered text template (0.0ms) Completed 200 OK in 7ms (Views: 2.9ms | ActiveRecord: 0.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (131.4ms) Compiled inkwell_timelines/index.js (3ms) (pid 6991) Compiled application.js (2ms) (pid 6991) Completed 200 OK in 189ms (Views: 183.9ms | ActiveRecord: 5.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Served asset /application.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:27:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `u' for #): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (132.2ms) Completed 200 OK in 166ms (Views: 160.3ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /application.css - 304 Not Modified (15ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /jquery.js - 304 Not Modified (21ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:27:50 +0400 Served asset /test.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:27:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (120.8ms) Completed 200 OK in 153ms (Views: 147.4ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (23ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /application.js - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:30:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `symbolize_keys!' for #): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (126.9ms) Completed 200 OK in 160ms (Views: 155.0ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /test.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /jquery.js - 304 Not Modified (29ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /test.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Served asset /application.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:32:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (24.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (134.4ms) Completed 200 OK in 166ms (Views: 160.7ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /jquery.js - 304 Not Modified (18ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:33:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (125.5ms) Completed 200 OK in 158ms (Views: 152.2ms | ActiveRecord: 5.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (25ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:35:28 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms) Started GET "/" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (4.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (24.8ms) Compiled inkwell_timelines/index.js (2ms) (pid 7148) Compiled application.js (3ms) (pid 7148) Completed 200 OK in 61ms (Views: 59.5ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Served asset /application.js - 304 Not Modified (18ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:37:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (133.4ms) Compiled inkwell_timelines/index.js (2ms) (pid 7245) Compiled application.js (3ms) (pid 7245) Completed 200 OK in 195ms (Views: 188.9ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:40:10 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:40:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 24ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (124.9ms) Completed 200 OK in 157ms (Views: 151.0ms | ActiveRecord: 5.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /jquery.js - 304 Not Modified (18ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:41:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 8ms TypeError (can't convert ActiveSupport::HashWithIndifferentAccess into String): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (128.5ms) Completed 200 OK in 159ms (Views: 154.0ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (23ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:43:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 6ms TypeError (can't convert Hash into String): app/controllers/timeline_controller.rb:4:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (133.2ms) Completed 200 OK in 166ms (Views: 159.6ms | ActiveRecord: 5.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (21ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:45:27 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 3ms ArgumentError (wrong number of arguments(2 for 1)): app/controllers/timeline_controller.rb:4:in `merge' app/controllers/timeline_controller.rb:4:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:45:47 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (125.8ms) Completed 200 OK in 158ms (Views: 152.7ms | ActiveRecord: 4.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:47 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:47 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:45:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (16ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:48 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:45:48 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:45:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 9ms TypeError (can't convert Hash into String): app/controllers/timeline_controller.rb:4:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (144.4ms) Completed 200 OK in 177ms (Views: 171.9ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (16ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Served asset /application.js - 304 Not Modified (12ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:47:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} Completed 500 Internal Server Error in 3ms NameError (undefined local variable or method `request_params' for #): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (131.7ms) Completed 200 OK in 164ms (Views: 159.3ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (19ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /jquery.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:49:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 6ms TypeError (no implicit conversion from nil to integer): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.8ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.2ms) User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (126.3ms) Completed 200 OK in 159ms (Views: 153.7ms | ActiveRecord: 4.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (18ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:50:38 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 5ms TypeError (no implicit conversion from nil to integer): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (125.7ms) Completed 200 OK in 157ms (Views: 151.9ms | ActiveRecord: 4.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /test.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (32ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:51:20 +0400 Served asset /application.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:51:21 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 10ms TypeError (no implicit conversion from nil to integer): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:53:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (25.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (134.6ms) Completed 200 OK in 166ms (Views: 160.7ms | ActiveRecord: 4.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /jquery.js - 304 Not Modified (42ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:53:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 8ms TypeError (no implicit conversion from nil to integer): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:55:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (25.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (135.4ms) Completed 200 OK in 167ms (Views: 161.9ms | ActiveRecord: 4.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (20ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:55:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 404 Not Found in 7ms ActiveRecord::RecordNotFound (Couldn't find User without an ID): config/initializers/inkwell_timelines.rb:14:in `block in ' app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (126.6ms) Completed 200 OK in 158ms (Views: 152.3ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /jquery.js - 304 Not Modified (31ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:58:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 404 Not Found in 14ms ActiveRecord::RecordNotFound (Couldn't find User without an ID): config/initializers/inkwell_timelines.rb:14:in `block in ' app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.8ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (128.1ms) Completed 200 OK in 161ms (Views: 155.0ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /jquery.js - 304 Not Modified (22ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 21:58:39 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 21:58:40 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 404 Not Found in 4ms ActiveRecord::RecordNotFound (Couldn't find User without an ID): config/initializers/inkwell_timelines.rb:14:in `block in ' app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (133.2ms) Completed 200 OK in 166ms (Views: 160.2ms | ActiveRecord: 5.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /application.css - 304 Not Modified (11ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (16ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:01:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered text template (0.0ms) Completed 200 OK in 24ms (Views: 5.4ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:01:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered text template (0.0ms) Completed 200 OK in 21ms (Views: 2.4ms | ActiveRecord: 2.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:02:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.6ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (133.2ms) Completed 200 OK in 166ms (Views: 161.3ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:02:35 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /test.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (19ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:02:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:02:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered text template (0.0ms) Completed 200 OK in 32ms (Views: 15.7ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:02:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered text template (0.0ms) Completed 200 OK in 10ms (Views: 1.7ms | ActiveRecord: 1.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.7ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (126.2ms) Completed 200 OK in 158ms (Views: 152.8ms | ActiveRecord: 4.6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (24ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /jquery.js - 304 Not Modified (8ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Served asset /application.js - 304 Not Modified (10ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:03:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.5ms) Completed 500 Internal Server Error in 27ms AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.8ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:04:32 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (123.7ms) Completed 200 OK in 154ms (Views: 148.4ms | ActiveRecord: 5.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /application.css - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (17ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:04:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) Completed 500 Internal Server Error in 17ms AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (125.2ms) Completed 200 OK in 157ms (Views: 150.6ms | ActiveRecord: 5.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /jquery.js - 304 Not Modified (19ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Served asset /application.js - 304 Not Modified (10ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:05:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) Completed 500 Internal Server Error in 22ms AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (24.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (136.0ms) Completed 200 OK in 169ms (Views: 163.5ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:37 +0400 Served asset /jquery.js - 304 Not Modified (29ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:38 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:05:38 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:05:38 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Completed 500 Internal Server Error in 60ms ActionView::MissingTemplate (Missing template timeline/show, application/show with {:locale=>[:en], :formats=>[:html, :html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__292841840__process_action__808532315__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__290666607__call__368229335__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (65.7ms) Completed 200 OK in 75ms (Views: 71.8ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:06:21 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered text template (0.0ms) Completed 200 OK in 47ms (Views: 15.5ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (53.0ms) Completed 200 OK in 77ms (Views: 74.6ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:07:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Completed 500 Internal Server Error in 36ms ActionView::MissingTemplate (Missing template timeline/show, application/show with {:locale=>[:en], :formats=>[:html, :html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (69.1ms) Completed 200 OK in 78ms (Views: 75.0ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:14:50 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered text template (0.0ms) Completed 200 OK in 31ms (Views: 0.3ms | ActiveRecord: 1.5ms) Started GET "/" for 127.0.0.1 at 2013-05-05 22:16:10 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.3ms) Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /test.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Served asset /application.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:16:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered text template (0.0ms) Completed 200 OK in 30ms (Views: 0.2ms | ActiveRecord: 1.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.6ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (132.6ms) Completed 200 OK in 167ms (Views: 161.4ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /jquery.js - 304 Not Modified (25ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:16:20 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Completed 500 Internal Server Error in 51ms NoMethodError (undefined method `raw' for #): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (127.7ms) Completed 200 OK in 160ms (Views: 154.7ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (17ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:23 +0400 Served asset /application.js - 304 Not Modified (12ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:17:24 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered text template (0.0ms) Completed 200 OK in 52ms (Views: 1.3ms | ActiveRecord: 1.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:17:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (24.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (134.9ms) Completed 200 OK in 167ms (Views: 160.9ms | ActiveRecord: 5.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /jquery.js - 304 Not Modified (22ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:17:54 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered text template (0.0ms) Completed 200 OK in 69ms (Views: 1.5ms | ActiveRecord: 2.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (123.9ms) Completed 200 OK in 155ms (Views: 150.0ms | ActiveRecord: 4.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (17ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:02 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:19:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Completed 500 Internal Server Error in 52ms NoMethodError (undefined method `OutputSafetyHelper' for ActionView::Helpers:Module): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (128.8ms) Completed 200 OK in 160ms (Views: 154.5ms | ActiveRecord: 5.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:31 +0400 Served asset /jquery.js - 304 Not Modified (22ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:32 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:19:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:19:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Completed 500 Internal Server Error in 48ms NoMethodError (undefined method `raw' for ActionView::Helpers::OutputSafetyHelper:Module): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:54:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (124.2ms) Completed 200 OK in 157ms (Views: 151.8ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:54:29 +0400 Served asset /application.css - 304 Not Modified (15ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (21ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:54:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered timeline/show.html.erb within layouts/application (36.2ms) Completed 200 OK in 46ms (Views: 43.4ms | ActiveRecord: 2.2ms) Started GET "/" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (50.9ms) Completed 200 OK in 74ms (Views: 71.1ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:56:43 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:56:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.5ms) Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 1.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (116.1ms) Completed 200 OK in 162ms (Views: 155.8ms | ActiveRecord: 5.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 22:58:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (22.0ms) Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:01:22 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (28.5ms) Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:01:22 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (23.3ms) Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:03:24 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered timeline/show.html.erb (44.5ms) Completed 200 OK in 47ms (Views: 44.7ms | ActiveRecord: 1.8ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.3ms) Compiled inkwell_timelines/index.js (3ms) (pid 8539) Compiled application.js (2ms) (pid 8539) Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:40 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (22.2ms) Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (11.4ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.1ms) Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.4ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.4ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.8ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.1ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (1.7ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.5ms) Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.6ms) Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.3ms) Completed 200 OK in 48ms (Views: 46.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:05:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:56 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered timeline/show.html.erb (18.4ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (12.6ms) Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.2ms) Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (9.1ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:05:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.6ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.5ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.1ms) Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.0ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.0ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.1ms) Completed 200 OK in 44ms (Views: 42.1ms | ActiveRecord: 1.5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:10 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.2ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (14.6ms) Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (8.6ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.0ms) Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (31.4ms) Completed 200 OK in 58ms (Views: 55.6ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:06:17 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (22.4ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:25 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (15.8ms) Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (11.9ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.3ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.0ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.8ms) Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.0ms) Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.9ms) Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.2ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:06:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.4ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (18.7ms) Compiled inkwell_timelines/index.js (2ms) (pid 8539) Compiled application.js (3ms) (pid 8539) Completed 200 OK in 61ms (Views: 59.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:07:32 +0400 Served asset /application.js - 304 Not Modified (31ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (23.5ms) Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (14.3ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:40 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (8.9ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:40 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.5ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:41 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.4ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.8ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (7.0ms) Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.9ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (8.3ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (6.4ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.3ms) Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (6.5ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.6ms) Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.8ms) Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (7.5ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (6.1ms) Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.3ms) Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.9ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (8.0ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (11.6ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (26.8ms) Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.4ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (10.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:07:47 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.0ms) Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (16.4ms) Compiled inkwell_timelines/index.js (2ms) (pid 8539) Compiled application.js (2ms) (pid 8539) Completed 200 OK in 56ms (Views: 54.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (19.3ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (11.1ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.4ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.4ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.8ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.7ms) Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.2ms) Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.5ms) Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.3ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.5ms) Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (23.7ms) Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.1ms) Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.6ms) Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.3ms) Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (10.0ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (16.4ms) Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.7ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (11.3ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.2ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.6ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (25.9ms) Compiled inkwell_timelines/index.js (2ms) (pid 8539) Compiled application.js (2ms) (pid 8539) Completed 200 OK in 106ms (Views: 103.4ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:08:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (20.1ms) Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (11.0ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.0ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (6.0ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.7ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (7.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (28.3ms) Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.9ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.7ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (5.2ms) Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.7ms) Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.5ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.2ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:09:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (7.9ms) Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (17.6ms) Compiled inkwell_timelines/index.js (2ms) (pid 8539) Compiled application.js (3ms) (pid 8539) Completed 200 OK in 56ms (Views: 54.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:10:04 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:10:05 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.5ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:10:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (12.2ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:10:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.3ms) Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (32.4ms) Compiled inkwell_timelines/index.js (3ms) (pid 8539) Compiled application.js (2ms) (pid 8539) Completed 200 OK in 55ms (Views: 53.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:13:05 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:13:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (29.0ms) Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:13:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (11.8ms) Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:13:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.2ms) Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (17.6ms) Compiled inkwell_timelines/index.js (3ms) (pid 8539) Compiled application.js (2ms) (pid 8539) Completed 200 OK in 54ms (Views: 52.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:14:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (36.6ms) Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:14:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (15.7ms) Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:14:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (7.6ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 23:30:14 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (126.4ms) Compiled inkwell_timelines/index.js (3ms) (pid 9308) Compiled application.js (3ms) (pid 9308) Completed 200 OK in 187ms (Views: 181.2ms | ActiveRecord: 5.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:30:15 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:30:17 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered timeline/show.html.erb (13.7ms) Completed 500 Internal Server Error in 36ms ActionView::Template::Error (can't convert Symbol into Integer): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb__912428496_85711880' app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:30:17 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered timeline/show.html.erb (0.4ms) Completed 500 Internal Server Error in 3ms ActionView::Template::Error (can't convert Symbol into Integer): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb__912428496_85711880' app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 23:31:25 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (130.3ms) Completed 200 OK in 163ms (Views: 156.6ms | ActiveRecord: 5.7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /application.css - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (20ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:31:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (31.1ms) Completed 200 OK in 38ms (Views: 31.6ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:31:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (11.2ms) Completed 200 OK in 16ms (Views: 12.2ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:31:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 10ms (Views: 6.2ms | ActiveRecord: 0.8ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (53.4ms) Completed 200 OK in 77ms (Views: 74.5ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:34:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (20.9ms) Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:34:54 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (16.5ms) Completed 200 OK in 23ms (Views: 18.7ms | ActiveRecord: 1.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:34:55 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.2ms) Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (66.7ms) Completed 200 OK in 75ms (Views: 71.8ms | ActiveRecord: 3.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:35:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms RuntimeError (): app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (52.6ms) Completed 200 OK in 61ms (Views: 58.7ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:36:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:36:47 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms RuntimeError (current user has no permissions to see Pushkin's timeline): app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.9ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (52.7ms) Completed 200 OK in 76ms (Views: 73.6ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:37:17 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms RuntimeError (current user has no permissions to see Pushkins timeline): app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (72.4ms) Completed 200 OK in 81ms (Views: 76.0ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:31 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:37:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms RuntimeError (current user has no permissions to see Pushkin/'s timeline): app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.6ms) Started GET "/" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (66.8ms) Completed 200 OK in 75ms (Views: 72.0ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:37:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms RuntimeError (current user has no permissions to see Pushkin's timeline): app/controllers/timeline_controller.rb:5:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-05 23:39:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (24.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (129.6ms) Completed 200 OK in 162ms (Views: 156.0ms | ActiveRecord: 5.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (21ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /test.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:39:25 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (24.1ms) Completed 200 OK in 36ms (Views: 21.4ms | ActiveRecord: 4.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:39:27 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (33.8ms) Completed 200 OK in 40ms (Views: 35.7ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-05 23:39:28 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"obj_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (4.3ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (115.1ms) Completed 200 OK in 147ms (Views: 141.7ms | ActiveRecord: 4.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /test.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /jquery.js - 304 Not Modified (36ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 00:10:35 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-07 00:10:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 404 Not Found in 4ms ActiveRecord::RecordNotFound (Couldn't find User without an ID): app/controllers/timeline_controller.rb:6:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-07 00:10:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Completed 404 Not Found in 2ms ActiveRecord::RecordNotFound (Couldn't find User without an ID): app/controllers/timeline_controller.rb:6:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.7ms) Started GET "/" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (51.9ms) Completed 200 OK in 61ms (Views: 58.2ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 00:12:11 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-07 00:12:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.342025') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (16.8ms) Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-07 00:12:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.274247') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.0ms) User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (15.3ms) Completed 200 OK in 21ms (Views: 16.7ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-07 00:12:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-04-28 11:02:48.244397') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.6ms) Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.8ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (0.2ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (123.1ms) Completed 200 OK in 157ms (Views: 151.9ms | ActiveRecord: 4.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 00:27:29 +0400 Served asset /application.js - 304 Not Modified (13ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-07 00:30:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (0.2ms) User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (123.9ms) Completed 200 OK in 155ms (Views: 148.9ms | ActiveRecord: 5.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (19ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 00:30:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Rendered inkwell_timelines/_multi_selector.html.erb (13.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (33.6ms) Completed 200 OK in 47ms (Views: 45.3ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /jquery.js - 304 Not Modified (17ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 00:52:36 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.2ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.8ms) Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 01:03:18 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.2ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5  (0.2ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector.html.erb (20.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (58.7ms) Completed 200 OK in 68ms (Views: 64.9ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:29 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector.html.erb (12.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (30.9ms) Completed 200 OK in 40ms (Views: 38.2ms | ActiveRecord: 1.7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 01:31:59 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (21.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (4.7ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (5.0ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (5.3ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (5.1ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (7.6ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (6.6ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (5.2ms) commit transaction  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (2.7ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00]]  (13.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00]]  (4.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.4ms) commit transaction  (0.2ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Mon, 06 May 2013 21:34:19 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (342.0ms) commit transaction  (0.1ms) begin transaction SQL (1.4ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 7], ["parent_ids", "[]"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[2,3,4,5]', "updated_at" = '2013-05-06 21:34:20.062700' WHERE "categories"."id" = 1  (6.7ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[3,4]', "updated_at" = '2013-05-06 21:34:20.071542' WHERE "categories"."id" = 2  (6.2ms) commit transaction  (0.0ms) begin transaction  (0.1ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[8]', "updated_at" = '2013-05-06 21:34:20.080128' WHERE "categories"."id" = 7  (6.6ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (28.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (13.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 14], ["category_id", 2], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 14], ["category_id", 8], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 15], ["category_id", 1], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 16], ["category_id", 7], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 21], ["category_id", 4], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 24], ["category_id", 3], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["blog_item_id", 24], ["category_id", 8], ["created_at", Mon, 06 May 2013 21:34:20 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Mon, 06 May 2013 21:34:20 UTC +00:00]]  (8.0ms) commit transaction Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Rendered inkwell_timelines/_multi_selector.html.erb (12.1ms) User Load (13.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (136.3ms) Completed 200 OK in 180ms (Views: 162.6ms | ActiveRecord: 17.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 01:34:29 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-07 01:41:56 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_item.html.erb (29.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (30.3ms) Rendered test/show.html.erb within layouts/application (36.7ms) Completed 500 Internal Server Error in 39ms ActionView::Template::Error (undefined local variable or method `first_level_record' for #<#:0xb56ce480>): 3: 6: <%= first_level_record.name %> 7:
8: <% end %> app/views/inkwell_timelines/_multi_selector_item.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_item_html_erb__158019448__625529398' app/views/inkwell_timelines/_multi_selector_item.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_item_html_erb__158019448__625529398' app/views/inkwell_timelines/_multi_selector.html.erb:6:in `_app_views_inkwell_timelines__multi_selector_html_erb__733948158__625524388' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___782590843_80876640' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms) Started GET "/" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Rendered inkwell_timelines/_multi_selector_item.html.erb (2.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (27.5ms) Completed 200 OK in 38ms (Views: 35.5ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 01:42:10 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 Rendered inkwell_timelines/_multi_selector_item.html.erb (1.9ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 Rendered inkwell_timelines/_multi_selector_item.html.erb (4.5ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector_item.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_item.html.erb (9.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (15.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (45.3ms) Completed 200 OK in 53ms (Views: 50.5ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-07 01:46:17 +0400 Served asset /application.js - 304 Not Modified (1ms) Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (20.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (6.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (4.5ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (5.1ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (6.8ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (7.5ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (6.3ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "checked" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (7.2ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (6.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (2.4ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (8.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", false], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (6.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (7.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", false], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", false], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 7], ["parent_ids", "[]"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (6.0ms) commit transaction  (0.1ms) begin transaction  (0.2ms) UPDATE "categories" SET "child_ids" = '[2,3,4,5]', "updated_at" = '2013-05-08 19:07:57.914358' WHERE "categories"."id" = 1  (5.4ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[3,4]', "updated_at" = '2013-05-08 19:07:57.921021' WHERE "categories"."id" = 2  (4.1ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[8]', "updated_at" = '2013-05-08 19:07:57.927021' WHERE "categories"."id" = 7  (6.0ms) commit transaction  (0.0ms) begin transaction  (11.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (4.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:57 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:57 UTC +00:00]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (4.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (3.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 14], ["category_id", 2], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 14], ["category_id", 8], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 15], ["category_id", 1], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 16], ["category_id", 7], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 21], ["category_id", 4], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 24], ["category_id", 3], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["blog_item_id", 24], ["category_id", 8], ["created_at", Wed, 08 May 2013 19:07:58 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Wed, 08 May 2013 19:07:58 UTC +00:00]]  (7.3ms) commit transaction Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 Rendered inkwell_timelines/_multi_selector_item.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 Rendered inkwell_timelines/_multi_selector_item.html.erb (4.5ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector_item.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_item.html.erb (14.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (15.5ms) User Load (13.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (25.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (155.1ms) Completed 200 OK in 188ms (Views: 169.2ms | ActiveRecord: 18.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /application.css - 304 Not Modified (28ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:09:02 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:17:37 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.2ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Rendered inkwell_timelines/_multi_selector_items.html.erb (23.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (25.9ms) Rendered test/show.html.erb within layouts/application (32.1ms) Completed 500 Internal Server Error in 34ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_item with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.where(:parent_category_id => record.id) %> 4: 5: <%= record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_item', :locals => {:records => records, :id => record.id} unless child_records.empty? %> 7:
8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__462538964__624536458' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__462538964__624536458' app/views/inkwell_timelines/_multi_selector.html.erb:6:in `_app_views_inkwell_timelines__multi_selector_html_erb___31912170__624556688' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___652672496_78591000' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-08 23:18:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Rendered inkwell_timelines/_multi_selector_items.html.erb (23.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (23.9ms) Rendered test/show.html.erb within layouts/application (72.2ms) Completed 500 Internal Server Error in 88ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_item with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.where(:parent_category_id => record.id) %> 4: 5: <%= record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_item', :locals => {:records => records, :id => record.id} unless child_records.empty? %> 7:
8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb___49391013__615498088' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb___49391013__615498088' app/views/inkwell_timelines/_multi_selector.html.erb:6:in `_app_views_inkwell_timelines__multi_selector_html_erb___1031623692_93158040' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__934884517_85115730' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:18:21 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) Rendered test/show.html.erb within layouts/application (5.6ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_item with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.where(:parent_category_id => record.id) %> 4: 5: <%= record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_item', :locals => {:records => records, :id => record.id} unless child_records.empty? %> 7:
8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb___49391013__615498088' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb___49391013__615498088' app/views/inkwell_timelines/_multi_selector.html.erb:6:in `_app_views_inkwell_timelines__multi_selector_html_erb___1031623692_93158040' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__934884517_85115730' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.9ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:18:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.9ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 Rendered inkwell_timelines/_multi_selector_items.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (10.0ms) CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Rendered inkwell_timelines/_multi_selector.html.erb (10.8ms) User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (100.3ms) Completed 200 OK in 118ms (Views: 110.9ms | ActiveRecord: 6.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (25ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:18:36 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:29:25 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 Rendered inkwell_timelines/_multi_selector_items.html.erb (3.2ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (14.0ms) CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Rendered inkwell_timelines/_multi_selector.html.erb (17.2ms) Rendered test/show.html.erb within layouts/application (28.9ms) Completed 500 Internal Server Error in 30ms ActionView::Template::Error (undefined method `checked' for 2:Fixnum): 45: <%= record.name %> 46: <% else %> 47: <% record.child_record_ids.each do |child_record| %> 48: <% if child_record.checked %> 49: <%= child_record.name %> 50: <% break %> 51: <% end %> app/views/inkwell_timelines/_multi_selector.html.erb:48:in `block (2 levels) in _app_views_inkwell_timelines__multi_selector_html_erb___1031623692__623196698' app/views/inkwell_timelines/_multi_selector.html.erb:47:in `each' app/views/inkwell_timelines/_multi_selector.html.erb:47:in `block in _app_views_inkwell_timelines__multi_selector_html_erb___1031623692__623196698' app/views/inkwell_timelines/_multi_selector.html.erb:43:in `_app_views_inkwell_timelines__multi_selector_html_erb___1031623692__623196698' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__934884517_85115730' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.9ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Processing by TestController#show as HTML User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1  (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 3  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 CACHE (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 4 Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 CACHE (0.9ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 5 Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms)  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 6  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7  (0.1ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 CACHE (0.0ms) SELECT COUNT(*) FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 8 Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (10.8ms) CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_multi_selector.html.erb (13.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (62.2ms) Completed 200 OK in 71ms (Views: 65.4ms | ActiveRecord: 5.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /application.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:30:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 2 Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" = 7 Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.0ms) CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.4ms) Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:53:53 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.7ms) Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:15 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_multi_selector.html.erb (8.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (37.2ms) Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:30 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:55:43 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (14.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (15.3ms) Rendered test/show.html.erb within layouts/application (19.9ms) Completed 500 Internal Server Error in 23ms ActionView::Template::Error (undefined local variable or method `recod' for #<#:0xb655736c>): 1: <% records.select {|record| recod[:parent_category_id] == id }.each do |record| %> 2:
3: <% child_records = records.select {|child_record| child_record[:parent_category_id] == record.id} %> 4: app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb___49391013__618078058' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb___49391013__618078058' app/views/inkwell_timelines/_multi_selector.html.erb:6:in `_app_views_inkwell_timelines__multi_selector_html_erb___1031623692_85975870' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__934884517_85115730' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.5ms) Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:55:50 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."parent_category_id" IS NULL Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' AND "categories"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_multi_selector.html.erb (7.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.3ms) Completed 200 OK in 40ms (Views: 37.7ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-08 23:57:42 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (33.0ms) Completed 200 OK in 42ms (Views: 39.2ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 00:02:05 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (42.8ms) Completed 200 OK in 55ms (Views: 53.6ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 00:14:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 00:15:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.7ms) Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (18.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (18.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.8ms) Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 00:15:26 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (21.4ms) Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 14:08:39 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (74.3ms) Completed 200 OK in 84ms (Views: 79.9ms | ActiveRecord: 3.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 14:30:50 +0400 Served asset /application.js - 304 Not Modified (1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.5ms) User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (141.2ms) Completed 200 OK in 185ms (Views: 179.2ms | ActiveRecord: 5.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /application.css - 304 Not Modified (11ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /application.js - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:00:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (31.1ms) Completed 200 OK in 57ms (Views: 54.2ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:01:32 +0400 Served asset /application.js - 304 Not Modified (1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.1ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (130.2ms) Completed 200 OK in 173ms (Views: 167.7ms | ActiveRecord: 5.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /test.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:41:05 +0400 Served asset /application.js - 304 Not Modified (5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-09 15:44:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.1ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (130.1ms) Compiled inkwell_timelines/multi_selector.css (0ms) (pid 14406) Compiled inkwell_timelines/index.css (4ms) (pid 14406) Compiled application.css (14ms) (pid 14406) Completed 200 OK in 184ms (Views: 178.0ms | ActiveRecord: 5.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:44:13 +0400 Served asset /application.js - 304 Not Modified (21ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.8ms) Completed 200 OK in 36ms (Views: 33.9ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:45:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (28.3ms) Compiled inkwell_timelines/multi_selector.css (0ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (16ms) (pid 14406) Completed 200 OK in 64ms (Views: 61.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:48:57 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.1ms) Compiled inkwell_timelines/multi_selector.css (0ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 58ms (Views: 56.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /application.css - 304 Not Modified (12ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:08 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.2ms) Compiled inkwell_timelines/multi_selector.css (0ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (20ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:49:22 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.4ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (5ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 48ms (Views: 46.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /application.css - 304 Not Modified (24ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:50:35 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.4ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 43ms (Views: 41.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:52:13 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (3ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.1ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 54ms (Views: 50.9ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /application.css - 304 Not Modified (23ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:52:45 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (28.6ms) Completed 200 OK in 39ms (Views: 36.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:52:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (1.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (42.2ms) Completed 200 OK in 56ms (Views: 53.3ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:52:50 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) User Load (2.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.1ms) Completed 200 OK in 49ms (Views: 44.5ms | ActiveRecord: 4.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:54:55 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (27.8ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:55:53 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:56:12 +0400 Processing by TestController#show as HTML User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.9ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 53ms (Views: 49.6ms | ActiveRecord: 3.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /application.css - 304 Not Modified (9ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (24ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:56:13 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.7ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 46ms (Views: 44.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:56:37 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 34ms (Views: 31.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 15:58:48 +0400 Served asset /application.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:59:21 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:59:35 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:59:41 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:59:42 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:59:46 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 15:59:49 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (14.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) Rendered test/show.html.erb within layouts/application (40.5ms) Completed 200 OK in 51ms (Views: 49.5ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:08 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.8ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:01:54 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.5ms) Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:05:00 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.9ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 64ms (Views: 61.9ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:06:01 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (15.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (44.5ms) Compiled inkwell_timelines/multi_selector.css (0ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 90ms (Views: 88.2ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /application.css - 304 Not Modified (12ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:06:18 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (36.0ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 59ms (Views: 57.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:06:43 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (31.1ms) Completed 200 OK in 57ms (Views: 54.9ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:06:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.5ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (1ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 59ms (Views: 56.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:07:01 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.4ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 59ms (Views: 57.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:07:16 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:07:18 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.7ms) Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:19 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (20.7ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:07:30 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (15.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (42.5ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 66ms (Views: 63.4ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:07:41 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (15.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.7ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 65ms (Views: 62.8ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:07:53 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (32.3ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 72ms (Views: 69.7ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:08:00 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.6ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 71ms (Views: 69.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:08:26 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:08:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (23.9ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (17ms) (pid 14406) Completed 200 OK in 64ms (Views: 62.6ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:08:41 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.5ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 57ms (Views: 55.9ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:09:27 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.2ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 68ms (Views: 65.5ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:09:39 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:09:40 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (29.1ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 67ms (Views: 65.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /application.css - 304 Not Modified (10ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:10:37 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:10:38 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (24.8ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 64ms (Views: 62.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:10:48 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:10:49 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (31.2ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 70ms (Views: 68.1ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /application.css - 304 Not Modified (11ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:10:57 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:10:58 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.6ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 53ms (Views: 50.5ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /application.css - 304 Not Modified (27ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:09 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:10 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:11:10 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:11:10 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.3ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 61ms (Views: 58.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (17ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:11:29 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:11:30 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (23.3ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 48ms (Views: 45.7ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (5ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:11:43 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (33.4ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (1ms) (pid 14406) Completed 200 OK in 58ms (Views: 55.8ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:12:34 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:12:35 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:12:35 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.7ms) Completed 200 OK in 42ms (Views: 39.9ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:14:28 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:14:29 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.9ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 66ms (Views: 63.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (11ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:15:11 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Processing by TestController#show as HTML User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (30.6ms) Compiled inkwell_timelines/multi_selector.css (2ms) (pid 14406) Compiled inkwell_timelines/index.css (0ms) (pid 14406) Compiled application.css (2ms) (pid 14406) Completed 200 OK in 72ms (Views: 69.0ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 16:15:41 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 14406) Compiled inkwell_timelines/index.js (5ms) (pid 14406) Compiled application.js (2ms) (pid 14406) Completed 200 OK in 70ms (Views: 68.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:26 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:16:27 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:16:28 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (32.8ms) Completed 200 OK in 57ms (Views: 55.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:33 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (25.2ms) User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (24.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (143.3ms) Completed 200 OK in 194ms (Views: 188.1ms | ActiveRecord: 5.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /jquery.js - 304 Not Modified (6ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /test.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:16:46 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (15.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (3ms) (pid 16127) Completed 200 OK in 80ms (Views: 78.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:19:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:19:11 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:19:13 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:19:20 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (3ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 68ms (Views: 66.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (18ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:20:37 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:20:38 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:20:42 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (3ms) (pid 16127) Compiled application.js (3ms) (pid 16127) Completed 200 OK in 61ms (Views: 59.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:21:33 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:21:34 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:21:35 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:21:42 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (32.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 75ms (Views: 72.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /test.js - 304 Not Modified (18ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /application.js - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:25:40 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (1.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (31.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (3ms) (pid 16127) Completed 200 OK in 72ms (Views: 69.0ms | ActiveRecord: 3.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:08 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (13.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (3ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 74ms (Views: 72.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:31 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:26:41 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 67ms (Views: 64.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:26:56 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Processing by TestController#show as HTML User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (32.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 76ms (Views: 71.1ms | ActiveRecord: 4.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:27 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (27.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (3ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 70ms (Views: 67.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:27:46 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:27:47 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 66ms (Views: 64.3ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:30:14 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:30:15 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:30:15 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:30:16 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (3ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 73ms (Views: 70.4ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /application.js - 304 Not Modified (20ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:35:02 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:35:03 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Processing by TestController#show as HTML User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 69ms (Views: 66.5ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:36:21 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:36:22 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (3ms) (pid 16127) Completed 200 OK in 71ms (Views: 68.8ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:37:17 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:37:19 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:37:19 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (39.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (3ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 68ms (Views: 65.6ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (17ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:39:31 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:39:32 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:39:32 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:43:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (30.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (16ms) (pid 16127) Completed 200 OK in 72ms (Views: 69.9ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:43:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:43:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:43:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:43:40 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (45.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 73ms (Views: 70.4ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (19ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:46:43 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:46:44 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:46:44 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:46:45 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 16127) Compiled inkwell_timelines/index.js (2ms) (pid 16127) Compiled application.js (2ms) (pid 16127) Completed 200 OK in 62ms (Views: 59.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:47:20 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 18:47:21 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Completed 200 OK in 48ms (Views: 45.3ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:06:18 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (27.3ms) Completed 200 OK in 39ms (Views: 37.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /test.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (15ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:07:35 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:07:37 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:07:38 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (34.3ms) Completed 200 OK in 48ms (Views: 45.4ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:07:59 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:08:00 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:08:00 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:19:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.3ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 16127) Compiled inkwell_timelines/index.css (0ms) (pid 16127) Compiled application.css (2ms) (pid 16127) Completed 200 OK in 59ms (Views: 57.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:19:25 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-09 19:19:26 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-09 19:19:26 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (3ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-09 19:19:26 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (7ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-09 19:19:28 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (4ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-09 19:19:42 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (6ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (15.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (38.5ms) Completed 200 OK in 49ms (Views: 47.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:23:13 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (33.8ms) Completed 200 OK in 47ms (Views: 43.7ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:36:40 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (35.3ms) Completed 200 OK in 46ms (Views: 42.8ms | ActiveRecord: 3.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-09 19:39:08 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (28.1ms) Completed 200 OK in 43ms (Views: 40.7ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 00:03:47 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:05:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (22.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (24.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.9ms) Rendered test/show.html.erb within layouts/application (26.9ms) Completed 500 Internal Server Error in 29ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb54041dc>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7:
8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626921858' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626921858' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626970198' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626970198' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb__141664247__626989458' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__954831603_85761000' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (9.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (10.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (11.7ms) Rendered test/show.html.erb within layouts/application (14.1ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xa017c3c>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626921858' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626921858' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626970198' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626970198' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb__141664247_86733760' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__954831603_85761000' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:05 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (7.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (10.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (12.6ms) Rendered test/show.html.erb within layouts/application (16.7ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb5a063dc>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626921858' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626921858' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626970198' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__163787115__626970198' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb__141664247_86733760' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__954831603_85761000' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (19.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (27.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (27.7ms) Rendered test/show.html.erb within layouts/application (76.6ms) Completed 500 Internal Server Error in 91ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb10bf34>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:19 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (10.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (13.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (13.8ms) Rendered test/show.html.erb within layouts/application (16.4ms) Completed 500 Internal Server Error in 18ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb6048cb8>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:19 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (6.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.8ms) Rendered test/show.html.erb within layouts/application (14.7ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb6a73620>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:20 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (19.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (21.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (21.9ms) Rendered test/show.html.erb within layouts/application (26.3ms) Completed 500 Internal Server Error in 30ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb5855ed4>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:22 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (10.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (12.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (13.3ms) Rendered test/show.html.erb within layouts/application (19.8ms) Completed 500 Internal Server Error in 22ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb6a54c5c>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.0ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:27 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (10.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.5ms) Rendered test/show.html.erb within layouts/application (16.6ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb5d31570>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (1.7ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (8.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.2ms) Rendered test/show.html.erb within layouts/application (14.2ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb5c4b4e4>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:06:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (24.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (28.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (29.3ms) Rendered test/show.html.erb within layouts/application (33.6ms) Completed 500 Internal Server Error in 37ms ActionView::Template::Error (undefined local variable or method `selector_id' for #<#:0xb6ab4b5c>): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233__620580308' app/views/inkwell_timelines/_multi_selector_items.html.erb:6:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb__838327233_92523630' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___320011313_96191810' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__220165509_92755760' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.2ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 01:07:35 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (15.3ms) User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (13.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (96.6ms) Completed 200 OK in 120ms (Views: 114.7ms | ActiveRecord: 4.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /jquery.js - 304 Not Modified (24ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 01:07:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.4ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (130.5ms) Completed 200 OK in 178ms (Views: 172.7ms | ActiveRecord: 5.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 01:09:48 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.9ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 67.9ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 13:58:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 13:58:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 13:58:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 13:58:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 13:58:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 13:58:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 13:58:03 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 74ms (Views: 71.2ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 14:03:45 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 65.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 14:06:56 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 80ms (Views: 78.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 14:18:48 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-11 14:19:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (23.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 64ms (Views: 62.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 14:19:12 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 14:19:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 14:19:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 65.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:22 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 68.4ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:00:53 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 69ms (Views: 67.3ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (31ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:25 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:01:44 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (24.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 64ms (Views: 61.9ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:01:45 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:02:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 69ms (Views: 67.2ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:36 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:37 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 68ms (Views: 66.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /test.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:02:49 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 63.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:03:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:03:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:03:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:03:29 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:04:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (23.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 74ms (Views: 72.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:04:36 +0400 Served asset /application.js - 304 Not Modified (24ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (11.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (33.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 75ms (Views: 72.3ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:05:30 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (26.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 69ms (Views: 66.9ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:06:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:06:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:06:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:06:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:06:07 +0400 Served asset /application.js - 304 Not Modified (28ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (27.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 72ms (Views: 70.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:10:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:10:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:10:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:10:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:10:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:10:49 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 68ms (Views: 65.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:16 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (39.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 87ms (Views: 84.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:15:41 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 71ms (Views: 69.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:05 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.8ms) Completed 200 OK in 52ms (Views: 48.9ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:17:26 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 61ms (Views: 59.3ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:18:49 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (35.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 63ms (Views: 61.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (25ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:20:03 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Processing by TestController#show as HTML User Load (7.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (37.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 80ms (Views: 70.5ms | ActiveRecord: 9.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:24:15 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 63ms (Views: 61.5ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:31:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:31:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:31:25 +0400 Served asset /application.js - 304 Not Modified (30ms) Started GET "/" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Processing by TestController#show as HTML User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 66ms (Views: 63.6ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 16:33:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 16:33:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 16:33:28 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 67ms (Views: 65.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:00 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 66ms (Views: 64.2ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:20:41 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:21:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (23.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 63.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:03 +0400 Served asset /application.js - 304 Not Modified (41ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 68.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:18 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 66ms (Views: 64.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:21:43 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (1ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 75ms (Views: 73.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (21ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:02 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 67.4ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (12ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:22:39 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (26.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 78ms (Views: 76.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:33 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (41.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 71ms (Views: 69.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:23:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 72ms (Views: 70.0ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:24 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.8ms) Completed 200 OK in 38ms (Views: 33.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:41 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.0ms) Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:25:50 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (19.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 62ms (Views: 60.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:38:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:39:45 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Processing by TestController#show as HTML User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 63.9ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:16 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:40:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (34.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 77ms (Views: 74.2ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:40:29 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 68.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:41:31 +0400 Served asset /application.js - 304 Not Modified (25ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (27.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 64.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:42:03 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 66ms (Views: 65.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:43:32 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (36.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 78ms (Views: 76.1ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:44:18 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (21.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (23.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (45.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (1ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 74ms (Views: 71.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (17ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:34 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:46:57 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 63.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:46:58 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Processing by TestController#show as HTML User Load (3.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (33.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (15ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 75ms (Views: 69.6ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:47:21 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 63.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:48:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:48:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:48:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:48:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:48:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:48:25 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (22ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 69ms (Views: 66.4ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:25 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (38.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 82ms (Views: 80.1ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 19:49:54 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-11 20:21:59 +0400 Processing by TestController#show as HTML User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 66ms (Views: 63.1ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 20:22:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (21ms) Started GET "/" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (28.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 77ms (Views: 73.8ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (14ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 20:23:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 65.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (66ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 20:24:09 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (24.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 68ms (Views: 65.9ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 20:25:56 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 91ms (Views: 88.5ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-11 20:27:06 +0400 Served asset /application.js - 304 Not Modified (22ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (12.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (37.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 62.7ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /test.js - 304 Not Modified (20ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:18 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.9ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 64.3ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:41:54 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (12.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (35.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (16ms) (pid 18211) Completed 200 OK in 79ms (Views: 76.7ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:43:44 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 63ms (Views: 62.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:44:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (14.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 68.2ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:46:28 +0400 Served asset /application.js - 304 Not Modified (29ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (29.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 621ms (Views: 619.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:08 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 71ms (Views: 68.8ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:47:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 63.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:48:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 74ms (Views: 72.1ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:52:34 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (21.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 62ms (Views: 60.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 00:54:49 +0400 Served asset /application.js - 304 Not Modified (24ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (12.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (34.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 65ms (Views: 63.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (20ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:11:24 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 63ms (Views: 61.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:15:01 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 75ms (Views: 73.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:03 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 67ms (Views: 65.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:36:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:38:16 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.4ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (30.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 73ms (Views: 70.3ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:38:17 +0400 Served asset /application.js - 304 Not Modified (25ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (21.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 50ms (Views: 48.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (26ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:39:08 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (28.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:04 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (31.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 74ms (Views: 71.8ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:40:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (32.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (16ms) (pid 18211) Completed 200 OK in 75ms (Views: 73.1ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 64ms (Views: 62.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:42:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (25.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 18211) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 69ms (Views: 66.9ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 01:43:05 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-12 17:44:40 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (17.4ms) Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 1.1ms) Started GET "/" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Processing by TestController#show as HTML User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.5ms) Completed 200 OK in 37ms (Views: 34.1ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 17:44:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-12 17:44:47 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (27.0ms) Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 2.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-12 17:44:49 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (22.7ms) Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-12 17:44:50 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.3ms) Completed 200 OK in 12ms (Views: 8.1ms | ActiveRecord: 0.8ms) Started GET "/" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (24.6ms) Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 17:46:58 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:20:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (20.6ms) Compiled inkwell_timelines/tab-menu.css (0ms) (pid 18211) Compiled inkwell_timelines/index.css (0ms) (pid 18211) Compiled application.css (2ms) (pid 18211) Completed 200 OK in 56ms (Views: 55.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:20:19 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (2.2ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (27.0ms) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 70ms (Views: 67.7ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (8ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:33:59 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:34:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (18.1ms) Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:34:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (1.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (12.3ms) Completed 200 OK in 16ms (Views: 12.3ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:34:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.6ms) Completed 200 OK in 10ms (Views: 6.3ms | ActiveRecord: 0.9ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.0ms) Completed 200 OK in 31ms (Views: 29.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:34:07 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.7ms) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 49ms (Views: 47.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:29 +0400 Served asset /inkwell_timelines/index.js - 200 OK (26ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:30 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:37:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (21.3ms) Completed 200 OK in 25ms (Views: 21.7ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:37:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (8.5ms) Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:37:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.1ms) Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:37:39 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (27.3ms) Completed 200 OK in 37ms (Views: 36.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:37:40 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:38:38 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (28.7ms) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 73ms (Views: 70.6ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:38:39 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:12 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (33.1ms) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 75ms (Views: 72.7ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:40:40 +0400 Served asset /application.js - 304 Not Modified (14ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (30.9ms) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 75ms (Views: 72.9ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:41:08 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:41:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (20.5ms) Completed 200 OK in 27ms (Views: 22.0ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:41:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) Rendered timeline/show.html.erb (17.8ms) Completed 200 OK in 24ms (Views: 19.6ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:41:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.0ms) Completed 200 OK in 9ms (Views: 5.2ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:41:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.5ms) Completed 200 OK in 6ms (Views: 3.4ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:41:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.5ms) Completed 200 OK in 8ms (Views: 4.2ms | ActiveRecord: 0.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (23.2ms) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 69ms (Views: 66.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:48:30 +0400 Served asset /application.js - 304 Not Modified (15ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:48:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (23.5ms) Completed 200 OK in 28ms (Views: 23.9ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:48:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (10.3ms) Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:48:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (3.5ms) Completed 200 OK in 10ms (Views: 6.9ms | ActiveRecord: 0.8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Processing by TestController#show as HTML User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (46.9ms) Compiled inkwell_timelines/index.js (3ms) (pid 18211) Compiled application.js (2ms) (pid 18211) Completed 200 OK in 84ms (Views: 81.0ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 00:49:11 +0400 Served asset /application.js - 304 Not Modified (9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 00:49:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (17.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (38.0ms) Completed 200 OK in 43ms (Views: 39.1ms | ActiveRecord: 1.9ms) Started GET "/" for 127.0.0.1 at 2013-05-14 01:45:26 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (62.9ms) Compiled inkwell_timelines/index.js (2ms) (pid 18211) Compiled application.js (3ms) (pid 18211) Completed 200 OK in 105ms (Views: 102.1ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:45:27 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:45:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:45:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms) Started GET "/" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (15.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (37.7ms) Completed 200 OK in 50ms (Views: 48.3ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Served asset /application.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:46:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:46:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:46:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 5ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:46:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:46:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `inkwell_timelines_autoload_tag' for #): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 01:47:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (11.9ms) User Load (11.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (132.7ms) Completed 200 OK in 182ms (Views: 165.5ms | ActiveRecord: 15.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:47:02 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:47:02 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:47:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Served asset /application.js - 304 Not Modified (15ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:47:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) Completed 500 Internal Server Error in 11ms AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:47:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Completed 500 Internal Server Error in 13ms AbstractController::DoubleRenderError (Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".): app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (75.8ms) Completed 200 OK in 88ms (Views: 83.2ms | ActiveRecord: 3.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:51:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (14.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (30.8ms) Completed 200 OK in 34ms (Views: 30.2ms | ActiveRecord: 2.2ms) Started GET "/" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.4ms) Compiled inkwell_timelines/index.js (4ms) (pid 25282) Compiled application.js (2ms) (pid 25282) Completed 200 OK in 71ms (Views: 65.4ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Served asset /application.js - 304 Not Modified (11ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:53:47 +0400 Processing by TimelineController#show as JSON Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.json.erb (23.2ms) Completed 500 Internal Server Error in 27ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: {<%= inkwell_timelines_autoload_tag(@options) %>} app/views/timeline/show.json.erb:1:in `_app_views_timeline_show_json_erb___9674725__622269308' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (23.8ms) User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (138.6ms) Completed 200 OK in 186ms (Views: 180.7ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:57:40 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:57:41 +0400 Processing by TimelineController#show as JSON Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.json.erb (10.9ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: {<%= inkwell_timelines_autoload_tag(@options) %>} app/views/timeline/show.json.erb:1:in `_app_views_timeline_show_json_erb__126274522_91340300' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (23.9ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (138.5ms) Completed 200 OK in 189ms (Views: 182.4ms | ActiveRecord: 6.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 01:58:39 +0400 Processing by TimelineController#show as JSON Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.7ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.json.erb (11.4ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: {<%= inkwell_timelines_autoload_tag(@options) %>} app/views/timeline/show.json.erb:1:in `_app_views_timeline_show_json_erb__380886602_83235520' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.9ms) User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (138.2ms) Compiled inkwell_timelines/index.js (3ms) (pid 25564) Compiled application.js (3ms) (pid 25564) Completed 200 OK in 202ms (Views: 196.2ms | ActiveRecord: 5.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (11ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:00:34 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:00:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (1.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (17.4ms) Completed 200 OK in 20ms (Views: 16.7ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:00:38 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) Rendered timeline/show.html.erb (17.5ms) Completed 200 OK in 23ms (Views: 19.0ms | ActiveRecord: 1.7ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (45.1ms) Compiled inkwell_timelines/index.js (2ms) (pid 25564) Compiled application.js (3ms) (pid 25564) Completed 200 OK in 76ms (Views: 73.7ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /inkwell_timelines/index.js - 200 OK (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Served asset /application.js - 304 Not Modified (9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:11:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (15.8ms) Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Processing by TestController#show as HTML User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (10.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (12.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (39.7ms) Compiled inkwell_timelines/index.js (3ms) (pid 25564) Compiled application.js (2ms) (pid 25564) Completed 200 OK in 83ms (Views: 79.2ms | ActiveRecord: 4.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (24ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:16:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483418594}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (18.0ms) Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (37.1ms) Compiled inkwell_timelines/index.js (3ms) (pid 25564) Compiled application.js (2ms) (pid 25564) Completed 200 OK in 78ms (Views: 75.6ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:21:57 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:21:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483718082}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (17.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (35.9ms) Completed 200 OK in 40ms (Views: 19.5ms | ActiveRecord: 18.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:22:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483721226}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (9.8ms) Completed 200 OK in 13ms (Views: 10.6ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:22:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483721945}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.7ms) Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (24.1ms) Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:22:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483731746}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (17.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (33.2ms) Completed 200 OK in 36ms (Views: 33.1ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:22:43 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483763447}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered timeline/show.html.erb (19.7ms) Completed 200 OK in 26ms (Views: 21.2ms | ActiveRecord: 2.0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (23.8ms) Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:22:47 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (60.8ms) Completed 200 OK in 88ms (Views: 84.5ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:23:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:24:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483843282}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (22.3ms) Completed 200 OK in 60027ms (Views: 23.3ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (23.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (74.8ms) Completed 200 OK in 86ms (Views: 83.2ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:25:28 +0400 Served asset /application.js - 304 Not Modified (20ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:25:31 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483931786}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (31.2ms) Completed 200 OK in 30038ms (Views: 32.7ms | ActiveRecord: 2.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:26:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368483934976}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (27.0ms) Completed 200 OK in 30031ms (Views: 27.4ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:26:47 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368484007665}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (30.0ms) Completed 200 OK in 30035ms (Views: 31.4ms | ActiveRecord: 2.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:28:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368484092816}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (55.1ms) Completed 200 OK in 10072ms (Views: 58.0ms | ActiveRecord: 2.5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:30:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (17.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (80.3ms) Completed 200 OK in 93ms (Views: 90.1ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:30:09 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:30:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368484214978}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (31.3ms) Completed 200 OK in 7037ms (Views: 31.7ms | ActiveRecord: 3.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:30:22 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"timestamp\":1368484220198}"=>nil} User Load (0.7ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (38.0ms) Completed 200 OK in 7044ms (Views: 38.9ms | ActiveRecord: 3.4ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:34:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (59.8ms) Compiled inkwell_timelines/index.js (4ms) (pid 25564) Compiled application.js (3ms) (pid 25564) Completed 200 OK in 107ms (Views: 103.7ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (27ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:03 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:34:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) Rendered timeline/show.html.erb (41.1ms) Completed 200 OK in 7048ms (Views: 42.2ms | ActiveRecord: 2.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:34:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) Rendered timeline/show.html.erb (40.4ms) Completed 200 OK in 7046ms (Views: 41.0ms | ActiveRecord: 2.4ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.8ms) Compiled inkwell_timelines/index.js (2ms) (pid 25564) Compiled application.js (2ms) (pid 25564) Completed 200 OK in 77ms (Views: 75.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /inkwell_timelines/index.js - 200 OK (26ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:34:32 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:34:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (30.4ms) Completed 200 OK in 7037ms (Views: 31.4ms | ActiveRecord: 2.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:34:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) Rendered timeline/show.html.erb (40.4ms) Completed 200 OK in 7046ms (Views: 41.4ms | ActiveRecord: 2.7ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.7ms) Compiled inkwell_timelines/index.js (3ms) (pid 25564) Compiled application.js (3ms) (pid 25564) Completed 200 OK in 70ms (Views: 68.4ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:35:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:35:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:35:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:35:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:35:15 +0400 Served asset /application.js - 304 Not Modified (21ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:35:17 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (30.1ms) Completed 200 OK in 7036ms (Views: 31.2ms | ActiveRecord: 2.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:35:24 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (34.6ms) Completed 200 OK in 7039ms (Views: 34.6ms | ActiveRecord: 3.1ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:36:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (20.7ms) Compiled inkwell_timelines/index.js (3ms) (pid 25564) Compiled application.js (2ms) (pid 25564) Completed 200 OK in 61ms (Views: 59.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /inkwell_timelines/index.js - 200 OK (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:01 +0400 Served asset /application.js - 304 Not Modified (30ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:36:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) Rendered timeline/show.html.erb (41.7ms) Completed 200 OK in 7048ms (Views: 43.3ms | ActiveRecord: 2.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:36:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) Rendered timeline/show.html.erb (40.7ms) Completed 200 OK in 7046ms (Views: 42.2ms | ActiveRecord: 2.5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (77.1ms) Completed 200 OK in 89ms (Views: 85.3ms | ActiveRecord: 3.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:36:36 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:36:37 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (39.6ms) Completed 200 OK in 43ms (Views: 40.0ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:36:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (15.5ms) Completed 200 OK in 23ms (Views: 17.8ms | ActiveRecord: 1.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 02:37:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (25.4ms) User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (24.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (144.6ms) Completed 200 OK in 194ms (Views: 188.0ms | ActiveRecord: 5.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:37:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:37:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (15.2ms) Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 1.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (23.1ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (128.7ms) Completed 200 OK in 175ms (Views: 168.4ms | ActiveRecord: 6.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:42:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:42:23 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:42:25 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.4ms) Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:42:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (18.6ms) Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:42:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (8.8ms) Completed 200 OK in 12ms (Views: 9.4ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:42:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.3ms) Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:43:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.8ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (25.1ms) Completed 200 OK in 29ms (Views: 24.6ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:43:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (19.9ms) Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (20.8ms) Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 1.3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:43:28 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:43:31 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (22.5ms) Completed 200 OK in 26ms (Views: 21.3ms | ActiveRecord: 2.3ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (44.8ms) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:13 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/users/1" for 127.0.0.1 at 2013-05-14 02:47:15 +0400 ActionController::RoutingError (uninitialized constant UsersController): activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__173391886__call__443985432__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (28.0ms) Completed 200 OK in 53ms (Views: 51.3ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:47:20 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:48:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.9ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.9ms) Compiled inkwell_timelines/index.js (3ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 67ms (Views: 64.4ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:25 +0400 Served asset /inkwell_timelines/index.js - 200 OK (22ms) Started GET "/users/1" for 127.0.0.1 at 2013-05-14 02:48:26 +0400 ActionController::RoutingError (uninitialized constant UsersController): activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__173391886__call__443985432__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (41.5ms) Completed 200 OK in 60ms (Views: 56.2ms | ActiveRecord: 3.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:48:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:48:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (24.5ms) Completed 200 OK in 31ms (Views: 25.7ms | ActiveRecord: 2.2ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.9ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (41.4ms) Compiled inkwell_timelines/index.js (3ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 80ms (Views: 77.5ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:49:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (17.0ms) Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:49:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.979938') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (9.5ms) Completed 200 OK in 15ms (Views: 11.7ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:49:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:57.953385') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.7ms) Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.4ms) Started GET "/users/3" for 127.0.0.1 at 2013-05-14 02:49:13 +0400 ActionController::RoutingError (uninitialized constant UsersController): activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__173391886__call__443985432__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (34.9ms) Compiled inkwell_timelines/index.js (3ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 62ms (Views: 61.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /test.css - 304 Not Modified (15ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:50:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (17.1ms) Completed 200 OK in 21ms (Views: 16.8ms | ActiveRecord: 2.1ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:52:17 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (29.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 26258) Compiled inkwell_timelines/index.js (3ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 76ms (Views: 73.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /inkwell_timelines/index.js - 200 OK (29ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:52:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (16.4ms) Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:52:22 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (26.8ms) Completed 200 OK in 33ms (Views: 28.1ms | ActiveRecord: 1.9ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 26258) Compiled inkwell_timelines/index.js (2ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 63ms (Views: 61.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:53:06 +0400 Served asset /application.js - 304 Not Modified (14ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:53:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.6ms) Completed 200 OK in 25ms (Views: 19.9ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:53:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (27.9ms) Completed 200 OK in 35ms (Views: 28.5ms | ActiveRecord: 2.1ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (26.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 26258) Compiled inkwell_timelines/index.js (3ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 69ms (Views: 67.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:14 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:15 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (26ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:15 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 02:54:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (23.1ms) Completed 200 OK in 27ms (Views: 23.7ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.4ms) Completed 200 OK in 43ms (Views: 40.5ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /test.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /jquery.js - 304 Not Modified (6ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 02:54:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 26258) Compiled inkwell_timelines/index.js (2ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 68ms (Views: 65.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 03:01:06 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 26258) Compiled inkwell_timelines/index.js (2ms) (pid 26258) Compiled application.js (2ms) (pid 26258) Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (24ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 03:02:57 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (28.5ms) Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 03:04:02 +0400 Served asset /application.js - 304 Not Modified (20ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 03:04:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-08 19:07:58.042643') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.1ms) Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 03:04:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (23.8ms) Completed 200 OK in 28ms (Views: 24.1ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.9ms) Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (26ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 17:59:38 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (21.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (5.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.3ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (5.9ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (6.4ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (6.9ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (6.9ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "checked" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (7.3ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (6.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (1.9ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", false], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", false], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", false], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("checked", "child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["checked", true], ["child_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 7], ["parent_ids", "[]"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.6ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[2,3,4,5]', "updated_at" = '2013-05-14 14:13:49.308147' WHERE "categories"."id" = 1  (7.4ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[3,4]', "updated_at" = '2013-05-14 14:13:49.316666' WHERE "categories"."id" = 2  (6.3ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.2ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[8]', "updated_at" = '2013-05-14 14:13:49.337762' WHERE "categories"."id" = 7  (5.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (8.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (21.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (10.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (8.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 14], ["category_id", 2], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 14], ["category_id", 8], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 15], ["category_id", 1], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 16], ["category_id", 7], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 21], ["category_id", 4], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 24], ["category_id", 3], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["blog_item_id", 24], ["category_id", 8], ["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 14 May 2013 14:13:49 UTC +00:00], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Tue, 14 May 2013 14:13:49 UTC +00:00]]  (7.7ms) commit transaction Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 18:13:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.5ms) User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (136.2ms) Completed 200 OK in 185ms (Views: 179.0ms | ActiveRecord: 6.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /application.css - 304 Not Modified (11ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 18:14:00 +0400 Served asset /application.js - 304 Not Modified (4ms) Started GET "/" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (81.9ms) Completed 200 OK in 94ms (Views: 90.8ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:16 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.1ms) User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (132.4ms) Completed 200 OK in 180ms (Views: 174.0ms | ActiveRecord: 5.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /application.css - 304 Not Modified (9ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /jquery.js - 304 Not Modified (7ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (41.9ms) Completed 200 OK in 54ms (Views: 52.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 20:11:43 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:12:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Rendered timeline/show.html.erb (28.2ms) Completed 500 Internal Server Error in 33ms ActionView::Template::Error (undefined local variable or method `blog_obj' for #): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/models/user.rb:79:in `block in favoriteline' app/models/user.rb:69:in `favoriteline' config/initializers/inkwell_timelines.rb:39:in `block in ' app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb__703268152__617768238' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.4ms) User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (136.6ms) Completed 200 OK in 183ms (Views: 177.3ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (12ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 20:14:06 +0400 Served asset /application.js - 304 Not Modified (13ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:14:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (21.2ms) Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:14:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "4"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.376157') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (16.1ms) Completed 200 OK in 23ms (Views: 17.8ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:14:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.352576') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.7ms) Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Processing by TestController#show as HTML User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.4ms) Compiled inkwell_timelines/index.js (4ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 72ms (Views: 69.3ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 20:19:59 +0400 Served asset /application.js - 304 Not Modified (26ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:20:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.4ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (17.2ms) Completed 200 OK in 22ms (Views: 18.0ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:20:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.3ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.662915') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) Rendered timeline/show.html.erb (16.1ms) Completed 200 OK in 22ms (Views: 17.4ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:20:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "1"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.637266') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.6ms) Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:20:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (29.3ms) Completed 200 OK in 34ms (Views: 29.8ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:22:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.3ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (22.2ms) Completed 200 OK in 27ms (Views: 22.9ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:23:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.662915') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered timeline/show.html.erb (9.3ms) Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:23:17 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "1"]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.637266') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.7ms) Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:23:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (44.2ms) Completed 200 OK in 49ms (Views: 44.7ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:23:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.9ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (23.5ms) Completed 200 OK in 29ms (Views: 23.1ms | ActiveRecord: 3.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:23:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (30.5ms) Completed 200 OK in 36ms (Views: 30.4ms | ActiveRecord: 2.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:28:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (21.7ms) Completed 200 OK in 27ms (Views: 22.3ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:28:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (34.7ms) Completed 200 OK in 41ms (Views: 35.7ms | ActiveRecord: 2.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:29:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) Rendered timeline/show.html.erb (26.4ms) Completed 200 OK in 33ms (Views: 28.3ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:29:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (17.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (45.8ms) Completed 200 OK in 51ms (Views: 29.5ms | ActiveRecord: 19.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:29:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (18.3ms) Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 20:29:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\"}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (26.3ms) Completed 200 OK in 33ms (Views: 28.5ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:05:02 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (1.7ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (3ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 70ms (Views: 66.8ms | ActiveRecord: 3.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:05:03 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (1.5ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.7ms) Compiled inkwell_timelines/index.js (3ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 71ms (Views: 68.3ms | ActiveRecord: 2.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /inkwell_timelines/index.js - 200 OK (22ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:27 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.2ms) Completed 200 OK in 42ms (Views: 40.1ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:31 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (14.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (43.2ms) Compiled inkwell_timelines/index.js (3ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 71ms (Views: 69.4ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /application.css - 304 Not Modified (13ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /inkwell_timelines/index.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:06:42 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.4ms) Compiled inkwell_timelines/inkwell.timeline.js (2ms) (pid 27961) Compiled inkwell_timelines/index.js (5ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell.timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/inkwell.timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:10:50 +0400 Served asset /application.js - 304 Not Modified (29ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) Rendered test/show.html.erb within layouts/application (20.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 66ms (Views: 64.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell.timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/inkwell.timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:21 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (31.4ms) Completed 200 OK in 63ms (Views: 60.7ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell.timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/inkwell.timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:23 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:11:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (28.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (3ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 74ms (Views: 71.4ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell.timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/inkwell.timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (25ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:34 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (31.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 76ms (Views: 73.9ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell.timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/inkwell.timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:11:52 +0400 Served asset /application.js - 304 Not Modified (12ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:14:56 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.9ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.8ms) Completed 500 Internal Server Error in 68ms ActionView::Template::Error (couldn't find file 'inkwell_timeline' (in /media/workspace/repo/public_projects/inkwell_timelines/app/assets/javascripts/inkwell_timelines/index.js.erb:15)): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", :media => "all" %> 6: <%= javascript_include_tag "application" %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__761243180_79021980' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:15:28 +0400 Processing by TestController#show as HTML User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (31.3ms) Completed 500 Internal Server Error in 50ms ActionView::Template::Error (couldn't find file 'inkwell_timeline.js' (in /media/workspace/repo/public_projects/inkwell_timelines/app/assets/javascripts/inkwell_timelines/index.js.erb:15)): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", :media => "all" %> 6: <%= javascript_include_tag "application" %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__761243180_79021980' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:15:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (15.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.3ms) Completed 500 Internal Server Error in 57ms ActionView::Template::Error (couldn't find file 'inkwell_timeline.js' (in /media/workspace/repo/public_projects/inkwell_timelines/app/assets/javascripts/inkwell_timelines/index.js.erb:15)): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", :media => "all" %> 6: <%= javascript_include_tag "application" %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__761243180_79021980' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:15:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (32.3ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 27961) Compiled inkwell_timelines/index.js (7ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 80ms (Views: 76.3ms | ActiveRecord: 3.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:15:37 +0400 Served asset /application.js - 304 Not Modified (15ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Processing by TestController#show as HTML User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.4ms) Completed 200 OK in 55ms (Views: 52.6ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:16:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.2ms) Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (16ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:45 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.4ms) Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (13.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (32.5ms) Compiled inkwell_timelines/index.js (2ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 62ms (Views: 60.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /test.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:54 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Processing by TestController#show as HTML User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.4ms) Completed 200 OK in 54ms (Views: 50.6ms | ActiveRecord: 3.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:16:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 73ms (Views: 71.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:17:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (17.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (34.9ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 79ms (Views: 77.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:18:26 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:19:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 66ms (Views: 64.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:19:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:19:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:19:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:19:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:20:00 +0400 Served asset /application.js - 304 Not Modified (12ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:21:03 +0400 Processing by TestController#show as HTML User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (2ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 76ms (Views: 73.6ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:21:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:21:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:21:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:21:04 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (18.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (19.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (38.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 82ms (Views: 80.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (4ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:37 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 66ms (Views: 64.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (29ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:22:50 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:23:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 72ms (Views: 69.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:23:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:23:46 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:26:09 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (16.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (17.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (36.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (2ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 79ms (Views: 77.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:26:10 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 69ms (Views: 67.2ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (19ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:27:39 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (28.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (2ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:28:35 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (18.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (20.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (42.1ms) Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:33:03 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 69ms (Views: 67.3ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (24ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:41:30 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.8ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 73ms (Views: 65.9ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (27ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:43:24 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (35.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 79ms (Views: 76.9ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:44:12 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (32.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 82ms (Views: 79.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (16ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (13ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:48:07 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (28.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 73ms (Views: 70.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:49:11 +0400 Served asset /application.js - 304 Not Modified (32ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 27961) Compiled inkwell_timelines/index.js (2ms) (pid 27961) Compiled application.js (3ms) (pid 27961) Completed 200 OK in 76ms (Views: 74.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:51:01 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.2ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (21ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:52:00 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:52:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (17.6ms) Completed 200 OK in 24ms (Views: 19.9ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:52:53 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>[{"}"=>nil}]} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) Rendered timeline/show.html.erb (20.1ms) Completed 200 OK in 25ms (Views: 20.2ms | ActiveRecord: 2.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:52:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>[{"}"=>nil}]} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.662915') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) Rendered timeline/show.html.erb (13.8ms) Completed 200 OK in 19ms (Views: 15.4ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Processing by TestController#show as HTML User Load (4.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (36.3ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 27961) Compiled inkwell_timelines/index.js (1ms) (pid 27961) Compiled application.js (2ms) (pid 27961) Completed 200 OK in 83ms (Views: 76.7ms | ActiveRecord: 6.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-14 23:56:00 +0400 Served asset /application.js - 304 Not Modified (11ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:56:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (22.4ms) Completed 200 OK in 27ms (Views: 22.4ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:56:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.3ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) Rendered timeline/show.html.erb (21.0ms) Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:56:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.662915') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (8.4ms) Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-14 23:56:38 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.5ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (23.8ms) Completed 200 OK in 29ms (Views: 24.2ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:30:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (50.8ms) Completed 200 OK in 62ms (Views: 50.0ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:30:28 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (31.3ms) Completed 200 OK in 37ms (Views: 31.7ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:30:31 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (24.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (41.3ms) Completed 200 OK in 48ms (Views: 42.3ms | ActiveRecord: 1.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:30:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (26.2ms) Completed 200 OK in 31ms (Views: 25.6ms | ActiveRecord: 2.7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.8ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.4ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (77.5ms) Completed 200 OK in 92ms (Views: 87.7ms | ActiveRecord: 3.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:32:02 +0400 Served asset /application.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:32:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (15.9ms) Completed 200 OK in 32ms (Views: 16.9ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (58.8ms) Completed 200 OK in 87ms (Views: 83.7ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:33:10 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (17.7ms) Completed 200 OK in 22ms (Views: 17.8ms | ActiveRecord: 1.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 00:42:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (21.4ms) User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (133.4ms) Completed 200 OK in 184ms (Views: 177.7ms | ActiveRecord: 6.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Served asset /application.js - 304 Not Modified (35ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:42:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.8ms) Completed 200 OK in 24ms (Views: 18.5ms | ActiveRecord: 2.9ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (1.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.8ms) User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (127.3ms) Completed 200 OK in 175ms (Views: 170.5ms | ActiveRecord: 4.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /application.css - 304 Not Modified (9ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:43:59 +0400 Served asset /application.js - 304 Not Modified (24ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:44:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.3ms) Completed 200 OK in 24ms (Views: 19.0ms | ActiveRecord: 2.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.6ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (25.1ms) User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (138.5ms) Completed 200 OK in 195ms (Views: 189.0ms | ActiveRecord: 5.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Served asset /application.js - 304 Not Modified (25ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:44:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Completed 500 Internal Server Error in 2ms NoMethodError (undefined method `symbolize_keys!' for [{"name"=>"category", "data"=>["2", "7"]}]:Array): app/controllers/timeline_controller.rb:3:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 00:45:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (21.7ms) User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (127.3ms) Completed 200 OK in 176ms (Views: 170.2ms | ActiveRecord: 5.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Served asset /application.js - 304 Not Modified (38ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:45:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (24.1ms) Completed 200 OK in 30ms (Views: 24.8ms | ActiveRecord: 1.9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:49:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (37.2ms) Completed 500 Internal Server Error in 39ms ActiveRecord::RecordNotFound (Couldn't find Category without an ID): app/models/user.rb:11:in `blogline' config/initializers/inkwell_timelines.rb:15:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___231387948_85296300' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:49:37 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (11.0ms) Completed 500 Internal Server Error in 14ms ActiveRecord::RecordNotFound (Couldn't find Category without an ID): app/models/user.rb:11:in `blogline' config/initializers/inkwell_timelines.rb:15:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___231387948_85296300' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.2ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:49:39 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (16.9ms) Completed 500 Internal Server Error in 20ms ActiveRecord::RecordNotFound (Couldn't find Category without an ID): app/models/user.rb:11:in `blogline' config/initializers/inkwell_timelines.rb:15:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___231387948_85296300' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:49:40 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.4ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (16.9ms) Completed 500 Internal Server Error in 19ms ActiveRecord::RecordNotFound (Couldn't find Category without an ID): app/models/user.rb:11:in `blogline' config/initializers/inkwell_timelines.rb:15:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___231387948_85296300' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:49:41 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (14.9ms) Completed 500 Internal Server Error in 22ms ActiveRecord::RecordNotFound (Couldn't find Category without an ID): app/models/user.rb:11:in `blogline' config/initializers/inkwell_timelines.rb:15:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___231387948_85296300' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (13.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:49:42 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Rendered test/show.html.erb within layouts/application (9.4ms) Completed 500 Internal Server Error in 12ms ActiveRecord::RecordNotFound (Couldn't find Category without an ID): app/models/user.rb:11:in `blogline' config/initializers/inkwell_timelines.rb:15:in `block in ' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___231387948_85296300' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.3ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (11.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (80.5ms) Completed 200 OK in 95ms (Views: 92.2ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:50:23 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:50:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (21.8ms) Completed 200 OK in 26ms (Views: 21.9ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:50:41 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.385182') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (24.7ms) Completed 200 OK in 29ms (Views: 25.7ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:50:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.352576') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.5ms) Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (23.9ms) User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (133.7ms) Completed 200 OK in 182ms (Views: 176.8ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Served asset /application.js - 304 Not Modified (19ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:52:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered timeline/show.html.erb (16.9ms) Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.8ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (78.8ms) Completed 200 OK in 93ms (Views: 89.8ms | ActiveRecord: 3.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Served asset /application.js - 304 Not Modified (17ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:53:22 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (18.2ms) Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.5ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (80.9ms) Completed 200 OK in 96ms (Views: 93.3ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:54:43 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:54:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-14 14:13:49.456826') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (32.5ms) Completed 200 OK in 36ms (Views: 32.9ms | ActiveRecord: 1.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 00:55:34 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.2ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.1ms) User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (127.7ms) Completed 200 OK in 177ms (Views: 170.5ms | ActiveRecord: 5.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /application.css - 304 Not Modified (8ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Served asset /application.js - 304 Not Modified (29ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:55:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 2, 8, 7) AND (blog_item_created_at < '2013-05-14 14:13:49.456826') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (12.0ms) Completed 200 OK in 16ms (Views: 13.3ms | ActiveRecord: 1.0ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 49ms (Views: 47.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:55:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 2, 8, 7) AND (blog_item_created_at < '2013-05-14 14:13:49.456826') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) Rendered timeline/show.html.erb (6.4ms) Completed 200 OK in 10ms (Views: 7.1ms | ActiveRecord: 0.9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_selector_state_item.html.erb (0.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (18ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 00:56:03 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:56:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 2, 8, 7) AND (blog_item_created_at < '2013-05-14 14:13:49.456826') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) Rendered timeline/show.html.erb (6.3ms) Completed 200 OK in 10ms (Views: 7.2ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 00:56:49 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 2, 8, 7) AND (blog_item_created_at < '2013-05-14 14:13:49.449055') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (5.2ms) Completed 200 OK in 11ms (Views: 7.2ms | ActiveRecord: 1.2ms) Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (21.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (4.4ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (5.9ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (6.1ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (7.4ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (7.0ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (7.0ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (6.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (1.9ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (11.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (410.3ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (10.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.1ms) commit transaction  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (33.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:40 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 1], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:40 UTC +00:00]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 7], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (31.3ms) commit transaction  (0.1ms) begin transaction  (0.3ms) UPDATE "categories" SET "child_ids" = '[2,3,4,5]', "updated_at" = '2013-05-15 08:02:41.057908' WHERE "categories"."id" = 1  (8.8ms) commit transaction  (0.1ms) begin transaction  (0.2ms) UPDATE "categories" SET "child_ids" = '[3,4]', "updated_at" = '2013-05-15 08:02:41.069152' WHERE "categories"."id" = 2  (9.4ms) commit transaction  (0.0ms) begin transaction  (0.1ms) commit transaction  (0.1ms) begin transaction  (0.2ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.1ms) begin transaction  (0.2ms) UPDATE "categories" SET "child_ids" = '[8]', "updated_at" = '2013-05-15 08:02:41.082802' WHERE "categories"."id" = 7  (8.8ms) commit transaction  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (22.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.5ms) commit transaction  (0.9ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2,8]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[1]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (8.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[7]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,8]"], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 14], ["category_id", 2], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 14], ["category_id", 8], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 15], ["category_id", 1], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (8.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 16], ["category_id", 7], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 21], ["category_id", 4], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 24], ["category_id", 3], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["blog_item_id", 24], ["category_id", 8], ["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.5ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.0ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 08:02:41 UTC +00:00], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 08:02:41 UTC +00:00]]  (5.5ms) commit transaction Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 12:02:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (19.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (20.1ms) Rendered test/show.html.erb within layouts/application (66.4ms) Completed 500 Internal Server Error in 81ms ActionView::Template::Error (undefined method `checked' for #): 2: class="nested" style="display: none" <% end %>> 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/inkwell_timelines/_multi_selector_items.html.erb:5:in `block in _app_views_inkwell_timelines__multi_selector_items_html_erb___691158933__615499198' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `each' app/views/inkwell_timelines/_multi_selector_items.html.erb:1:in `_app_views_inkwell_timelines__multi_selector_items_html_erb___691158933__615499198' app/views/inkwell_timelines/_multi_selector.html.erb:7:in `_app_views_inkwell_timelines__multi_selector_html_erb___516458239__615492948' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___764894679_89399930' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms) Started GET "/" for 127.0.0.1 at 2013-05-15 12:04:11 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.2ms) Rendered test/show.html.erb within layouts/application (13.5ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (undefined method `checked' for #): 8: 9: 10:
11: <%= inkwell_selector_current_state records, options %> 12:
13: app/views/inkwell_timelines/_multi_selector.html.erb:11:in `_app_views_inkwell_timelines__multi_selector_html_erb___516458239__615492948' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___764894679_89399930' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/" for 127.0.0.1 at 2013-05-15 12:04:13 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.0ms) Rendered test/show.html.erb within layouts/application (12.1ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (undefined method `checked' for #): 8: 9: 10:
11: <%= inkwell_selector_current_state records, options %> 12:
13: app/views/inkwell_timelines/_multi_selector.html.erb:11:in `_app_views_inkwell_timelines__multi_selector_html_erb___516458239__615492948' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___764894679_89399930' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms) Started GET "/" for 127.0.0.1 at 2013-05-15 12:04:14 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.3ms) Rendered test/show.html.erb within layouts/application (12.5ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (undefined method `checked' for #): 8: 9: 10:
11: <%= inkwell_selector_current_state records, options %> 12:
13: app/views/inkwell_timelines/_multi_selector.html.erb:11:in `_app_views_inkwell_timelines__multi_selector_html_erb___516458239__615492948' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___764894679_89399930' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.9ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 12:04:27 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.3ms) Rendered test/show.html.erb within layouts/application (69.4ms) Completed 500 Internal Server Error in 84ms ActionView::Template::Error (undefined method `checked' for #): 8: 9: 10:
11: <%= inkwell_selector_current_state records, options %> 12:
13: app/views/inkwell_timelines/_multi_selector.html.erb:11:in `_app_views_inkwell_timelines__multi_selector_html_erb___872257440_73866430' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__930702108_77566810' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 12:04:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) Rendered test/show.html.erb within layouts/application (7.0ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `checked' for #): 8: 9: 10:
11: <%= inkwell_selector_current_state records, options %> 12:
13: app/views/inkwell_timelines/_multi_selector.html.erb:11:in `_app_views_inkwell_timelines__multi_selector_html_erb___872257440_73866430' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__930702108_77566810' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 12:04:29 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.4ms) Rendered test/show.html.erb within layouts/application (16.4ms) Completed 500 Internal Server Error in 20ms ActionView::Template::Error (undefined method `checked' for #): 8: 9: 10:
11: <%= inkwell_selector_current_state records, options %> 12:
13: app/views/inkwell_timelines/_multi_selector.html.erb:11:in `_app_views_inkwell_timelines__multi_selector_html_erb___872257440_73866430' app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__930702108_77566810' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.6ms) User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (22.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (139.8ms) Completed 200 OK in 182ms (Views: 175.5ms | ActiveRecord: 6.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 13:47:01 +0400 Served asset /application.js - 304 Not Modified (11ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 13:47:41 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"6\",\"7\",\"3\",\"4\",\"5\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (6, 7, 3, 4, 5) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 8, 7) AND (blog_item_created_at < '2013-05-15 08:02:41.235282') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (12.9ms) Completed 200 OK in 19ms (Views: 13.6ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 13:47:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"6\",\"7\",\"3\",\"4\",\"5\""=>{"}"=>{"}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (6, 7, 3, 4, 5) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.4ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 8, 7) AND (blog_item_created_at < '2013-05-15 08:02:41.227080') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (6.1ms) Completed 200 OK in 13ms (Views: 7.8ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.3ms) Completed 200 OK in 48ms (Views: 46.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Served asset /application.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 14:49:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"6\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 6, 7) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (2, 3, 4, 5, 1, 6, 8, 7) AND (blog_item_created_at < '2013-05-15 08:02:41.235282') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (7.3ms) Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 14:49:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"6\",\"7\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 6, 7) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (2, 3, 4, 5, 1, 6, 8, 7) AND (blog_item_created_at < '2013-05-15 08:02:41.227080') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (2.5ms) Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.6ms) Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (14.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (6.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to CreatePosts (20130422111954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "preview_image" varchar(255), "body" text, "user_id" integer, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "communities_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422111954')  (5.6ms) commit transaction Migrating to CreateUsers (20130422112200)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nick" varchar(255), "name" varchar(255), "avatar" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112200')  (6.0ms) commit transaction Migrating to CreateComments (20130422112350)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "body" text, "parent_comment_id" integer, "topmost_obj_id" integer, "upper_comments_tree" text, "users_ids_who_favorite_it" text DEFAULT '[]', "users_ids_who_comment_it" text DEFAULT '[]', "users_ids_who_reblog_it" text DEFAULT '[]', "topmost_obj_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112350')  (6.8ms) commit transaction Migrating to CreateBloglines (20130422112504)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "is_reblog" boolean, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "category_ids" text DEFAULT '[]', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112504')  (6.6ms) commit transaction Migrating to CreateFavoritelines (20130422112804)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "favoritelines" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_id" integer, "owner_id" integer, "item_type" varchar(255), "owner_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112804')  (6.9ms) commit transaction Migrating to CreateCategories (20130422112954)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_ids" text DEFAULT '[]', "child_ids" text DEFAULT '[]', "owner_id" integer, "owner_type" varchar(255), "parent_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422112954')  (6.8ms) commit transaction Migrating to CreateBloglinesCategories (20130422113135)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "bloglines_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "blog_item_id" integer, "category_id" integer, "item_id" integer, "item_type" varchar(255), "blog_item_created_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422113135')  (6.8ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) begin transaction SQL (2.0ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30230765/d_e060adf3.jpg"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["name", "Alexander Pushkin"], ["nick", "Pushkin"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00]]  (7.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs11012.vk.me/g30231806/d_76564929.jpg"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["name", "Mikhail Lermontov"], ["nick", "Lermontov"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "users" ("avatar", "created_at", "name", "nick", "updated_at") VALUES (?, ?, ?, ?, ?) [["avatar", "http://cs5326.vk.me/g24263942/d_e91d2798.jpg"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["name", "Sergey Yesenin"], ["nick", "Yesenin"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00]]  (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My days still linger, slow and rough\n Each moment multiplies the sadness\n Within the heart of hapless love\n Disturbing all the hopes of madness\n I'm silent; not a word I breathe.\n I weep, my tears -- my consolation\n My soul, held captive by the grief\n Still finds delight in this sensation.\n No longer do I care if life goes by,\n O, hollow phantom into darkness flee;\n The sorrow of my love is dear to me--\n If I die loving, then I pray let die!"], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_402/12432758188IXZbQ.jpg"], ["title", "A wish"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I still remember that amazing moment\n You have appeared before my sight\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n Locked in depression's hopeless captive,\n In haste of clamorous processions,\n I heard your voice-- soft and attractive.\n And dreamt of your beloved expressions.\n\n Time passed. In gusts, rebellious and active,\n A tempest scattered my affections\n And I forgot your voice attractive,\n Your sacred and divine expressions.\n\n Detained in darkness, isolation,\n My days would slowly drag in strife.\n With lack of faith and inspiration,\n With lack of tears, and love and life.\n\n My soul attained its waking moment:\n You re-appeared before my sight,\n As though a brief and fleeting omen,\n Pure phantom in enchanting light.\n\n And now, my heart, in fascination\n Beats rapidly and finds revived:\n Devout faith and inspiration,\n And tender tears and love and life."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_555/1289349125WGtmdw.jpg"], ["title", "To ***"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I loved you and this love by chance,\n Inside my soul has never fully vanished;\n No longer shall it ever make you tense;\n I wouldn't want to sadden you with anguish.\n I loved you speechlessly and wildly,\n By modesty and jealousy was stressed;\n I loved you so sincerely and so mildly,\n As, God permit, may love you someone else."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_655/13252228518VaQ2Q.jpg"], ["title", "I loved you..."], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't ask me why alone in dismal thought\n In times of mirth, I'm often filled with strife,\n And why my weary stare is so distraught,\n And why I don't enjoy the dream of life;\n\n Don't ask me why my soul has slowly perished\n And ceased to love the love that pleased me then\n No longer can I call someone \"my cherished\"--\n Who once has loved will never love again;\n\n Who once felt bliss will never feel its essence,\n A moment's happiness is all that we receive:\n From youth, prosperity and joyful pleasance\n All that is left is apathy and grief..."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "To ***"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "My friend, forgotten are the fleeting era's prints\n Forgotten is my youth's uprising flow\n Don't question me on what I'm lacking since,\n On what I felt in the times of joy and woe,\n On what I loved, on how I was forlorn\n I've yet to taste true joy, -- that is inborn;\n But you are innocent! conceived for only bliss\n Believe in it and seize each moment's portion\n Your soul was made for friendship and devotion,\n A passionate and loving kiss.\n Your soul is pure and unexposed to sadness\n Your conscience is as bright as any day\n Why then perceive the lunacy and madness\n Of the uninteresting hearsay?\n It will replace your peace with aggravation\n You'll tremble with your heart and cry in bed\n Your soul will lose its trust in agitation\n And you, perhaps... my love may grow to dread\n Who knows? perhaps forever... No, my dear\n I fear to cast the only joy away\n Don't ask for dangerous confessions here\n Today I love, I'm happy for today."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", "http://thumbs.dreamstime.com/thumbimg_490/1269734684o72ihn.jpg"], ["title", "***"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've lived to see desire vanish,\n With hope I've slowly grown to part,\n And I am left with only anguish,\n The fruit of emptiness at heart.\n\n Under the storms of merciless fate\n My thriving garland withered lies--\n In sadness, lonesome, I await:\n How far away is my demise?\n\n Thus, conquered by a tardy frost,\n Through gale's whistling and shimmer,\n Late, on a naked limb exposed\n A lonesome leaf is left to quiver..."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "***"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Don't covet goods of other beings --\n My Goodness, You've commanded so;\n The limits of my will You know --\n Am I to manage tender feelings?!\n I wish not to offend my friend,\n His village I do not desire,\n And for his steer I don't aspire,\n I'm gazing at it with content:\n His men, his house and his cattle,\n I'm tempted not, though all is great.\n But let's imagine that his maid\n Is beautiful... I've lost the battle!\n And if by chance his lady's pretty\n And gifted with an angel's skin\n Then God forgive me for my sin\n Of being envious and greedy!\n Who can command a heart like this?\n Who is a slave to feeble effort?\n Not love a person who is revered?--\n Who can resist the heaven's bliss?\n I sigh from sadness and perceive,\n But I must honor my conviction,\n Afraid to flatter heart's ambition,\n I'm silent... and alone I grieve."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "The Tenth Commandment"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.5ms) commit transaction  (0.5ms) begin transaction SQL (0.3ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Alas! How come she's glimmering\n With temporary, charming vibe?\n It's evident that she is withering\n While youth is blossoming with life...\n Soon she will fade! Life of delight\n Not very long she has to treasure;\n And not for long will she provide\n Her happy family with pleasure.\n Her mellow wit will not abide\n To energize our conversations\n And with her soul, she won't subside\n The sufferer's lamentations.\n I hurry, still distraught in thought,\n Concealing all of my dejection,\n To catch her every cheerful word\n And to delight in her perfection.\n I watch her move, with admiration,\n Perceive each sound from her soul\n From every moment's separation\n My tender heart becomes appalled."], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 1], ["topmost_obj_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I can't sleep, the light is out;\n Chasing senseless dreams in gloom.\n Clocks at once, inside my room,\n Somewhere next to me, resound.\n Parcae's soft and mild chatter,\n Sleeping twilight's noisy flutter,\n Life's commotion -- so insane..\n Why am I to feel this pain?\n What's your meaning, boring mumble?\n Disapproving, do you grumble\n Of the day I spent in vain?\n What has made you so compelling?\n Are you calling or foretelling?\n I just want to understand,\n Thus I'm seeking your intent..."], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 2], ["topmost_obj_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "comments" ("body", "created_at", "parent_comment_id", "topmost_obj_id", "topmost_obj_type", "updated_at", "upper_comments_tree", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "If by life you were deceived,\n Don't be dismal, don't be wild!\n In the day of grief, be mild\n Merry days will come, believe.\n\n Heart is living in tomorrow;\n Present is dejected here;\n In a moment, passes sorrow;\n That which passes will be dear."], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["parent_comment_id", nil], ["topmost_obj_id", 3], ["topmost_obj_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["upper_comments_tree", nil], ["user_id", 1], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Clouds of the air, ye perennial wanderers!\n High in the steppe of blue, stretched like a string of pearls,\n You scud away from the North over yonder, as\n Though you are exiles like me whom the grimness hurls.\n\n Who keeps you flitting: a verdict of destiny?\n Secretive envy? Or naked malignancy?\n Or you’re tormented so hard by a felony?\n Or by your friends’ poisoned slander and flippancy?\n\n Nay, barren fields are what made you undoting...\n Nothing to you ever passion or anguish meant;\n Frigid forever, for always free-floating,\n You have no motherland, you have no banishment."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "Clouds"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I want to take you to one side,\n If you don’t mind, my friend;\n They say there’s not much time to bide\n Until I meet my end!\n You’re going home to see your wife,\n So, look... But why? about my life,\n To tell the truth, not many\n Would give a straw, if any.\n\n And if some have an interest...\n No matter who they are,\n Say I’d been shot right through my chest\n Defending here our tsar,\n And died for him the way one should,\n And that our leeches are no good,\n And that I bow in honour\n Before my native corner.\n\n It’s quite unlikely that you’ll find\n My folks alive up there...\n And frankly, it’d have been unkind\n To drive them to despair;\n But then if either’s still all right,\n Just say that I’m too lax to write,\n That the platoon keeps raiding;\n So let them stop awaiting.\n\n There used to live a girl next door...\n How far it was from now!..\n About me she won’t ask... it’s more\n Than certain, anyhow;\n So go and tell her all the truth;\n An empty heart deserves no ruth;\n Just let her weep a little...\n She doesn’t care a tittle!"], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "Testament"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Sleep, my baby, sleep, my dear,\n Hush-a-hushaby.\n In your crib the full moon peers\n Softly from the sky.\n I will tell you some good stories,\n Sing a lullaby;\n Close your eyes, it’s time for snories,\n Hush-a-hushaby.\n\n In the rocks, there streams the Terek;\n Muddy billows bang;\n Chechen whets his knife Tartaric,\n Crawling up the bank;\n But your father is a warrior\n With an eagle eye —\n Sleep, my baby, do not worry,\n Hush-a-hushaby.\n\n Time will come; you’ll know the battle\n Life, my little one;\n I’ll embroider then your saddle;\n You will take your gun.\n Many enemies you’ll hit hard\n As the time goes by...\n Sleep, my darling, sleep, my sweetheart,\n Hush-a-hushaby.\n\n You will grow a stalwart cossack\n Looking brave and grand;\n When I see you off — from horseback\n You’ll just wave your hand...\n On that night, God knows, how many\n Bitter tears I’ll cry!..\n Sleep, my angel, sleep, my honey,\n Hush-a-hushaby.\n\n I’ll be waiting through despair’s\n Never-ending blight;\n I’ll repeat my heartfelt prayers\n Through the day and night;\n I will dread that you do languish\n Far from homeland, ay...\n Sleep before you are in anguish,\n Hush-a-hushaby.\n\n To remind you of the bygone\n Happy days at home,\n I will give the holy icon —\n Keep it when you roam;\n Think of me before severe\n Fighting flames up high...\n Sleep, my baby, sleep, my dear,\n Hush-a-hushaby."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "A Cossack Lullaby"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Once upon a night, a golden cloudlet\n Snuggled to the chest of crag the giant;\n In the morn, she left her rest behind\n Frolicking against the azure proudly;\n\n But a dew mark lingered in a weathered\n Furrow of the crag. In desolation,\n He is standing, deep in contemplation,\n And he’s softly weeping in the desert."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "The Crag"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Heavenly Mother, it’s me, and this time I pray\n Before thy icon, thy luminous radiance,\n Not for salvation, and not “fore a tighter fray,\n Not with thanksgiving, and not out of penitence;\n\n Not for my ravaged soul prayers to thee I send,\n That of a wanderer, humble and commonplace;\n But I commend a young maid e’er so innocent\n Into thy soothing hands and to thy saving grace.\n\n Lavish thy bliss on the soul filled with purity;\n Give her companions, all paying her great regard;\n Unclouded youth and untroubled maturity;\n Light myriad hopes up in front of the gracious heart.\n\n Whether the time tolls its final and fatal bell,\n Be it a noisy morn, be it a solemn night —\n Send to the bed of the last tearful farewell\n Thy sweetest angel to take up the soul benign."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "Prayer"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "The angel was flying through sky in midnight,\n And softly he sang in his flight;\n And clouds, and stars, and the moon in a throng\n Hearkened to that holy song.\n He sang of the garden of God's paradise,\n Of innocent ghosts in its shade;\n He sang of the God, and his vivacious praise\n Was glories and unfeigned.\n The juvenile soul he carried in arms\n For worlds of distress and alarms;\n The tune of his charming and heavenly song\n Was left in the soul for long.\n It roamed on earth many long nights and days,\n Filled with a wonderful thirst,\n And earth's boring songs could not ever replace\n The sounds of heaven it lost."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "The Angel"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "By gates of an abode, blessed,\n A man stood, asking for donation,\n A beggar, cruelly oppressed\n By hunger, thirst and deprivation.\n\n He asked just for a piece of bread,\n And all his looks were full of anguish,\n And was a cold stone laid\n Into his stretched arm, thin and languished.\n\n Thus I prayed vainly for your love,\n With bitter tears, pine and fervor,\n Thus my best senses, that have thrived,\n Were victimized by you forever!"], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "The Beggar"], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 2], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (60.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Cleared the cornfield, bare the boughs are,\n From still waters mist is rolling,\n Like a wheel beyond the mountains\n Has the silent sun gone rolling.\n\n Dozing is the cart track yonder.\n In a day dream it was thinking\n One won't have to wait much longer\n For the coming of grey winter.\n\n Yesterday as mist came creeping\n Did not I see in the darkness\n Like a foal the bay moon leaping\n Into our snow sledge's harness? "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["preview_image", nil], ["title", "Cleared the cornfield, bare the boughs are..."], ["updated_at", Wed, 15 May 2013 12:05:44 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (200.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good.\n\n\n With red berry juice on fair skin glowing,\n Beautiful and gentle, you were like\n Pink skies when the sun to rest is going\n And, like new snow, you were sparkling bright.\n\n\n Now the seed grain of your eyes has scattered, shrivelled,\n Your rare name has melted like a sound,\n Though the scent of blameless hands still lingers,\n In the folds of a creased shawl is found.\n\n\n In the still hour when the early sunrise\n On the rooftop licks her kitten nose\n I hear gentle comment on you coming\n From the wind that sings in honeycombs.\n\n\n What if blue dusk on occasion soulfully\n Whisper that you were a song, a dream -\n He who shaped your supple figure and smooth shoulders\n Truly kissed a mystery supreme.\n\n\n I'll no more go roaming, no more seeking,\n No more crushing goosefoot in the wood.\n With those oatsheaf locks you tossed when speaking\n You have vanished from my dreams for good. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["preview_image", nil], ["title", "I'll no more go roaming, no more seeking..."], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "I've quit my father's home\n And left blue Russ. With three\n Bright stars the birch-tree grove\n Consoles my mother's grief.\n\n The moon has, like a frog,\n Upon the pond appeared.\n Like apple blossom, locks\n Of grey fleck father's beard.\n\n I shall not soon come back!\n Long shall snow blow in the yard.\n Our one-legged maple shall\n Over blue Russ stand guard.\n\n To kiss its raining leaves\n Is joy, and none so fine -\n The head of the maple-tree\n So closely resembles mine. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["preview_image", nil], ["title", "I've quit my father's home..."], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "No sorrow, no calls, no tears.\n Now it's gone, white foam from apple-tree.\n Faded, seized by tarnished golden flares,\n I will not feel youthful. Never me.\n\n Now you slow down, that's the matter,\n You, my heart, that suffered a cold jet.\n And the land of calico birch pattern\n Hardly tempts my feet to walk o'er that.\n\n Hobo spirit! You're so rare, rare,\n Waking flame in mouth. It's now tense.\n Oh, my freshness, that I couldn't spare.\n Brawling eyes and overflowing sence!\n\n I've become too greedy for desires.\n Life of mine? Perhaps, it was a dream?\n Me, alone, in early vernal hours\n Riding a pink horse, as it cood seem.\n\n We are mortal. In this world none's ever.\n Copper leaves are floating. Let them fly.\n Be you blest, you beautiful forever\n That has come to blossom and to die."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["preview_image", nil], ["title", "No sorrow, no calls, no tears..."], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "So it happened and please don't swear.\n I'm a not a word dealer now.\n My poor head - it's too hard to bear\n And bent-down is my golden brow.\n\n No love for no country, no town.\n How could I feel it that time?\n I will leave. With a beard grown\n I will tramp o'er the land of mine.\n\n I'll forget my books and my poems,\n Hang a bag on shoulders, well trimmed.\n 'Cause a vagabond on his roads\n Hears much better songs of the wind.\n\n I will stink like onion and turnip\n And abusing the dusk as it goes\n I will fool around, staying fornent,\n Sniffling loudly with my nose.\n\n And I don't need a fortune better\n Just to listen how a blizzard roars.\n 'Cause without freaks like the latter\n I'm unable to live on earth."], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["preview_image", nil], ["title", "So it happened and please don't swear..."], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Through fields of virgin snow I roam,\n Fresh lilies bursting in my heart.\n The dusk to guide my footsteps home\n Has lit a bright blue candle-star.\n\n Is it light or dark? I cannot say.\n Is that a cock sings, or the breeze?\n Perhaps not winter came today\n But white swans settled in the fields\n\n How smooth the snow is and how white!\n Blood tingles in the frosty air!\n Close to my body how I'd like\n To press the birch-tree's bosom bare.\n\n What sadness does the forest hold!\n The snowbound field what glad surprise!:\n O how I'd love now to enfold\n Within my arms the willow's thighs. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["preview_image", nil], ["title", "Through fields of virgin snow I roam..."], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "posts" ("body", "communities_ids", "created_at", "preview_image", "title", "updated_at", "user_id", "users_ids_who_comment_it", "users_ids_who_favorite_it", "users_ids_who_reblog_it") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["body", "Waken me early tomorrow,\n Dear mother, patient and kind!\n I'll go past the boundary barrow\n To welcome a friend of mine.\n\n In the forest today I noticed\n Wheel-tracks where a cart had rolled.\n The breeze below dark cloud blowing\n Is ruffling the arch of gold.\n\n It will race by tomorrow at daybreak,\n With moon-cap ducking under a bush,\n And her red tail playfully waving\n The mare through the meadow will rush.\n\n Waken me early tomorrow,\n Turn the light on in our neat room.\n They say I'll become an illustrious\n Poet of Russia soon.\n\n I shall laud you and the visitor,\n Our stove, cock and humble home…\n And the milk that your russet cows give\n Shall over my verses flow. "], ["communities_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["preview_image", nil], ["title", "Waken me early tomorrow..."], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["user_id", 3], ["users_ids_who_comment_it", "[]"], ["users_ids_who_favorite_it", "[]"], ["users_ids_who_reblog_it", "[]"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Without category"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_0_0_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 3], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_0_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 3], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_0_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 2], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_1"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_2"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", nil], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (4.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "categories" ("child_ids", "created_at", "name", "owner_id", "owner_type", "parent_category_id", "parent_ids", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["child_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["name", "Category_2_0"], ["owner_id", 1], ["owner_type", "u"], ["parent_category_id", 8], ["parent_ids", "[]"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[3,4,5,6]', "updated_at" = '2013-05-15 12:05:45.294370' WHERE "categories"."id" = 2  (4.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[4,5]', "updated_at" = '2013-05-15 12:05:45.299527' WHERE "categories"."id" = 3  (6.6ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) UPDATE "categories" SET "child_ids" = '[9]', "updated_at" = '2013-05-15 12:05:45.319868' WHERE "categories"."id" = 8  (7.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 7], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 20], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 6], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 13], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 12], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.5ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (4.6ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 18], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[3,9]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[2]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 3], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[8]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[5]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 8], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 15], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines" ("category_ids", "created_at", "is_reblog", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["category_ids", "[4,9]"], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["is_reblog", nil], ["item_id", 1], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 14], ["category_id", 3], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 14], ["category_id", 9], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 15], ["category_id", 2], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 3], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 16], ["category_id", 8], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 21], ["category_id", 5], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 1], ["item_type", "c"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 24], ["category_id", 4], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 24], ["category_id", 9], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 1], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.9ms) commit transaction Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."category_ids" = '[]'  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 1], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 21], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.3ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 2], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 7], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 3], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 20], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 4], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 6], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 5], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 14], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 6], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 13], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (1.0ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 7], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 19], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.4ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 8], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 5], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 9], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 12], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 10], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 3], ["item_type", "c"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 11], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 11], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 12], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 10], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 13], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 18], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 17], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 17], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 18], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 9], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 19], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 16], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.6ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 20], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 2], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 22], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 8], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "bloglines_categories" ("blog_item_created_at", "blog_item_id", "category_id", "created_at", "item_id", "item_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blog_item_created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["blog_item_id", 23], ["category_id", 1], ["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 15], ["item_type", "p"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 5], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 17], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 19], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 2], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 21], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (7.0ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 4], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 2], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 14], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.5ms) commit transaction  (0.0ms) begin transaction SQL (1.0ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 10], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.7ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 11], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.0ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 16], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.9ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 9], ["item_type", "p"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (5.0ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) INSERT INTO "favoritelines" ("created_at", "item_id", "item_type", "owner_id", "owner_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 15 May 2013 12:05:45 UTC +00:00], ["item_id", 3], ["item_type", "c"], ["owner_id", 1], ["owner_type", "u"], ["updated_at", Wed, 15 May 2013 12:05:45 UTC +00:00]]  (6.2ms) commit transaction Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.2ms) User Load (11.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (126.2ms) Completed 200 OK in 176ms (Views: 160.0ms | ActiveRecord: 15.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:55 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 16:05:55 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 16:06:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.435053') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14, 13, 12, 11, 10, 9, 8, 7, 6) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (23.0ms) Completed 200 OK in 28ms (Views: 23.1ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 16:06:05 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"6\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2, 7, 8) Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "6"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.371818') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (5, 4, 3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (11.1ms) Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 16:06:05 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2, 7, 8) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.335166') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (2.1ms) Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (38.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 84ms (Views: 82.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:28 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Processing by TestController#show as HTML User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.7ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 71ms (Views: 68.6ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /application.css - 304 Not Modified (20ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:44:47 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.5ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 76ms (Views: 73.8ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (18ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:46:26 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.0ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (14ms) (pid 410) Completed 200 OK in 70ms (Views: 67.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (12ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:48:38 +0400 Served asset /application.js - 304 Not Modified (29ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 17:48:49 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (21.8ms) Completed 200 OK in 27ms (Views: 22.4ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 17:49:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (11.0ms) Completed 200 OK in 17ms (Views: 13.3ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.8ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.4ms) Completed 200 OK in 41ms (Views: 38.3ms | ActiveRecord: 2.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (14ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:19 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 17:49:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.435053') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (6.2ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 17:49:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (2.0ms) Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (13.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (37.3ms) Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:49:42 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 17:50:21 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.435053') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (4.1ms) Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 17:50:21 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.8ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (5.8ms) Completed 200 OK in 12ms (Views: 7.3ms | ActiveRecord: 1.9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (1.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 77ms (Views: 73.3ms | ActiveRecord: 3.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (13ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 17:53:59 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 65ms (Views: 63.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:11:48 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 81ms (Views: 78.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:15:22 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 69ms (Views: 67.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:16:08 +0400 Served asset /application.js - 304 Not Modified (23ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (31.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 78ms (Views: 75.5ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:24 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (48.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 79ms (Views: 76.5ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:26:40 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (34.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 110ms (Views: 107.5ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:27:04 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:28:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 73ms (Views: 71.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:28:40 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:29:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 91ms (Views: 88.2ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /test.css - 304 Not Modified (15ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:05 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (17ms) (pid 410) Completed 200 OK in 68ms (Views: 66.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:29:47 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (38.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 82ms (Views: 80.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:27 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (35.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 83ms (Views: 80.8ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (26ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:31:46 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 65ms (Views: 63.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:07 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (1.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 77ms (Views: 74.6ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:36 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (15ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 67ms (Views: 65.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:32:50 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:33:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (20.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 63ms (Views: 61.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:07 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Processing by TestController#show as HTML User Load (4.5ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (28.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 79ms (Views: 72.8ms | ActiveRecord: 5.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (24ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:43 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 72ms (Views: 69.7ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:33:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 74ms (Views: 71.3ms | ActiveRecord: 2.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:36:12 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:39:23 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 39ms (Views: 37.1ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (14ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:24 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) Rendered test/show.html.erb within layouts/application (27.0ms) Completed 200 OK in 42ms (Views: 38.5ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:39:26 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:39:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (18.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (37.3ms) Completed 200 OK in 41ms (Views: 37.8ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.0ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 68ms (Views: 66.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:12 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.4ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 72ms (Views: 70.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (22ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:43:44 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.3ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 87ms (Views: 85.5ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (17ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:24 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (3.2ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (15.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (48.9ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 95ms (Views: 92.5ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:45:50 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:46:21 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.6ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.6ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 81ms (Views: 78.5ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:46:22 +0400 Served asset /application.js - 304 Not Modified (25ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.7ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 74ms (Views: 72.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:54 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:55 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (14ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:47:55 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.1ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 73ms (Views: 71.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (25ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:06 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.7ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 67ms (Views: 65.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (13ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:37 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.0ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (2ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 99ms (Views: 97.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /application.js - 304 Not Modified (27ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:50:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.7ms) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 78ms (Views: 75.4ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:51:07 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (27.2ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 82ms (Views: 80.6ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (29ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:00 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:52:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.5ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 71ms (Views: 69.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:52:27 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.5ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 76ms (Views: 74.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:29 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:53:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (13.4ms) Completed 200 OK in 17ms (Views: 14.0ms | ActiveRecord: 1.0ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:53:55 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (21.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (22.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (43.7ms) Completed 200 OK in 66ms (Views: 63.8ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:53:56 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:54:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"7\",\"8\",\"3\",\"6\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 7, 8, 3, 6) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 4, 5, 3, 6, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 23, 22, 21, 20, 19, 18, 17, 16) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (17.6ms) Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.4ms) Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:54:21 +0400 Served asset /application.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:54:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (13.4ms) Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:56:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"},{\"name\":\"category\",\"data\":"=>{"\"1\",\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (2.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (13, 12, 11, 10, 9, 8, 7, 6, 5, 4) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (25.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (49.1ms) Completed 200 OK in 52ms (Views: 46.7ms | ActiveRecord: 4.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:56:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"},{\"name\":\"category\",\"data\":"=>{"\"1\",\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "4"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.358639') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (25.0ms) Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:56:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"},{\"name\":\"category\",\"data\":"=>{"\"1\",\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.335166') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (2.7ms) Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 0.7ms) Started GET "/" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.6ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (2ms) (pid 410) Completed 200 OK in 78ms (Views: 75.7ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /test.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-15 19:56:50 +0400 Served asset /application.js - 304 Not Modified (10ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-15 19:57:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{"}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (13.0ms) Completed 200 OK in 17ms (Views: 13.9ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (28.5ms) Compiled inkwell_timelines/inkwell_timeline.js (3ms) (pid 410) Compiled inkwell_timelines/index.js (1ms) (pid 410) Compiled application.js (3ms) (pid 410) Completed 200 OK in 81ms (Views: 79.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (28ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:45:47 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:46:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered timeline/show.html.erb (18.2ms) Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.9ms) Started GET "/" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (31ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:07 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.5ms) User Load (11.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (3.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (132.3ms) Completed 200 OK in 184ms (Views: 168.7ms | ActiveRecord: 15.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /application.css - 304 Not Modified (9ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:49:19 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (20.4ms) Completed 200 OK in 25ms (Views: 20.6ms | ActiveRecord: 1.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.5ms) User Load (12.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (130.5ms) Completed 200 OK in 181ms (Views: 164.1ms | ActiveRecord: 16.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:49:51 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:49:54 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered timeline/show.html.erb (18.7ms) Completed 200 OK in 24ms (Views: 19.2ms | ActiveRecord: 1.4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.4ms) User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (23.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (132.3ms) Completed 200 OK in 184ms (Views: 178.4ms | ActiveRecord: 4.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /application.css - 304 Not Modified (19ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /jquery.js - 304 Not Modified (6ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:50:21 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:50:23 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.3ms) Completed 200 OK in 24ms (Views: 19.8ms | ActiveRecord: 1.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.8ms) User Load (11.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (19.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (124.0ms) Completed 200 OK in 175ms (Views: 160.1ms | ActiveRecord: 15.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (4ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:00 +0400 Served asset /application.js - 304 Not Modified (18ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:52:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered timeline/show.html.erb (19.3ms) Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 1.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.1ms) User Load (11.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (21.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (129.0ms) Completed 200 OK in 179ms (Views: 162.6ms | ActiveRecord: 15.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:52:49 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:52:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.4ms) Completed 200 OK in 24ms (Views: 19.8ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (20.4ms) Completed 200 OK in 49ms (Views: 47.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:09 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Processing by TestController#show as HTML User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) User Load (12.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (20.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (131.6ms) Completed 200 OK in 181ms (Views: 163.6ms | ActiveRecord: 16.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:54:14 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (15.4ms) Completed 200 OK in 20ms (Views: 15.7ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (5.3ms) Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:23 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (28.7ms) Completed 200 OK in 34ms (Views: 29.1ms | ActiveRecord: 2.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:27 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (23.0ms) Completed 200 OK in 29ms (Views: 24.9ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) Rendered timeline/show.html.erb (11.9ms) Completed 200 OK in 15ms (Views: 12.1ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.335166') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.5ms) Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (14.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (38.1ms) Completed 200 OK in 41ms (Views: 37.6ms | ActiveRecord: 2.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:49 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (33.0ms) Completed 200 OK in 40ms (Views: 34.6ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:54:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) Rendered timeline/show.html.erb (26.0ms) Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 1.7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 02:56:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.9ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 68ms (Views: 66.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (37ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:56:59 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:57:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (14.9ms) Completed 200 OK in 20ms (Views: 16.8ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:57:05 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (3.8ms) Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:57:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"3\",\"6\",\"9\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (3, 6, 9) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (4, 5, 3, 6, 9) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (9.0ms) Completed 200 OK in 15ms (Views: 11.1ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:57:27 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"3\",\"6\",\"9\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 3, 6, 9) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 4, 5, 3, 6, 9) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 23, 22, 21, 20, 19, 18, 17, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (21.3ms) Completed 200 OK in 25ms (Views: 21.2ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:57:40 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (1.0ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (22.1ms) Completed 200 OK in 28ms (Views: 22.8ms | ActiveRecord: 2.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:57:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"10\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "10"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.400668') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (9, 8, 7, 6, 5, 4, 3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered timeline/show.html.erb (21.2ms) Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:58:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.335166') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (24.2ms) Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:58:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) Rendered timeline/show.html.erb (19.3ms) Completed 200 OK in 23ms (Views: 19.6ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:58:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (27.4ms) Completed 200 OK in 34ms (Views: 29.4ms | ActiveRecord: 2.1ms) Started GET "/" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Processing by TestController#show as HTML User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.6ms) Compiled inkwell_timelines/inkwell_timeline.js (14ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 67ms (Views: 64.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 02:59:50 +0400 Served asset /application.js - 304 Not Modified (66ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:59:54 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (9.4ms) Completed 200 OK in 13ms (Views: 10.0ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 02:59:56 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered timeline/show.html.erb (19.2ms) Completed 200 OK in 23ms (Views: 19.7ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:01:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (27.2ms) Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 2.5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.4ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 72ms (Views: 69.7ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (16ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:10:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:10:18 +0400 Served asset /application.js - 304 Not Modified (5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:20 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (9.8ms) Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (23.3ms) Completed 200 OK in 28ms (Views: 23.8ms | ActiveRecord: 2.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (16.4ms) Completed 200 OK in 21ms (Views: 17.4ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:31 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (16.0ms) Completed 200 OK in 22ms (Views: 18.0ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered timeline/show.html.erb (45.2ms) Completed 200 OK in 52ms (Views: 46.3ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (13.8ms) Completed 200 OK in 18ms (Views: 14.9ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (24.0ms) Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 1.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) Rendered timeline/show.html.erb (21.4ms) Completed 200 OK in 27ms (Views: 22.6ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:47 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (29.6ms) Completed 200 OK in 34ms (Views: 30.4ms | ActiveRecord: 2.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:10:50 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.4ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (16.6ms) Completed 200 OK in 23ms (Views: 18.3ms | ActiveRecord: 1.7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.1ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 3708) Compiled inkwell_timelines/index.js (3ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 86ms (Views: 83.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:10 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (8.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (26.4ms) Completed 200 OK in 33ms (Views: 28.0ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.0ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (9.1ms) Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (29.4ms) Completed 200 OK in 36ms (Views: 30.2ms | ActiveRecord: 2.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:19 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (20.9ms) Completed 200 OK in 42ms (Views: 38.0ms | ActiveRecord: 1.8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.0ms) Completed 200 OK in 41ms (Views: 38.7ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:11:28 +0400 Served asset /application.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (14.9ms) Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (28.1ms) Completed 200 OK in 34ms (Views: 29.4ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (9.7ms) Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:44 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (1.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (1.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (17.8ms) Completed 200 OK in 26ms (Views: 17.9ms | ActiveRecord: 3.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.5ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (17.5ms) Completed 200 OK in 23ms (Views: 19.3ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:11:47 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (21.3ms) Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:12:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered timeline/show.html.erb (39.1ms) Completed 200 OK in 46ms (Views: 41.4ms | ActiveRecord: 1.8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.5ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 75ms (Views: 72.4ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /test.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:15 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:13:18 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.0ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (9.7ms) Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:13:21 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.3ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (15.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) Rendered timeline/show.html.erb (38.7ms) Completed 200 OK in 43ms (Views: 38.9ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:13:23 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (22.8ms) Completed 200 OK in 28ms (Views: 24.3ms | ActiveRecord: 1.8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (27.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 75ms (Views: 73.2ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /application.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (14ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:13:49 +0400 Served asset /application.js - 304 Not Modified (10ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:13:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (11.4ms) Completed 200 OK in 15ms (Views: 12.0ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:13:55 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (17.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) Rendered timeline/show.html.erb (38.1ms) Completed 200 OK in 44ms (Views: 39.4ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:13:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (25.8ms) Completed 200 OK in 33ms (Views: 27.3ms | ActiveRecord: 1.7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/inkwell_timeline.js (1ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 77ms (Views: 75.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:15:31 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:15:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (26.5ms) Completed 200 OK in 30ms (Views: 27.1ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:15:41 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (19.7ms) Completed 200 OK in 28ms (Views: 23.2ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:15:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (26.3ms) Completed 200 OK in 33ms (Views: 28.5ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:15:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (17.0ms) Completed 200 OK in 22ms (Views: 17.9ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:15:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (21.1ms) Completed 200 OK in 27ms (Views: 22.7ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (9.5ms) Completed 200 OK in 16ms (Views: 11.5ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (26.1ms) Completed 200 OK in 33ms (Views: 26.9ms | ActiveRecord: 2.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.4ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (13.9ms) Completed 200 OK in 20ms (Views: 15.6ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (41.1ms) Completed 200 OK in 46ms (Views: 41.6ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.5ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (31.0ms) Completed 200 OK in 37ms (Views: 31.7ms | ActiveRecord: 2.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:13 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered timeline/show.html.erb (27.7ms) Completed 200 OK in 32ms (Views: 28.4ms | ActiveRecord: 2.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 03:16:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (15.7ms) Completed 200 OK in 22ms (Views: 16.9ms | ActiveRecord: 2.0ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (30.0ms) Compiled inkwell_timelines/inkwell_timeline.js (2ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 79ms (Views: 77.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (22ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:18 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.0ms) Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:20:20 +0400 Served asset /application.js - 304 Not Modified (20ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 62ms (Views: 60.1ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:11 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 76ms (Views: 73.6ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (22ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:33 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 66ms (Views: 64.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:26:58 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (21ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:27:36 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 67ms (Views: 65.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:28:35 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:29:06 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.3ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (0ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 88ms (Views: 85.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:29:07 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (1.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (30.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 78ms (Views: 75.0ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:30:43 +0400 Served asset /application.js - 304 Not Modified (33ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 68ms (Views: 65.4ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:31:19 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (24.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 71ms (Views: 68.9ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (28ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:32:11 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (19.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 63ms (Views: 61.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:04 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (28.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 73ms (Views: 71.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:33:30 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (27.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 71ms (Views: 68.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:06 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (1.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (13.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (38.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 84ms (Views: 82.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /application.css - 304 Not Modified (21ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:34:33 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (6.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 71ms (Views: 69.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:10 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:36:47 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (19.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 62ms (Views: 60.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:47 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:36:48 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Processing by TestController#show as HTML User Load (4.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (25.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 70ms (Views: 64.3ms | ActiveRecord: 5.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:37:06 +0400 Served asset /application.js - 304 Not Modified (24ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (30.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 75ms (Views: 73.3ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:28 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (24.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 81ms (Views: 79.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:38:57 +0400 Served asset /application.js - 304 Not Modified (26ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 72ms (Views: 69.5ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:38 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (26.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 70ms (Views: 67.9ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:40:50 +0400 Served asset /application.js - 304 Not Modified (20ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (24.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 67ms (Views: 65.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (27.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 91ms (Views: 88.7ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:41:46 +0400 Served asset /application.js - 304 Not Modified (24ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (19.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 60ms (Views: 59.1ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (14ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:42:44 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.5ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 71ms (Views: 69.6ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:13 +0400 Served asset /application.js - 304 Not Modified (25ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (24.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 68ms (Views: 66.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:43:27 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (28.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 72ms (Views: 70.1ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:35 +0400 Served asset /application.js - 304 Not Modified (32ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 67ms (Views: 64.1ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:44:52 +0400 Served asset /application.js - 304 Not Modified (14ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 70ms (Views: 68.3ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:01 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:46:01 +0400 Served asset /application.js - 304 Not Modified (26ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (27.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 72ms (Views: 69.7ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:47:03 +0400 Served asset /application.js - 304 Not Modified (10ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 74ms (Views: 71.5ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:06 +0400 Served asset /application.js - 304 Not Modified (11ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (18.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (19.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (36.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 79ms (Views: 77.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:42 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:43 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:49:43 +0400 Served asset /application.js - 304 Not Modified (17ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (29.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 73ms (Views: 71.2ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:53:24 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (52.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 84ms (Views: 82.1ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 03:54:34 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (7.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (7.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (34.3ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (16ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 83ms (Views: 80.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:02:07 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:05:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (13.5ms) CACHE (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (33.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 64ms (Views: 62.1ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:01 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.9ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (17ms) (pid 3708) Completed 200 OK in 71ms (Views: 68.8ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:29 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (33.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 65ms (Views: 63.6ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /jquery.js - 304 Not Modified (17ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:05:50 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 71ms (Views: 69.1ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:00 +0400 Served asset /application.js - 304 Not Modified (8ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (13.9ms) Rendered test/show.html.erb within layouts/application (42.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 73ms (Views: 71.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:06:48 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.5ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.8ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (2ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 69ms (Views: 67.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:07:14 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:07:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (20.8ms) Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 1.7ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (4.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (5.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (16.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (46.1ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 82ms (Views: 79.9ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:08:55 +0400 Served asset /application.js - 304 Not Modified (17ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:09:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (12.3ms) Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 1.1ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.7ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.0ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (28.6ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 75ms (Views: 72.2ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:09:32 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:09:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (13.6ms) Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (14.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (33.7ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (2ms) (pid 3708) Completed 200 OK in 66ms (Views: 64.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:10 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:10:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (9.2ms) Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:10:31 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"3\",\"6\",\"9\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.4ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 3, 6, 9) BloglinesCategories Load (0.4ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 4, 5, 3, 6, 9) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 23, 22, 21, 20, 19, 18, 17, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (1.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (22.3ms) Completed 200 OK in 30ms (Views: 21.9ms | ActiveRecord: 4.0ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.4ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.7ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (32.4ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 91ms (Views: 88.0ms | ActiveRecord: 2.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /application.js - 304 Not Modified (13ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:10:45 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:10:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (30.3ms) Completed 200 OK in 34ms (Views: 30.8ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:11:00 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"10\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "10"]] BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.400668') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (9, 8, 7, 6, 5, 4, 3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (14.7ms) Completed 200 OK in 18ms (Views: 14.7ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:11:02 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.335166') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (2.7ms) Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:11:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.6ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (25.1ms) Completed 200 OK in 38ms (Views: 36.9ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:11:18 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:11:18 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:11:19 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:11:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (17.2ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.1ms) Rendered timeline/show.html.erb (38.1ms) Completed 200 OK in 42ms (Views: 37.0ms | ActiveRecord: 2.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:11:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"10\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "10"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.400668') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (9, 8, 7, 6, 5, 4, 3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (18.2ms) Completed 200 OK in 21ms (Views: 17.8ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:11:53 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"7\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.9ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 7) BloglinesCategories Load (0.4ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 7) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) Rendered timeline/show.html.erb (22.9ms) Completed 200 OK in 29ms (Views: 23.6ms | ActiveRecord: 3.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 04:12:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"10\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"7\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 7) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "10"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 7) AND (blog_item_created_at < '2013-05-15 12:05:45.400668') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (9, 8, 7, 6, 5, 4, 3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (16.8ms) Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (22.6ms) Compiled inkwell_timelines/multi_selector.css (1ms) (pid 3708) Compiled inkwell_timelines/tab-menu.css (0ms) (pid 3708) Compiled inkwell_timelines/index.css (0ms) (pid 3708) Compiled application.css (2ms) (pid 3708) Completed 200 OK in 66ms (Views: 64.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:16 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:16 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 04:14:16 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-16 04:14:16 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (2ms) Started GET "/" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.8ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (27.7ms) Completed 200 OK in 43ms (Views: 40.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:36:05 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:36:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.4ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) Rendered timeline/show.html.erb (20.3ms) Completed 200 OK in 27ms (Views: 22.3ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:36:08 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.2ms) Rendered inkwell_timelines/_multi_selector.html.erb (3.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (22.8ms) Completed 200 OK in 27ms (Views: 23.2ms | ActiveRecord: 1.6ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-16 23:36:09 +0400 Served asset /inkwell_timelines/up-down.png - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-16 23:36:09 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-16 23:36:09 +0400 Served asset /inkwell_timelines/plus.png - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-16 23:36:13 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:36:25 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"7\",\"8\",\"3\",\"6\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 7, 8, 3, 6) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 4, 5, 3, 6, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 23, 22, 21, 20, 19, 18, 17, 16) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (21.6ms) Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:37:55 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"7\",\"3\",\"6\",\"9\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 7, 3, 6, 9) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 4, 5, 3, 6, 7, 9) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 23, 22, 21, 20, 19, 18, 17, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.6ms) Completed 200 OK in 24ms (Views: 19.5ms | ActiveRecord: 1.6ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-16 23:38:51 +0400 Served asset /inkwell_timelines/minus.png - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.5ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.0ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 3708) Compiled inkwell_timelines/index.js (1ms) (pid 3708) Compiled application.js (3ms) (pid 3708) Completed 200 OK in 69ms (Views: 67.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (29ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:39:51 +0400 Served asset /application.js - 304 Not Modified (6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:40:01 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\",\"7\",\"6\",\"9\",\"4\",\"5\",\"6\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 7, 6, 9, 4, 5) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 4, 5, 6, 7, 9) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 23, 22, 21, 20, 19, 18, 17, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (17.2ms) Completed 200 OK in 24ms (Views: 19.4ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (1.0ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (3.6ms) Rendered inkwell_timelines/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (25.5ms) Completed 200 OK in 40ms (Views: 37.4ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:28 +0400 Served asset /application.js - 304 Not Modified (29ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.2ms) User Load (13.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (28.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (151.7ms) Completed 200 OK in 206ms (Views: 188.1ms | ActiveRecord: 17.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:48:35 +0400 Served asset /application.js - 304 Not Modified (8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:48:37 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (18.6ms) Completed 200 OK in 23ms (Views: 18.8ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:48:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (3.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (16.6ms) Completed 200 OK in 23ms (Views: 18.4ms | ActiveRecord: 1.8ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.1ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.5ms) User Load (15.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (25.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (154.0ms) Completed 200 OK in 211ms (Views: 191.6ms | ActiveRecord: 19.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /test.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:49:51 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-16 23:49:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (20.8ms) Completed 200 OK in 25ms (Views: 20.9ms | ActiveRecord: 1.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (9.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (10.2ms) User Load (15.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (29.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (159.2ms) Completed 200 OK in 216ms (Views: 195.6ms | ActiveRecord: 19.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:51:17 +0400 Served asset /application.js - 304 Not Modified (5ms) Started GET "/" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.4ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.9ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (5.7ms) Rendered inkwell_timelines/_multi_selector.html.erb (6.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (16.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (45.7ms) Completed 200 OK in 62ms (Views: 60.0ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:00 +0400 Served asset /application.js - 304 Not Modified (4ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.8ms) User Load (16.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (28.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (167.1ms) Completed 200 OK in 227ms (Views: 206.1ms | ActiveRecord: 20.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:52:19 +0400 Served asset /application.js - 304 Not Modified (6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Processing by TestController#show as HTML User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.8ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.3ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.8ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (8.9ms) Rendered inkwell_timelines/_multi_selector.html.erb (9.7ms) User Load (14.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (25.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered inkwell_timelines/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (150.0ms) Completed 200 OK in 204ms (Views: 184.6ms | ActiveRecord: 19.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered inkwell_timelines/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered inkwell_timelines/_multi_selector_items.html.erb (0.2ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.7ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (0.1ms) Rendered inkwell_timelines/_multi_selector_items.html.erb (2.3ms) Rendered inkwell_timelines/_multi_selector.html.erb (2.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (17.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (42.8ms) Completed 200 OK in 57ms (Views: 55.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /application.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-16 23:57:52 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-16 23:59:22 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (25.1ms) Completed 500 Internal Server Error in 27ms ActionView::Template::Error (Missing partial inkwell_timelines/tab_menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__1036727220_84863480' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:00:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (2.0ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (Missing partial inkwell_timelines/tab_menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__1036727220_84863480' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:00:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (51.2ms) Completed 500 Internal Server Error in 67ms ActionView::Template::Error (Missing partial inkwell_timelines/tab_menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__665609224_72817030' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:00:12 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (3.3ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (Missing partial inkwell_timelines/tab_menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__665609224_72817030' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:00:30 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (54.9ms) Completed 500 Internal Server Error in 72ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___478470585_74963000' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:01:33 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (13.8ms) Rendered test/show.html.erb within layouts/application (67.0ms) Completed 500 Internal Server Error in 83ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 4: Change 5: 6: 9: 10:
app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___853053114_73809670' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:01:57 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.9ms) Rendered test/show.html.erb within layouts/application (16.5ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (Missing partial test/multi_selector_items, application/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 4: Change 5: 6: 9:
10:
app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___853053114_73809670' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) Rendered test/show.html.erb within layouts/application (57.6ms) Completed 500 Internal Server Error in 75ms ActionView::Template::Error (Missing partial test/multi_selector_items, application/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 4: Change 5: 6: 9:
10:
app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:05 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (1.6ms) Rendered test/show.html.erb within layouts/application (6.6ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (Missing partial test/multi_selector_items, application/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 4: Change 5: 6: 9:
10:
app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:28 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.8ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (8.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (10.6ms) Rendered test/show.html.erb within layouts/application (15.0ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7:
8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:32 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.5ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.4ms) Rendered test/show.html.erb within layouts/application (9.0ms) Completed 500 Internal Server Error in 11ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:32 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.6ms) Rendered test/show.html.erb within layouts/application (9.8ms) Completed 500 Internal Server Error in 12ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (1.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.7ms) Rendered test/show.html.erb within layouts/application (11.0ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) Rendered test/show.html.erb within layouts/application (10.3ms) Completed 500 Internal Server Error in 12ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___414239868_74630060' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:39 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (10.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (12.7ms) Rendered test/show.html.erb within layouts/application (64.2ms) Completed 500 Internal Server Error in 83ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__397846546_81306590' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (12.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.6ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:39 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.8ms) Rendered test/show.html.erb within layouts/application (6.0ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__397846546_81306590' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:02:41 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.5ms) Rendered test/show.html.erb within layouts/application (10.6ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (Missing partial inkwell_timelines/multi_selector_items with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 3: <% child_records = records.select {|record| record.parent_category_id == current_record.id} %> 4: 5: "><%= current_record.name %> 6: <%= render :partial => 'inkwell_timelines/multi_selector_items', :locals => {:records => records, :id => current_record.id, :selector_id => selector_id} unless child_records.empty? %> 7: 8: <% end %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__397846546_81306590' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.0ms) User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (25.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (12.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (99.2ms) Completed 200 OK in 128ms (Views: 123.1ms | ActiveRecord: 4.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /application.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (10ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:03:06 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:03:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.html.erb (9.0ms) Completed 500 Internal Server Error in 32ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb__325172950_77236710' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:03:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.8ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.html.erb (7.9ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb__325172950_77236710' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.5ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:08:05 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (59.9ms) Completed 500 Internal Server Error in 76ms ActionView::Template::Error (undefined method `partials_dir' for #): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___58843134_76541520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:09:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (3.0ms) Completed 500 Internal Server Error in 4ms ActionView::Template::Error (undefined method `partials_dir' for #): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___58843134_76541520' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:09:56 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (10.1ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Rendered test/show.html.erb within layouts/application (110.5ms) Completed 500 Internal Server Error in 128ms ActionView::Template::Error (Missing partial default_partials/_post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb___1034142686_76769960' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (10.0ms) User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (23.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (144.0ms) Completed 200 OK in 184ms (Views: 177.8ms | ActiveRecord: 5.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /application.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (5ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /application.js - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:10:37 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:10:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.html.erb (10.9ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb___441376465_86665820' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:10:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Rendered timeline/show.html.erb (7.5ms) Completed 500 Internal Server Error in 11ms ActionView::Template::Error (Missing partial inkwell_timelines/post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_autoload_tag(@options) %> app/views/timeline/show.html.erb:1:in `_app_views_timeline_show_html_erb___441376465_86665820' app/controllers/timeline_controller.rb:9:in `show' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (8.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (9.5ms) User Load (13.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (24.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (144.5ms) Completed 200 OK in 188ms (Views: 170.7ms | ActiveRecord: 17.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /application.css - 304 Not Modified (13ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /jquery.js - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /test.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Served asset /application.js - 304 Not Modified (9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:11:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.4ms) Completed 200 OK in 26ms (Views: 20.2ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:11:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (8.2ms) Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:11:33 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.335166') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.6ms) Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:11:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) Rendered timeline/show.html.erb (32.8ms) Completed 200 OK in 41ms (Views: 33.7ms | ActiveRecord: 1.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:11:37 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (5.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (6.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (17.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (47.0ms) Completed 200 OK in 53ms (Views: 48.0ms | ActiveRecord: 2.2ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (9.8ms) User Load (13.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (26.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (148.7ms) Completed 200 OK in 202ms (Views: 184.2ms | ActiveRecord: 17.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /test.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (6ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /test.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:14:46 +0400 Served asset /application.js - 304 Not Modified (7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:14:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (18.8ms) Completed 200 OK in 24ms (Views: 19.0ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:14:49 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (9.3ms) Completed 200 OK in 12ms (Views: 9.7ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:14:53 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (24.2ms) Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:14:54 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (7.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (8.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (32.9ms) Completed 200 OK in 40ms (Views: 34.6ms | ActiveRecord: 2.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:14:57 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 15, 14, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (33.7ms) Completed 200 OK in 41ms (Views: 35.8ms | ActiveRecord: 2.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:14:59 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"2\",\"7\",\"8\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (2, 7, 8) Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (3, 4, 5, 6, 2, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (4.5ms) Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:15:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"7\",\"8\",\"4\",\"5\",\"6\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (7, 8, 4, 5, 6) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (4, 5, 6, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (8.9ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:15:22 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"14\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"7\",\"8\",\"4\",\"5\",\"6\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (7, 8, 4, 5, 6) Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "14"]] BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (4, 5, 6, 7, 9, 8) AND (blog_item_created_at < '2013-05-15 12:05:45.427492') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (4.0ms) Completed 200 OK in 11ms (Views: 6.6ms | ActiveRecord: 1.0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (1.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (7.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (8.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (32.2ms) Compiled inkwell_timelines/inkwell_multi_selector.js (0ms) (pid 6771) Compiled inkwell_timelines/index.js (2ms) (pid 6771) Compiled application.js (3ms) (pid 6771) Completed 200 OK in 82ms (Views: 79.2ms | ActiveRecord: 2.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /application.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:16:41 +0400 Served asset /application.js - 304 Not Modified (39ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:20:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"7\",\"8\",\"4\",\"5\",\"6\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (7, 8, 4, 5, 6) BloglinesCategories Load (0.1ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (4, 5, 6, 7, 9, 8) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (24, 24, 21, 16, 14) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (9.0ms) Completed 200 OK in 16ms (Views: 11.3ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:20:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"7\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "7"]] BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (7) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (4.7ms) Completed 200 OK in 12ms (Views: 7.4ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:20:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"7\",\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (7, 1) BloglinesCategories Load (0.3ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1, 7) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (28.8ms) Completed 200 OK in 34ms (Views: 28.9ms | ActiveRecord: 2.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:20:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.5ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (23, 22, 20, 19, 18, 17, 13, 12, 11, 10) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (30.4ms) Completed 200 OK in 36ms (Views: 29.9ms | ActiveRecord: 3.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:20:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"10\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "10"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.400668') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (9, 8, 7, 6, 5, 4, 3, 2, 1) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (20.7ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:20:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":"=>{"{\"name\":\"category\",\"data\":"=>{"\"1\""=>{"}"=>{",\"include_selectors\":false}"=>nil}}}}} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] BloglinesCategories Load (0.2ms) SELECT "bloglines_categories".* FROM "bloglines_categories" WHERE "bloglines_categories"."category_id" IN (1) AND (blog_item_created_at < '2013-05-15 12:05:45.335166') ORDER BY blog_item_created_at DESC LIMIT 10 Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" IN (NULL) AND "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC Rendered timeline/show.html.erb (3.1ms) Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (10.2ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (24.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (154.1ms) Completed 200 OK in 183ms (Views: 177.4ms | ActiveRecord: 5.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /application.css - 200 OK (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/index.css - 200 OK (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/index.js - 200 OK (13ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /application.js - 200 OK (4ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:45:41 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-17 00:45:49 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-17 00:45:49 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:49:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) Rendered test/show.html.erb within layouts/application (24.1ms) Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:49:17 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.3ms) User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.3ms) Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:40 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:49:41 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:49:41 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:49:41 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:49:41 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:49:41 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:49:41 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (5.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (43.8ms) Completed 200 OK in 58ms (Views: 56.2ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /jquery_ujs.js - 200 OK (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:49:59 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.2ms) Completed 200 OK in 53ms (Views: 51.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /jquery.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:51:20 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.6ms) Completed 200 OK in 54ms (Views: 52.5ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:51:44 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.5ms) Completed 200 OK in 43ms (Views: 41.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:52:15 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.6ms) Completed 200 OK in 36ms (Views: 34.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:52:38 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.9ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 37ms (Views: 34.8ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:55:03 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:55:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (14ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:55:32 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:56:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.2ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (26.3ms) Completed 200 OK in 42ms (Views: 39.6ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (16ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /application.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:56:37 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.1ms) Completed 200 OK in 38ms (Views: 35.7ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/index.js - 200 OK (9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:57:28 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/users/3" for 127.0.0.1 at 2013-05-17 00:57:45 +0400 ActionController::RoutingError (uninitialized constant UsersController): activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__956824516__call__508171171__callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.13) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.13) lib/rails/engine.rb:479:in `call' railties (3.2.13) lib/rails/application.rb:223:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /home/salkar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.9ms) Completed 200 OK in 43ms (Views: 41.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:32 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (23.1ms) Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:58:41 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.3ms) Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:59:20 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (6.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (41.1ms) Completed 200 OK in 55ms (Views: 46.5ms | ActiveRecord: 8.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/index.css - 200 OK (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 00:59:50 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 00:59:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (25.4ms) Completed 200 OK in 30ms (Views: 25.8ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.2ms) Completed 200 OK in 53ms (Views: 51.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:05 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-17 01:02:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.0ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (17.6ms) Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.9ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (15.7ms) Rendered test/show.html.erb within layouts/application (40.8ms) Completed 200 OK in 57ms (Views: 55.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:02:46 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:02:47 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:02:47 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:02:47 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:02:47 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:02:47 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:02:47 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (1.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.3ms) Completed 200 OK in 53ms (Views: 50.7ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:04:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment-hover.png" for 127.0.0.1 at 2013-05-17 01:04:57 +0400 Served asset /inkwell_timelines/wi-comment-hover.png - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.7ms) Completed 200 OK in 53ms (Views: 51.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /application.css - 200 OK (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:05:35 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:07:49 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 52ms (Views: 50.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:11:15 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.2ms) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:11:36 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (23.8ms) Completed 200 OK in 53ms (Views: 51.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:12:45 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (31.0ms) Completed 200 OK in 64ms (Views: 60.8ms | ActiveRecord: 3.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:15:09 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.5ms) Completed 200 OK in 38ms (Views: 35.8ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:17:37 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (27.4ms) Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (20ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:17:40 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.1ms) Completed 200 OK in 36ms (Views: 34.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:18:31 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.1ms) Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:18:34 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Processing by TestController#show as HTML User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 37ms (Views: 34.4ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:20:12 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /test.js - 200 OK (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 01:20:15 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.2ms) Completed 200 OK in 36ms (Views: 33.9ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 14:10:51 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.1ms) Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 14:12:36 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (32.5ms) Completed 200 OK in 50ms (Views: 47.3ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/index.js - 200 OK (23ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 14:13:09 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.7ms) Completed 200 OK in 36ms (Views: 33.8ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /application.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-17 14:14:40 +0400 Served asset /application.js - 200 OK (17ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-17 14:14:41 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-17 14:14:41 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-17 14:14:41 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-17 14:14:41 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-17 14:14:41 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-17 14:14:41 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:13:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.3ms) Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:31:21 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (21.7ms) Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:32:21 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:34:39 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (23.8ms) Completed 200 OK in 37ms (Views: 35.4ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (14ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:34:40 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.2ms) Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/index.js - 200 OK (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:35:26 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.1ms) Completed 200 OK in 36ms (Views: 34.4ms | ActiveRecord: 1.4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:36:41 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 40ms (Views: 38.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:38:13 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (6.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.6ms) Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:48:28 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (19.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (37.4ms) Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:48:53 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (16.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (39.3ms) Completed 200 OK in 53ms (Views: 51.2ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:49:59 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:50:57 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (15.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (35.2ms) Completed 200 OK in 49ms (Views: 47.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:50:58 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.9ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (40.1ms) Completed 200 OK in 53ms (Views: 51.2ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:51:37 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 51ms (Views: 49.1ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:03 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:52:04 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:52:04 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:52:04 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:52:04 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:52:04 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:52:04 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.1ms) Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/index.css - 200 OK (3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:52:33 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:52:34 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:52:34 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:52:34 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:52:34 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:52:34 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:52:34 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Completed 200 OK in 50ms (Views: 48.5ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /application.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:53:10 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 50ms (Views: 48.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 11:55:56 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:38 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:00:39 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 52ms (Views: 50.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:05:16 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 50ms (Views: 47.9ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (4ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:06:31 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 51ms (Views: 49.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:08:15 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.0ms) Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /application.css - 200 OK (21ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:08:52 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.9ms) Completed 200 OK in 37ms (Views: 34.7ms | ActiveRecord: 1.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:09:18 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 37ms (Views: 35.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /jquery_ujs.js - 200 OK (14ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:10:58 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 36ms (Views: 34.4ms | ActiveRecord: 1.4ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:11:47 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.0ms) Completed 200 OK in 38ms (Views: 36.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /inkwell_timelines/index.js - 200 OK (14ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:08 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:12:09 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:12:09 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:12:09 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:12:09 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:12:09 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:12:09 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.6ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.1ms) Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:12:40 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.2ms) Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:12:57 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:12:58 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:12:58 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:12:58 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:12:58 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:12:58 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:12:58 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:13:45 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (6.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (42.5ms) Completed 200 OK in 56ms (Views: 54.6ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:14:04 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:15:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (36.0ms) Completed 200 OK in 49ms (Views: 47.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:15:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (18.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (39.8ms) Completed 200 OK in 42ms (Views: 39.2ms | ActiveRecord: 2.2ms) Started GET "/assets/inkwell_timelines/wi-comment-hover.png" for 127.0.0.1 at 2013-05-18 12:16:04 +0400 Served asset /inkwell_timelines/wi-comment-hover.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:16:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.0ms) Completed 200 OK in 22ms (Views: 19.3ms | ActiveRecord: 1.1ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.2ms) Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:16:54 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (17.2ms) Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:05 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (8.8ms) Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:06 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.335166') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.2ms) Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.4ms) Started GET "/assets/inkwell_timelines/wi-reblog-hover.png" for 127.0.0.1 at 2013-05-18 12:17:08 +0400 Served asset /inkwell_timelines/wi-reblog-hover.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-favorite-hover.png" for 127.0.0.1 at 2013-05-18 12:17:08 +0400 Served asset /inkwell_timelines/wi-favorite-hover.png - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 52ms (Views: 50.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.4ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) Rendered timeline/show.html.erb (18.8ms) Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:20 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"5\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "5"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.366009') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 6]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 20]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 7]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (8.5ms) Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:21 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "1"]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.335166') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.8ms) Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:32 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (19.7ms) Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (7.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (8.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (17.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (47.0ms) Completed 200 OK in 61ms (Views: 59.1ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:41 +0400 Served asset /application.js - 304 Not Modified (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:17:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (17.7ms) Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (15.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (38.9ms) Completed 200 OK in 54ms (Views: 51.2ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:17:46 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 51ms (Views: 49.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:18:11 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (21.7ms) Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 1.3ms) Started GET "/assets/inkwell_timelines/wi-favorite-hover.png" for 127.0.0.1 at 2013-05-18 12:18:12 +0400 Served asset /inkwell_timelines/wi-favorite-hover.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:55:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (26.0ms) Completed 200 OK in 29ms (Views: 26.0ms | ActiveRecord: 1.5ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (20.6ms) Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (26ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /application.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:56:11 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:56:12 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered timeline/show.html.erb (17.8ms) Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 1.1ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) Rendered test/show.html.erb within layouts/application (23.5ms) Completed 200 OK in 37ms (Views: 35.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/index.css - 200 OK (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:56:35 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (18.5ms) Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.9ms) Completed 200 OK in 36ms (Views: 34.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /application.css - 200 OK (21ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:58:04 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (25.2ms) Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /test.css - 200 OK (15ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:58:17 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered timeline/show.html.erb (17.5ms) Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (21.5ms) Completed 200 OK in 51ms (Views: 49.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 12:59:03 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (1.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.0ms) Completed 200 OK in 22ms (Views: 17.9ms | ActiveRecord: 2.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:03:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (17.4ms) Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 1.1ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.9ms) Completed 200 OK in 50ms (Views: 48.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:06:16 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.4ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (19.7ms) Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 1.7ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (15.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (37.3ms) Completed 200 OK in 52ms (Views: 50.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:06:36 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (16.7ms) Completed 200 OK in 20ms (Views: 16.7ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:09:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (39.4ms) Completed 200 OK in 53ms (Views: 51.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (18.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (38.5ms) Completed 200 OK in 41ms (Views: 38.7ms | ActiveRecord: 1.1ms) Started GET "/assets/inkwell_timelines/wi-comment-hover.png" for 127.0.0.1 at 2013-05-18 13:09:50 +0400 Served asset /inkwell_timelines/wi-comment-hover.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:09:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (20.5ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 1.3ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:10:13 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:10:14 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (19.5ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:10:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (20.0ms) Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:10:15 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (17.8ms) Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.9ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:12:48 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) Rendered timeline/show.html.erb (8.6ms) Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.9ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (22.8ms) Completed 200 OK in 52ms (Views: 50.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:14:23 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (16.0ms) Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:14:28 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (16.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (33.4ms) Completed 200 OK in 36ms (Views: 33.5ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:14:28 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.0ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (6.5ms) Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.6ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) Rendered test/show.html.erb within layouts/application (22.8ms) Completed 200 OK in 36ms (Views: 34.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /application.js - 200 OK (15ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (17.3ms) Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:15:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.0ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (8.2ms) Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:15:31 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "1"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.708384') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (1.3ms) Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:15:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (20.6ms) Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 1.2ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (21.3ms) Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:16:04 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (18.2ms) Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:16:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.3ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (17.1ms) Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:16:09 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (6.7ms) Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.7ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (5.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (6.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (15.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (41.9ms) Completed 200 OK in 56ms (Views: 54.1ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:16:49 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:16:50 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:16:50 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:16:50 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:16:50 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (16.8ms) Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 1.4ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:16:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (36.1ms) Completed 200 OK in 39ms (Views: 36.0ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:16:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (16.7ms) Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-18 13:17:39 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (20.2ms) Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 1.5ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.5ms) Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:23:02 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 13:23:03 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 13:23:03 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:27:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:27:17 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 13:27:18 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 13:27:18 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:28:36 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 13:28:37 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 13:28:37 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.5ms) Completed 200 OK in 35ms (Views: 33.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:06 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 13:29:07 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.7ms) Completed 200 OK in 39ms (Views: 38.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /application.css - 304 Not Modified (18ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:29:57 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:30:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (22.8ms) Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:30:54 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:30:54 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:30:54 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:30:54 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:54 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 13:30:55 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.9ms) Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 2.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /test.js - 200 OK (15ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 13:31:45 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.3ms) Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-18 23:58:55 +0400 Served asset /application.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-18 23:58:56 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-18 23:58:56 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-18 23:58:56 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-18 23:58:56 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-18 23:58:56 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-18 23:58:56 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-18 23:58:57 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-18 23:58:57 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (1.3ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (24.0ms) Completed 200 OK in 37ms (Views: 35.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/index.js - 200 OK (28ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:04:50 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:04:54 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:04:54 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:06:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (22.3ms) Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /application.js - 200 OK (17ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:06:14 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:09:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (5.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (6.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (29.1ms) Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 3.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:16 +0400 Served asset /application.css - 200 OK (3ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/index.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:09:17 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (23.9ms) Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:09:33 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.5ms) Completed 200 OK in 39ms (Views: 35.7ms | ActiveRecord: 2.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:28:57 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:28:59 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:28:59 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:29:52 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:30:00 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.1ms) Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:30:43 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:30:44 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:30:44 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:30:57 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (20.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (21.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.1ms) Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:31:13 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:31:14 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:31:14 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (17.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (40.9ms) Completed 200 OK in 54ms (Views: 52.7ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:32:11 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.9ms) Completed 200 OK in 51ms (Views: 49.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:32:47 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:32:48 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (36.6ms) Completed 200 OK in 53ms (Views: 51.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:32:49 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:32:50 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:32:50 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:32:51 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.3ms) Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:34:24 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:34:25 +0400 Served asset /application.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.9ms) Completed 200 OK in 50ms (Views: 48.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:35:35 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:35:36 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:35:36 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:35:36 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (20.7ms) Completed 200 OK in 49ms (Views: 47.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:35:37 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:35:38 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:35:38 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:35:39 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (2.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (27.0ms) Completed 200 OK in 55ms (Views: 51.2ms | ActiveRecord: 3.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:35:40 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:35:41 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:35:41 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:35:41 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /application.js - 200 OK (8ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (21.6ms) Completed 200 OK in 50ms (Views: 48.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:35:54 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 49ms (Views: 47.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:35:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:35:56 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:35:56 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:35:56 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:35:58 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (16.1ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 1.0ms) Started GET "/assets/inkwell_timelines/wi-comment-hover.png" for 127.0.0.1 at 2013-05-19 00:36:07 +0400 Served asset /inkwell_timelines/wi-comment-hover.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (4.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.9ms) Completed 200 OK in 53ms (Views: 51.0ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:11 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.4ms) Completed 200 OK in 51ms (Views: 49.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:41:12 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:41:13 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:41:13 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:41:13 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:41:13 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:41:13 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.5ms) Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /application.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:41:14 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:41:15 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /application.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:41:16 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:41:17 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:41:17 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.7ms) Completed 200 OK in 49ms (Views: 47.8ms | ActiveRecord: 1.0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /application.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:41:18 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.3ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.1ms) Completed 200 OK in 51ms (Views: 49.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:44:06 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.6ms) Completed 200 OK in 50ms (Views: 48.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:44:07 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.7ms) Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /application.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:44:09 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.2ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:44:10 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:44:11 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:44:12 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:44:13 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:44:13 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:44:13 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:44:14 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.6ms) Completed 200 OK in 51ms (Views: 48.5ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /application.css - 200 OK (4ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.9ms) Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 1.4ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (15ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:46:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (1.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.6ms) Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 2.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:46:56 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.2ms) Completed 200 OK in 36ms (Views: 34.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /application.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/index.js - 200 OK (8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:46:58 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:46:59 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:46:59 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.3ms) Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:47:01 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:47:02 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:47:02 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.7ms) Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:47:04 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:47:05 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:47:05 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:47:06 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.9ms) Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:49:59 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.8ms) Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/index.js - 200 OK (11ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:00 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (21.4ms) Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (14ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:50:01 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:50:02 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.5ms) Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:03 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:50:04 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:50:04 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:50:04 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:50:04 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (22.6ms) Completed 200 OK in 36ms (Views: 34.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/index.js - 200 OK (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:06 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:50:07 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:50:07 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:50:07 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:50:08 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.4ms) Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:50:10 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.4ms) Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:11 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:50:12 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:50:13 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (22.4ms) Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:50:37 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (20.5ms) Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 1.7ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:50:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (16.1ms) Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:50:42 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (6.2ms) Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.7ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.9ms) Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:50:46 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.3ms) Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/index.css - 200 OK (17ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:50:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (25.3ms) Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /jquery.js - 200 OK (15ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:51:00 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:51:01 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:51:01 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) Rendered test/show.html.erb within layouts/application (20.9ms) Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:51:04 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:51:05 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:51:05 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.3ms) Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:07 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:51:08 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:51:08 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-19 00:51:08 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:51:08 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (20.8ms) Completed 200 OK in 34ms (Views: 32.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:10 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:51:11 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:51:11 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-19 00:51:12 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (21.0ms) Completed 200 OK in 35ms (Views: 32.4ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:13 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.1ms) Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-19 00:51:14 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) Rendered test/show.html.erb within layouts/application (21.3ms) Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/index.js - 200 OK (16ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-19 00:51:18 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:51:19 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (16.8ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:51:19 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (20.2ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-19 00:51:20 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) Rendered timeline/show.html.erb (14.8ms) Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 1.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-20 14:18:51 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (9.9ms) User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (40.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (157.7ms) Completed 200 OK in 186ms (Views: 180.2ms | ActiveRecord: 5.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /application.css - 200 OK (21ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/index.css - 200 OK (8ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /test.css - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (10ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/index.js - 200 OK (4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /application.js - 200 OK (5ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:18:52 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:19:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (23.6ms) Completed 200 OK in 30ms (Views: 24.8ms | ActiveRecord: 1.5ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:19:07 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (7.7ms) Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.8ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (38.8ms) Completed 200 OK in 52ms (Views: 50.8ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:11 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (5.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) Rendered test/show.html.erb within layouts/application (46.4ms) Completed 200 OK in 61ms (Views: 59.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:24 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:19:25 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) Rendered timeline/show.html.erb (17.5ms) Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 1.3ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:19:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (20.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered timeline/show.html.erb (39.9ms) Completed 200 OK in 42ms (Views: 39.3ms | ActiveRecord: 1.6ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:19:26 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (17.0ms) Completed 200 OK in 20ms (Views: 17.1ms | ActiveRecord: 1.0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (24.2ms) Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.4ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) Rendered test/show.html.erb within layouts/application (22.9ms) Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 1.5ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/index.css - 200 OK (15ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:29 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:19:30 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:19:30 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 48ms (Views: 46.8ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:19:31 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:19:32 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (1ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:19:33 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (1ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:34 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (16.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (37.3ms) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:19:35 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:19:36 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (17.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.3ms) Completed 200 OK in 53ms (Views: 51.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:37 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:19:38 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:19:38 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:19:38 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:19:39 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (15.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (36.8ms) Completed 200 OK in 50ms (Views: 48.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:19:42 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:19:43 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:19:43 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Processing by TestController#show as HTML User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (17.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (39.1ms) Completed 200 OK in 54ms (Views: 52.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:19:45 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:26:37 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (1.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (16.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (37.0ms) Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /application.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:26:38 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (38.7ms) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.3ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (16.5ms) Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:26:51 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (18.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) Rendered timeline/show.html.erb (24.5ms) Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:26:52 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"1\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.0ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "1"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.708384') ORDER BY created_at DESC LIMIT 10 Rendered timeline/show.html.erb (2.2ms) Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:25 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /test.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (24.8ms) Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (1ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:27:26 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:27:27 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:27:27 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:27:29 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:27:30 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:27:30 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (23.8ms) Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:32 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:27:33 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:27:34 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Processing by TestController#show as HTML User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.4ms) Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:35 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:27:36 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:27:36 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:27:36 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:27:37 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Processing by TestController#show as HTML User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (21.6ms) Completed 200 OK in 52ms (Views: 50.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/index.css - 200 OK (2ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:39 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) Rendered test/show.html.erb within layouts/application (38.6ms) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /application.js - 200 OK (3ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:40 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:27:41 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:27:41 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:27:44 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.3ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (40.7ms) Completed 200 OK in 54ms (Views: 52.0ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:44 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:44 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:44 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:44 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:44 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.0ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (17.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.9ms) Rendered timeline/show.html.erb (42.7ms) Completed 200 OK in 46ms (Views: 43.1ms | ActiveRecord: 1.2ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:27:45 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (16.4ms) Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:27:46 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (16.8ms) Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 1.1ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) Rendered test/show.html.erb within layouts/application (24.2ms) Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.5ms) Completed 200 OK in 36ms (Views: 34.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:54 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.2ms) Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:55 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:28:56 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:28:57 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:28:57 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/index.js - 200 OK (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:28:59 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:29:00 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:29:00 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (1.0ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.5ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) Rendered test/show.html.erb within layouts/application (21.8ms) Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:29:03 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/minus.png" for 127.0.0.1 at 2013-05-20 14:29:04 +0400 Served asset /inkwell_timelines/minus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:29:05 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.0ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) Rendered test/show.html.erb within layouts/application (20.6ms) Completed 200 OK in 34ms (Views: 32.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /application.js - 200 OK (2ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:29:07 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-unchecked.png" for 127.0.0.1 at 2013-05-20 14:29:08 +0400 Served asset /inkwell_timelines/checkbox-unchecked.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (3.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (4.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.1ms) Completed 200 OK in 36ms (Views: 34.9ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:29:09 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/checkbox-checked.png" for 127.0.0.1 at 2013-05-20 14:29:10 +0400 Served asset /inkwell_timelines/checkbox-checked.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/plus.png" for 127.0.0.1 at 2013-05-20 14:29:10 +0400 Served asset /inkwell_timelines/plus.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (6.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (8.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (35.7ms) Completed 200 OK in 52ms (Views: 49.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/index.css - 200 OK (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /application.js - 200 OK (1ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:29:15 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (23.0ms) Completed 200 OK in 36ms (Views: 33.9ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /jquery.js - 200 OK (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:29:29 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.5ms) Rendered timeline/show.html.erb (16.5ms) Completed 200 OK in 20ms (Views: 16.8ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:29:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 Category Load (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (2.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.1ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered timeline/show.html.erb (20.2ms) Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 1.0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:29:30 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.4ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) Rendered timeline/show.html.erb (17.1ms) Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 1.0ms) Started GET "/" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.7ms) Completed 200 OK in 53ms (Views: 51.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /application.css - 200 OK (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /test.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/index.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/wall_item.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /jquery_ujs.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/multi_selector.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /jquery.js - 200 OK (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /test.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/tab-menu.css - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /inkwell_timelines/index.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 14:29:33 +0400 Served asset /application.js - 200 OK (0ms) Started GET "/assets/inkwell_timelines/up-down.png" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Served asset /inkwell_timelines/up-down.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite-active.png" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Served asset /inkwell_timelines/wi-favorite-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog-active.png" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Served asset /inkwell_timelines/wi-reblog-active.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-favorite.png" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Served asset /inkwell_timelines/wi-favorite.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-reblog.png" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Served asset /inkwell_timelines/wi-reblog.png - 200 OK (0ms) Started GET "/assets/inkwell_timelines/wi-comment.png" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Served asset /inkwell_timelines/wi-comment.png - 200 OK (0ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:29:34 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"blogline\",\"last_item_id\":\"15\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."id" = ? LIMIT 1 [["id", "15"]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.435053') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 18]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 12]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 13]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered timeline/show.html.erb (19.3ms) Completed 200 OK in 23ms (Views: 19.2ms | ActiveRecord: 1.8ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:29:38 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":null,\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":true}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.2ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 3]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 11]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 10]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 14]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 4]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 21]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) Rendered timeline/show.html.erb (17.2ms) Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 1.1ms) Started POST "/timeline/get/" for 127.0.0.1 at 2013-05-20 14:29:38 +0400 Processing by TimelineController#show as HTML Parameters: {"{\"block_name\":\"timelines_block\",\"timeline\":\"favoriteline\",\"last_item_id\":\"4\",\"transferred_params\":\"{\\\"user_id\\\":1}\",\"selectors_values\":null,\"include_selectors\":false}"=>nil} User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "users".* FROM "users" LIMIT 1 CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Favoriteline Load (0.0ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."id" = ? LIMIT 1 [["id", "4"]] Favoriteline Load (0.1ms) SELECT "favoritelines".* FROM "favoritelines" WHERE "favoritelines"."owner_id" = 1 AND "favoritelines"."owner_type" = 'u' AND (created_at < '2013-05-15 12:05:45.730696') ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 19]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 5]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (21.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.1ms) Rendered timeline/show.html.erb (28.6ms) Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.7ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Processing by TestController#show as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.4ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.6ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (10.6ms) User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (25.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.6ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (161.4ms) Completed 200 OK in 221ms (Views: 214.6ms | ActiveRecord: 6.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /application.css - 304 Not Modified (10ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (2ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /test.css - 304 Not Modified (2ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /jquery.js - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:20 +0400 Served asset /application.js - 304 Not Modified (7ms) Started GET "/" for 127.0.0.1 at 2013-05-20 20:00:21 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.0ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.6ms) Rendered test/show.html.erb within layouts/application (42.7ms) Completed 200 OK in 58ms (Views: 55.8ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /application.js - 304 Not Modified (9ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:22 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.3ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.9ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.2ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.5ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (1.1ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (24.9ms) Completed 200 OK in 59ms (Views: 57.3ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /application.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.1ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.8ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.1ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (2.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (3.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) Rendered test/show.html.erb within layouts/application (22.0ms) Completed 200 OK in 56ms (Views: 54.4ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /test.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (0ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-20 20:00:23 +0400 Served asset /application.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-20 20:00:50 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (77.6ms) Completed 500 Internal Server Error in 99ms ActionView::Template::Error (Missing partial asdas/tab_menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__783537135_76282220' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms) Started GET "/" for 127.0.0.1 at 2013-05-21 15:07:18 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered test/show.html.erb within layouts/application (1.7ms) Completed 500 Internal Server Error in 3ms ActionView::Template::Error (Missing partial asdas/tab_menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in: * "/media/workspace/repo/public_projects/inkwell_timelines/test/dummy/app/views" * "/media/workspace/repo/public_projects/inkwell_timelines/app/views" ): 1: <%= inkwell_timelines_tag('timelines_block', :user_id => User.where(:nick => 'Pushkin').first.id, :for_user => current_user) %> app/views/test/show.html.erb:1:in `_app_views_test_show_html_erb__783537135_76282220' Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.4ms) Rendered /home/salkar/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Processing by TestController#show as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."nick" = 'Pushkin' LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_tab_menu.html.erb (0.5ms) Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."owner_id" = 1 AND "categories"."owner_type" = 'u' Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.4ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (0.2ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector_items.html.erb (9.7ms) Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_multi_selector.html.erb (10.6ms) User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Blogline Load (0.2ms) SELECT "bloglines".* FROM "bloglines" WHERE "bloglines"."owner_id" = 1 AND "bloglines"."owner_type" = 'u' ORDER BY created_at DESC LIMIT 10 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 15]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 8]] Comment Load (0.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 1]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 16]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 9]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 17]] Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", 2]] Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 3]] User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (39.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (1.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (2.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.9ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_comment.html.erb (0.7ms) CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1 Rendered /media/workspace/repo/public_projects/inkwell_timelines/app/views/default_partials/_post.html.erb (0.8ms) Rendered test/show.html.erb within layouts/application (161.8ms) Completed 200 OK in 191ms (Views: 184.7ms | ActiveRecord: 5.8ms) Started GET "/assets/inkwell_timelines/index.css?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/index.css - 304 Not Modified (7ms) Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /test.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /application.css - 304 Not Modified (3ms) Started GET "/assets/inkwell_timelines/multi_selector.css?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/multi_selector.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/tab-menu.css?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/tab-menu.css - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/wall_item.css?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/wall_item.css - 304 Not Modified (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /test.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/inkwell_multi_selector.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/inkwell_multi_selector.js - 304 Not Modified (1ms) Started GET "/assets/inkwell_timelines/index.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/index.js - 304 Not Modified (7ms) Started GET "/assets/inkwell_timelines/inkwell_timeline.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /inkwell_timelines/inkwell_timeline.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-21 15:07:26 +0400 Served asset /application.js - 304 Not Modified (9ms)