qqface 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +50 -0
- data/Rakefile +38 -0
- data/lib/assets/images/face.gif +0 -0
- data/lib/assets/images/face_bg.gif +0 -0
- data/lib/assets/images/faces/1.gif +0 -0
- data/lib/assets/images/faces/10.gif +0 -0
- data/lib/assets/images/faces/11.gif +0 -0
- data/lib/assets/images/faces/12.gif +0 -0
- data/lib/assets/images/faces/13.gif +0 -0
- data/lib/assets/images/faces/14.gif +0 -0
- data/lib/assets/images/faces/15.gif +0 -0
- data/lib/assets/images/faces/16.gif +0 -0
- data/lib/assets/images/faces/17.gif +0 -0
- data/lib/assets/images/faces/18.gif +0 -0
- data/lib/assets/images/faces/19.gif +0 -0
- data/lib/assets/images/faces/2.gif +0 -0
- data/lib/assets/images/faces/20.gif +0 -0
- data/lib/assets/images/faces/21.gif +0 -0
- data/lib/assets/images/faces/22.gif +0 -0
- data/lib/assets/images/faces/23.gif +0 -0
- data/lib/assets/images/faces/24.gif +0 -0
- data/lib/assets/images/faces/25.gif +0 -0
- data/lib/assets/images/faces/26.gif +0 -0
- data/lib/assets/images/faces/27.gif +0 -0
- data/lib/assets/images/faces/28.gif +0 -0
- data/lib/assets/images/faces/29.gif +0 -0
- data/lib/assets/images/faces/3.gif +0 -0
- data/lib/assets/images/faces/30.gif +0 -0
- data/lib/assets/images/faces/31.gif +0 -0
- data/lib/assets/images/faces/32.gif +0 -0
- data/lib/assets/images/faces/33.gif +0 -0
- data/lib/assets/images/faces/34.gif +0 -0
- data/lib/assets/images/faces/35.gif +0 -0
- data/lib/assets/images/faces/36.gif +0 -0
- data/lib/assets/images/faces/37.gif +0 -0
- data/lib/assets/images/faces/38.gif +0 -0
- data/lib/assets/images/faces/39.gif +0 -0
- data/lib/assets/images/faces/4.gif +0 -0
- data/lib/assets/images/faces/40.gif +0 -0
- data/lib/assets/images/faces/41.gif +0 -0
- data/lib/assets/images/faces/42.gif +0 -0
- data/lib/assets/images/faces/43.gif +0 -0
- data/lib/assets/images/faces/44.gif +0 -0
- data/lib/assets/images/faces/45.gif +0 -0
- data/lib/assets/images/faces/46.gif +0 -0
- data/lib/assets/images/faces/47.gif +0 -0
- data/lib/assets/images/faces/48.gif +0 -0
- data/lib/assets/images/faces/49.gif +0 -0
- data/lib/assets/images/faces/5.gif +0 -0
- data/lib/assets/images/faces/50.gif +0 -0
- data/lib/assets/images/faces/51.gif +0 -0
- data/lib/assets/images/faces/52.gif +0 -0
- data/lib/assets/images/faces/53.gif +0 -0
- data/lib/assets/images/faces/54.gif +0 -0
- data/lib/assets/images/faces/55.gif +0 -0
- data/lib/assets/images/faces/56.gif +0 -0
- data/lib/assets/images/faces/57.gif +0 -0
- data/lib/assets/images/faces/58.gif +0 -0
- data/lib/assets/images/faces/59.gif +0 -0
- data/lib/assets/images/faces/6.gif +0 -0
- data/lib/assets/images/faces/60.gif +0 -0
- data/lib/assets/images/faces/61.gif +0 -0
- data/lib/assets/images/faces/62.gif +0 -0
- data/lib/assets/images/faces/63.gif +0 -0
- data/lib/assets/images/faces/64.gif +0 -0
- data/lib/assets/images/faces/65.gif +0 -0
- data/lib/assets/images/faces/66.gif +0 -0
- data/lib/assets/images/faces/67.gif +0 -0
- data/lib/assets/images/faces/68.gif +0 -0
- data/lib/assets/images/faces/69.gif +0 -0
- data/lib/assets/images/faces/7.gif +0 -0
- data/lib/assets/images/faces/70.gif +0 -0
- data/lib/assets/images/faces/71.gif +0 -0
- data/lib/assets/images/faces/72.gif +0 -0
- data/lib/assets/images/faces/73.gif +0 -0
- data/lib/assets/images/faces/74.gif +0 -0
- data/lib/assets/images/faces/75.gif +0 -0
- data/lib/assets/images/faces/8.gif +0 -0
- data/lib/assets/images/faces/9.gif +0 -0
- data/lib/assets/javascripts/jquery.qqFace.js +107 -0
- data/lib/assets/stylesheets/qqface.css +48 -0
- data/lib/qqface.rb +13 -0
- data/lib/qqface/engine.rb +7 -0
- data/lib/qqface/helper.rb +28 -0
- data/lib/qqface/railtie.rb +7 -0
- data/lib/qqface/version.rb +4 -0
- data/lib/tasks/qqface_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +16 -0
- data/test/dummy/app/assets/javascripts/posts.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +14 -0
- data/test/dummy/app/assets/stylesheets/posts.css +4 -0
- data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/posts_controller.rb +83 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/posts_helper.rb +2 -0
- data/test/dummy/app/models/post.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +15 -0
- data/test/dummy/app/views/posts/_form.html.erb +29 -0
- data/test/dummy/app/views/posts/edit.html.erb +6 -0
- data/test/dummy/app/views/posts/index.html.erb +25 -0
- data/test/dummy/app/views/posts/new.html.erb +5 -0
- data/test/dummy/app/views/posts/show.html.erb +15 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +56 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +60 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20120229092225_create_posts.rb +10 -0
- data/test/dummy/db/schema.rb +23 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1382 -0
- data/test/dummy/log/production.log +0 -0
- data/test/dummy/log/test.log +2 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/posts.yml +9 -0
- data/test/dummy/test/functional/posts_controller_test.rb +49 -0
- data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/dummy/test/unit/post_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/C8C/E60/sprockets%2F17c7648c84dcd982e5e2f99249002212 +0 -0
- data/test/dummy/tmp/cache/assets/CB4/FB0/sprockets%2F4ca60afb8b370d98f05853904261863f +0 -0
- data/test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145 +0 -0
- data/test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CE7/360/sprockets%2Fa080a63f99a6bdb987635a3248dd0584 +0 -0
- data/test/dummy/tmp/cache/assets/CE7/C60/sprockets%2F9d5fe541ba838481a2d4741ab38e0797 +0 -0
- data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/D0B/D70/sprockets%2F4e125f48bf22b909267d3fec531c342c +0 -0
- data/test/dummy/tmp/cache/assets/D12/050/sprockets%2Fbbb8b737c83d88276d98051af2053ce0 +0 -0
- data/test/dummy/tmp/cache/assets/D14/EA0/sprockets%2F42d027c279bd1086c9d9f26d59ab7e12 +0 -0
- data/test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4 +0 -0
- data/test/dummy/tmp/cache/assets/D1D/E00/sprockets%2Fbf5734e8defc060df1d9256395615f45 +0 -0
- data/test/dummy/tmp/cache/assets/D2D/3E0/sprockets%2Fe3b3db94462514ee4150c163fb06b4ea +0 -0
- data/test/dummy/tmp/cache/assets/D2E/AA0/sprockets%2F4b0c25926ef780511e4ea2104ecf4b0f +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3C/420/sprockets%2Ff3f2e3315b744f778e00b18a5b09c6cd +0 -0
- data/test/dummy/tmp/cache/assets/D45/A90/sprockets%2F4ea7a095b784b43006795deede296da3 +0 -0
- data/test/dummy/tmp/cache/assets/D4A/400/sprockets%2Fa9446a6385dc512d93e88ad7605dbc9b +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/EE0/sprockets%2Fe2ecb677c4697c2621bbe66999b3e52a +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D8E/6D0/sprockets%2Fc532163a1cdac0ca7d525e54091d5fff +0 -0
- data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
- data/test/dummy/tmp/cache/assets/DB8/9C0/sprockets%2F60e348104fbdcb1632a0ce5d84a2fbeb +0 -0
- data/test/dummy/tmp/cache/assets/DBA/DF0/sprockets%2F50a03cdf15b1821fd4b9dbe2bc8b0a77 +0 -0
- data/test/dummy/tmp/cache/assets/DC5/A80/sprockets%2F462c38633c080de4ff21c0dcfd58abec +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/qqface_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +347 -0
|
Binary file
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
5
|
+
#
|
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
7
|
+
# database schema. If you need to create the application database on another
|
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
11
|
+
#
|
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
|
13
|
+
|
|
14
|
+
ActiveRecord::Schema.define(:version => 20120229092225) do
|
|
15
|
+
|
|
16
|
+
create_table "posts", :force => true do |t|
|
|
17
|
+
t.string "title"
|
|
18
|
+
t.text "content"
|
|
19
|
+
t.datetime "created_at", :null => false
|
|
20
|
+
t.datetime "updated_at", :null => false
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
end
|
|
File without changes
|
|
@@ -0,0 +1,1382 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Started GET "/" for 127.0.0.1 at 2012-02-29 17:24:03 +0800
|
|
4
|
+
|
|
5
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
|
6
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
7
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
8
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
9
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
10
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
11
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
12
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
13
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
14
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
15
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
16
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
17
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
18
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
19
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
20
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
21
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
22
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
23
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.1ms)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:24:10 +0800
|
|
30
|
+
Processing by PostsController#index as HTML
|
|
31
|
+
Completed 500 Internal Server Error in 1ms
|
|
32
|
+
|
|
33
|
+
ActiveRecord::StatementInvalid (Could not find table 'posts'):
|
|
34
|
+
app/controllers/posts_controller.rb:5:in `index'
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
|
|
38
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
39
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
|
40
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
41
|
+
[1m[35m (135.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
42
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
|
43
|
+
[1m[35m (90.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
44
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
45
|
+
Migrating to CreatePosts (20120229092225)
|
|
46
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
47
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
48
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120229092225')
|
|
49
|
+
[1m[36m (135.0ms)[0m [1mcommit transaction[0m
|
|
50
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
51
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
52
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("posts")
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:24:55 +0800
|
|
56
|
+
Processing by PostsController#index as HTML
|
|
57
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
58
|
+
Rendered posts/index.html.erb within layouts/application (13.3ms)
|
|
59
|
+
Compiled posts.css (0ms) (pid 9664)
|
|
60
|
+
Compiled scaffold.css (0ms) (pid 9664)
|
|
61
|
+
Compiled application.css (14ms) (pid 9664)
|
|
62
|
+
Compiled jquery.js (2ms) (pid 9664)
|
|
63
|
+
Compiled jquery_ujs.js (0ms) (pid 9664)
|
|
64
|
+
Compiled posts.js (0ms) (pid 9664)
|
|
65
|
+
Compiled application.js (54ms) (pid 9664)
|
|
66
|
+
Completed 200 OK in 182ms (Views: 181.0ms | ActiveRecord: 0.2ms)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
70
|
+
Served asset /application.css - 200 OK (10ms)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
74
|
+
Served asset /scaffold.css - 200 OK (7ms)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
78
|
+
Served asset /jquery.js - 200 OK (4ms)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
82
|
+
Served asset /posts.css - 200 OK (1ms)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
86
|
+
Served asset /posts.js - 200 OK (1ms)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
90
|
+
Served asset /application.js - 200 OK (10ms)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
94
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
Started GET "/assets/qqface.css" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
98
|
+
Served asset /qqface.css - 404 Not Found (2ms)
|
|
99
|
+
|
|
100
|
+
ActionController::RoutingError (No route matches [GET] "/assets/qqface.css"):
|
|
101
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
102
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
103
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
104
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
105
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
106
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
107
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
108
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
109
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
110
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
111
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
112
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
113
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
114
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
115
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
116
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
117
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
118
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
Started GET "/assets/jquery.qqFace.js" for 127.0.0.1 at 2012-02-29 17:24:56 +0800
|
|
125
|
+
Served asset /jquery.qqFace.js - 404 Not Found (2ms)
|
|
126
|
+
|
|
127
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.qqFace.js"):
|
|
128
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
129
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
130
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
131
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
132
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
133
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
134
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
135
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
136
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
137
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
138
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
139
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
140
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
141
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
142
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
143
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
144
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
145
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:30:29 +0800
|
|
152
|
+
Processing by PostsController#index as HTML
|
|
153
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
154
|
+
Rendered posts/index.html.erb within layouts/application (14.9ms)
|
|
155
|
+
Completed 200 OK in 112ms (Views: 109.4ms | ActiveRecord: 0.2ms)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
159
|
+
Served asset /posts.css - 304 Not Modified (7ms)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
163
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
167
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
171
|
+
Served asset /jquery.js - 304 Not Modified (10ms)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
175
|
+
Served asset /scaffold.css - 304 Not Modified (1ms)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
179
|
+
Served asset /posts.js - 304 Not Modified (1ms)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
183
|
+
Served asset /application.js - 304 Not Modified (7ms)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
Started GET "/assets/qqface.css" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
187
|
+
Served asset /qqface.css - 404 Not Found (2ms)
|
|
188
|
+
|
|
189
|
+
ActionController::RoutingError (No route matches [GET] "/assets/qqface.css"):
|
|
190
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
191
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
192
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
193
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
194
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
195
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
196
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
197
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
198
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
199
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
200
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
201
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
202
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
203
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
204
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
205
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
206
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
207
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
Started GET "/assets/jquery.qqFace.js" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
214
|
+
Served asset /jquery.qqFace.js - 404 Not Found (2ms)
|
|
215
|
+
|
|
216
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.qqFace.js"):
|
|
217
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
218
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
219
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
220
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
221
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
222
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
223
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
224
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
225
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
226
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
227
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
228
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
229
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
230
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
231
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
232
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
233
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
234
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
Started GET "/assets/qqface.css" for 127.0.0.1 at 2012-02-29 17:30:30 +0800
|
|
241
|
+
Served asset /qqface.css - 404 Not Found (2ms)
|
|
242
|
+
|
|
243
|
+
ActionController::RoutingError (No route matches [GET] "/assets/qqface.css"):
|
|
244
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
245
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
246
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
247
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
248
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
249
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
250
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
251
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
252
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
253
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
254
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
255
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
256
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
257
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
258
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
259
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
260
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
261
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:31:37 +0800
|
|
268
|
+
Processing by PostsController#index as HTML
|
|
269
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
270
|
+
Rendered posts/index.html.erb within layouts/application (13.2ms)
|
|
271
|
+
Completed 500 Internal Server Error in 129ms
|
|
272
|
+
|
|
273
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
274
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
275
|
+
3: <head>
|
|
276
|
+
4: <title>Dummy</title>
|
|
277
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
278
|
+
6: <%= javascript_include_tag "application" %>
|
|
279
|
+
7: <%= csrf_meta_tags %>
|
|
280
|
+
8: <%= qqface_css_tag %>
|
|
281
|
+
9: <%= qqface_js_tag %>
|
|
282
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__759344983_87151680'
|
|
283
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
|
|
287
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
288
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (31.2ms)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:35:59 +0800
|
|
292
|
+
Processing by PostsController#index as HTML
|
|
293
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
|
294
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
|
295
|
+
Completed 500 Internal Server Error in 20ms
|
|
296
|
+
|
|
297
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
298
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
299
|
+
3: <head>
|
|
300
|
+
4: <title>Dummy</title>
|
|
301
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
302
|
+
6: <%= javascript_include_tag "application" %>
|
|
303
|
+
7: <%= csrf_meta_tags %>
|
|
304
|
+
8: <%= qqface_css_tag %>
|
|
305
|
+
9: <%= qqface_js_tag %>
|
|
306
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__759344983_87151680'
|
|
307
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.3ms)
|
|
311
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
312
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:38:15 +0800
|
|
316
|
+
Processing by PostsController#index as HTML
|
|
317
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
318
|
+
Rendered posts/index.html.erb within layouts/application (13.6ms)
|
|
319
|
+
Completed 500 Internal Server Error in 116ms
|
|
320
|
+
|
|
321
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
322
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
323
|
+
3: <head>
|
|
324
|
+
4: <title>Dummy</title>
|
|
325
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
326
|
+
6: <%= javascript_include_tag "application" %>
|
|
327
|
+
7: <%= csrf_meta_tags %>
|
|
328
|
+
8:
|
|
329
|
+
9: </head>
|
|
330
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___359789961_96398850'
|
|
331
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.3ms)
|
|
335
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
336
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (31.5ms)
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:39:14 +0800
|
|
340
|
+
Processing by PostsController#index as HTML
|
|
341
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
342
|
+
Rendered posts/index.html.erb within layouts/application (13.5ms)
|
|
343
|
+
Completed 500 Internal Server Error in 115ms
|
|
344
|
+
|
|
345
|
+
ActionView::Template::Error (couldn't find file 'jquery_qqFace'
|
|
346
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
347
|
+
3: <head>
|
|
348
|
+
4: <title>Dummy</title>
|
|
349
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
350
|
+
6: <%= javascript_include_tag "application" %>
|
|
351
|
+
7: <%= csrf_meta_tags %>
|
|
352
|
+
8:
|
|
353
|
+
9: </head>
|
|
354
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__39153684_89133010'
|
|
355
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
|
|
359
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
360
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.5ms)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:39:53 +0800
|
|
364
|
+
Processing by PostsController#index as HTML
|
|
365
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
366
|
+
Rendered posts/index.html.erb within layouts/application (13.0ms)
|
|
367
|
+
Completed 500 Internal Server Error in 116ms
|
|
368
|
+
|
|
369
|
+
ActionView::Template::Error (couldn't find file 'post'
|
|
370
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
371
|
+
3: <head>
|
|
372
|
+
4: <title>Dummy</title>
|
|
373
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
374
|
+
6: <%= javascript_include_tag "application" %>
|
|
375
|
+
7: <%= csrf_meta_tags %>
|
|
376
|
+
8:
|
|
377
|
+
9: </head>
|
|
378
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___793047871_89859950'
|
|
379
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
|
|
383
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
384
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (31.4ms)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
Started GET "/posts" for 127.0.0.1 at 2012-02-29 17:44:24 +0800
|
|
388
|
+
Processing by PostsController#index as HTML
|
|
389
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
390
|
+
Rendered posts/index.html.erb within layouts/application (13.6ms)
|
|
391
|
+
Compiled posts.css (0ms) (pid 9863)
|
|
392
|
+
Compiled scaffold.css (0ms) (pid 9863)
|
|
393
|
+
Compiled application.css (14ms) (pid 9863)
|
|
394
|
+
Completed 500 Internal Server Error in 158ms
|
|
395
|
+
|
|
396
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
397
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
398
|
+
3: <head>
|
|
399
|
+
4: <title>Dummy</title>
|
|
400
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
401
|
+
6: <%= javascript_include_tag "application" %>
|
|
402
|
+
7: <%= csrf_meta_tags %>
|
|
403
|
+
8:
|
|
404
|
+
9: </head>
|
|
405
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___664816453_94030720'
|
|
406
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.3ms)
|
|
410
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
411
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
Started GET "/" for 127.0.0.1 at 2012-03-01 09:19:14 +0800
|
|
415
|
+
|
|
416
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
|
417
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
418
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
419
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
420
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
421
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
422
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
423
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
424
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
425
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
426
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
427
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
428
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
429
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
430
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
431
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
432
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
433
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
434
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (65.1ms)
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:19:53 +0800
|
|
441
|
+
Processing by PostsController#index as HTML
|
|
442
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
443
|
+
Rendered posts/index.html.erb within layouts/application (1.3ms)
|
|
444
|
+
Completed 500 Internal Server Error in 151ms
|
|
445
|
+
|
|
446
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
447
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:16)):
|
|
448
|
+
3: <head>
|
|
449
|
+
4: <title>Dummy</title>
|
|
450
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
451
|
+
6: <%= javascript_include_tag "application" %>
|
|
452
|
+
7: <%= csrf_meta_tags %>
|
|
453
|
+
8:
|
|
454
|
+
9: </head>
|
|
455
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___186089108_88526480'
|
|
456
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.2ms)
|
|
460
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (25.6ms)
|
|
461
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (74.3ms)
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
465
|
+
Processing by PostsController#index as HTML
|
|
466
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
|
467
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
|
468
|
+
Compiled jquery.js (2ms) (pid 3108)
|
|
469
|
+
Compiled jquery_ujs.js (0ms) (pid 3108)
|
|
470
|
+
Compiled posts.js (0ms) (pid 3108)
|
|
471
|
+
Compiled application.js (67ms) (pid 3108)
|
|
472
|
+
Completed 200 OK in 120ms (Views: 118.3ms | ActiveRecord: 0.3ms)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
476
|
+
Served asset /application.css - 304 Not Modified (8ms)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
480
|
+
Served asset /application.js - 304 Not Modified (14ms)
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
484
|
+
Served asset /posts.css - 304 Not Modified (2ms)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
488
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
492
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
496
|
+
Served asset /scaffold.css - 304 Not Modified (2ms)
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:20:17 +0800
|
|
500
|
+
Served asset /posts.js - 304 Not Modified (1ms)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:20:52 +0800
|
|
504
|
+
Processing by PostsController#index as HTML
|
|
505
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
506
|
+
Rendered posts/index.html.erb within layouts/application (0.6ms)
|
|
507
|
+
Completed 500 Internal Server Error in 48ms
|
|
508
|
+
|
|
509
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
510
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:15)):
|
|
511
|
+
3: <head>
|
|
512
|
+
4: <title>Dummy</title>
|
|
513
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
514
|
+
6: <%= javascript_include_tag "application" %>
|
|
515
|
+
7: <%= csrf_meta_tags %>
|
|
516
|
+
8:
|
|
517
|
+
9: </head>
|
|
518
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___186089108_88526480'
|
|
519
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
|
|
523
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
|
524
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:22:05 +0800
|
|
528
|
+
Processing by PostsController#index as HTML
|
|
529
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
530
|
+
Rendered posts/index.html.erb within layouts/application (13.0ms)
|
|
531
|
+
Completed 500 Internal Server Error in 114ms
|
|
532
|
+
|
|
533
|
+
ActionView::Template::Error (couldn't find file 'jquery.qqFace'
|
|
534
|
+
(in /var/www/qqface/test/dummy/app/assets/javascripts/application.js:15)):
|
|
535
|
+
3: <head>
|
|
536
|
+
4: <title>Dummy</title>
|
|
537
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
|
538
|
+
6: <%= javascript_include_tag "application" %>
|
|
539
|
+
7: <%= csrf_meta_tags %>
|
|
540
|
+
8:
|
|
541
|
+
9: </head>
|
|
542
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__307060467_83132000'
|
|
543
|
+
app/controllers/posts_controller.rb:7:in `index'
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (27.2ms)
|
|
547
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
|
548
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (30.7ms)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
552
|
+
Processing by PostsController#index as HTML
|
|
553
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts"
|
|
554
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
|
555
|
+
Compiled jquery.qqFace.js (0ms) (pid 3200)
|
|
556
|
+
Compiled application.js (11ms) (pid 3200)
|
|
557
|
+
Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.3ms)
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
561
|
+
Served asset /application.css - 304 Not Modified (33ms)
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
565
|
+
Served asset /scaffold.css - 304 Not Modified (9ms)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
569
|
+
Served asset /posts.css - 304 Not Modified (2ms)
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
573
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
577
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
581
|
+
Served asset /posts.js - 304 Not Modified (2ms)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
585
|
+
Served asset /jquery.qqFace.js - 200 OK (1ms)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:22:28 +0800
|
|
589
|
+
Served asset /application.js - 200 OK (9ms)
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:25:19 +0800
|
|
593
|
+
Processing by PostsController#index as HTML
|
|
594
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
595
|
+
Rendered posts/index.html.erb within layouts/application (13.1ms)
|
|
596
|
+
Compiled jquery.qqFace.js (0ms) (pid 3245)
|
|
597
|
+
Compiled application.js (10ms) (pid 3245)
|
|
598
|
+
Completed 200 OK in 101ms (Views: 99.7ms | ActiveRecord: 0.2ms)
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
602
|
+
Served asset /application.css - 304 Not Modified (30ms)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
606
|
+
Served asset /posts.css - 304 Not Modified (5ms)
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
610
|
+
Served asset /jquery.js - 304 Not Modified (8ms)
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
614
|
+
Served asset /scaffold.css - 304 Not Modified (4ms)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
618
|
+
Served asset /posts.js - 304 Not Modified (1ms)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
622
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
626
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (3ms)
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:20 +0800
|
|
630
|
+
Served asset /application.js - 304 Not Modified (8ms)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
634
|
+
Processing by PostsController#index as HTML
|
|
635
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
636
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
|
637
|
+
Compiled application.js (2ms) (pid 3245)
|
|
638
|
+
Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.2ms)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
642
|
+
Served asset /application.css - 304 Not Modified (36ms)
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
646
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
650
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
654
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
658
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
662
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:34 +0800
|
|
666
|
+
Served asset /application.js - 200 OK (7ms)
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
Started GET "/posts" for 127.0.0.1 at 2012-03-01 09:25:41 +0800
|
|
670
|
+
Processing by PostsController#index as HTML
|
|
671
|
+
[1m[36mPost Load (0.6ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
672
|
+
Rendered posts/index.html.erb within layouts/application (0.6ms)
|
|
673
|
+
Compiled application.js (5ms) (pid 3245)
|
|
674
|
+
Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.6ms)
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
678
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
682
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
686
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
690
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
694
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
698
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
702
|
+
Served asset /application.js - 200 OK (36ms)
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:42 +0800
|
|
706
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
710
|
+
Processing by PostsController#new as HTML
|
|
711
|
+
Rendered posts/_form.html.erb (66.1ms)
|
|
712
|
+
Rendered posts/new.html.erb within layouts/application (116.1ms)
|
|
713
|
+
Completed 200 OK in 145ms (Views: 139.9ms | ActiveRecord: 0.0ms)
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
717
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
721
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
725
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
729
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
733
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
737
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
741
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:25:59 +0800
|
|
745
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:26:43 +0800
|
|
749
|
+
Processing by PostsController#new as HTML
|
|
750
|
+
Rendered posts/_form.html.erb (25.9ms)
|
|
751
|
+
Rendered posts/new.html.erb within layouts/application (26.4ms)
|
|
752
|
+
Completed 500 Internal Server Error in 29ms
|
|
753
|
+
|
|
754
|
+
ActionView::Template::Error (wrong number of arguments (0 for 1)):
|
|
755
|
+
17: </div>
|
|
756
|
+
18: <div class="field">
|
|
757
|
+
19: <%= f.label :content %><br />
|
|
758
|
+
20: <%= qqface_button_tag %>
|
|
759
|
+
21: <%= f.text_area :content %>
|
|
760
|
+
22: </div>
|
|
761
|
+
23: <div class="actions">
|
|
762
|
+
app/views/posts/_form.html.erb:20:in `block in _app_views_posts__form_html_erb___361071033_82533810'
|
|
763
|
+
app/views/posts/_form.html.erb:1:in `_app_views_posts__form_html_erb___361071033_82533810'
|
|
764
|
+
app/views/posts/new.html.erb:3:in `_app_views_posts_new_html_erb__657692011_90536880'
|
|
765
|
+
app/controllers/posts_controller.rb:29:in `new'
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.2ms)
|
|
769
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
|
770
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
774
|
+
Processing by PostsController#new as HTML
|
|
775
|
+
Rendered posts/_form.html.erb (4.3ms)
|
|
776
|
+
Rendered posts/new.html.erb within layouts/application (5.4ms)
|
|
777
|
+
Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
781
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
785
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
789
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
793
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
797
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
801
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
805
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:26:58 +0800
|
|
809
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
813
|
+
Processing by PostsController#new as HTML
|
|
814
|
+
Rendered posts/_form.html.erb (2.1ms)
|
|
815
|
+
Rendered posts/new.html.erb within layouts/application (2.9ms)
|
|
816
|
+
Compiled qqface.css (0ms) (pid 3245)
|
|
817
|
+
Compiled application.css (9ms) (pid 3245)
|
|
818
|
+
Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms)
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
822
|
+
Served asset /application.css - 200 OK (16ms)
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
826
|
+
Served asset /qqface.css - 200 OK (2ms)
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
830
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
834
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
838
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
842
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
846
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
850
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
854
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
Started GET "/images/face.gif" for 127.0.0.1 at 2012-03-01 09:28:09 +0800
|
|
858
|
+
|
|
859
|
+
ActionController::RoutingError (No route matches [GET] "/images/face.gif"):
|
|
860
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
861
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
862
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
863
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
864
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
865
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
866
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
867
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
868
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
869
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
870
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
871
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
872
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
873
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
874
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
875
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
876
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
877
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
Started GET "/images/face.gif" for 127.0.0.1 at 2012-03-01 09:28:14 +0800
|
|
884
|
+
|
|
885
|
+
ActionController::RoutingError (No route matches [GET] "/images/face.gif"):
|
|
886
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
887
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
888
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
889
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
890
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
891
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
892
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
893
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
894
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
895
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
896
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
897
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
898
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
899
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
900
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
901
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
902
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
903
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
Started GET "/images/face.gif" for 127.0.0.1 at 2012-03-01 09:28:16 +0800
|
|
910
|
+
|
|
911
|
+
ActionController::RoutingError (No route matches [GET] "/images/face.gif"):
|
|
912
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
913
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
914
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
915
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
916
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
917
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
918
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
919
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
920
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
921
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
922
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
923
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
924
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
925
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
926
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
927
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
928
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
929
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
930
|
+
|
|
931
|
+
|
|
932
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
Started GET "/images/face.gif" for 127.0.0.1 at 2012-03-01 09:28:17 +0800
|
|
936
|
+
|
|
937
|
+
ActionController::RoutingError (No route matches [GET] "/images/face.gif"):
|
|
938
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
939
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
940
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
941
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
942
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
943
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
944
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
945
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
946
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
947
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
948
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
949
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
950
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
951
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
952
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
953
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
954
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
955
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
Started GET "/images/face.gif" for 127.0.0.1 at 2012-03-01 09:28:22 +0800
|
|
962
|
+
|
|
963
|
+
ActionController::RoutingError (No route matches [GET] "/images/face.gif"):
|
|
964
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
965
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
966
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
|
967
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
|
968
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
969
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
970
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
971
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
972
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
973
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
|
974
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
|
975
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
|
976
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
977
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
|
978
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
979
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
|
980
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
|
981
|
+
/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
988
|
+
Processing by PostsController#new as HTML
|
|
989
|
+
Rendered posts/_form.html.erb (2.5ms)
|
|
990
|
+
Rendered posts/new.html.erb within layouts/application (3.6ms)
|
|
991
|
+
Compiled qqface.css (0ms) (pid 3245)
|
|
992
|
+
Compiled application.css (2ms) (pid 3245)
|
|
993
|
+
Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
997
|
+
Served asset /application.css - 304 Not Modified (9ms)
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1001
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1005
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1009
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1013
|
+
Served asset /qqface.css - 200 OK (2ms)
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1017
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1021
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1025
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1029
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:29:02 +0800
|
|
1033
|
+
Served asset /face.gif - 200 OK (16ms)
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1037
|
+
Processing by PostsController#new as HTML
|
|
1038
|
+
Rendered posts/_form.html.erb (3.1ms)
|
|
1039
|
+
Rendered posts/new.html.erb within layouts/application (4.2ms)
|
|
1040
|
+
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1044
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1048
|
+
Served asset /scaffold.css - 304 Not Modified (15ms)
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1052
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1056
|
+
Served asset /posts.css - 304 Not Modified (3ms)
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1060
|
+
Served asset /qqface.css - 304 Not Modified (0ms)
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1064
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1068
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1072
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1076
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1077
|
+
|
|
1078
|
+
|
|
1079
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:33:58 +0800
|
|
1080
|
+
Served asset /face.gif - 304 Not Modified (0ms)
|
|
1081
|
+
|
|
1082
|
+
|
|
1083
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:36:13 +0800
|
|
1084
|
+
Processing by PostsController#new as HTML
|
|
1085
|
+
Rendered posts/_form.html.erb (2.1ms)
|
|
1086
|
+
Rendered posts/new.html.erb within layouts/application (2.7ms)
|
|
1087
|
+
Compiled qqface.css (0ms) (pid 3245)
|
|
1088
|
+
Compiled application.css (2ms) (pid 3245)
|
|
1089
|
+
Completed 200 OK in 60ms (Views: 59.8ms | ActiveRecord: 0.0ms)
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1093
|
+
Served asset /application.css - 304 Not Modified (15ms)
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1097
|
+
Served asset /qqface.css - 200 OK (2ms)
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1101
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1105
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1109
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1113
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1117
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1121
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1125
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:36:14 +0800
|
|
1129
|
+
Served asset /face.gif - 304 Not Modified (0ms)
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
Started GET "/assets/face_bg.gif" for 127.0.0.1 at 2012-03-01 09:36:16 +0800
|
|
1133
|
+
Served asset /face_bg.gif - 200 OK (19ms)
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1137
|
+
Processing by PostsController#new as HTML
|
|
1138
|
+
Rendered posts/_form.html.erb (2.3ms)
|
|
1139
|
+
Rendered posts/new.html.erb within layouts/application (3.0ms)
|
|
1140
|
+
Compiled qqface.css (0ms) (pid 3245)
|
|
1141
|
+
Compiled application.css (2ms) (pid 3245)
|
|
1142
|
+
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1146
|
+
Served asset /application.css - 304 Not Modified (10ms)
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1150
|
+
Served asset /qqface.css - 200 OK (2ms)
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1154
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1158
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1162
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1166
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1170
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1174
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1175
|
+
|
|
1176
|
+
|
|
1177
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1178
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:36:47 +0800
|
|
1182
|
+
Served asset /face.gif - 304 Not Modified (0ms)
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
Started GET "/assets/face_bg.gif" for 127.0.0.1 at 2012-03-01 09:36:48 +0800
|
|
1186
|
+
Served asset /face_bg.gif - 304 Not Modified (0ms)
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:37:55 +0800
|
|
1190
|
+
Processing by PostsController#new as HTML
|
|
1191
|
+
Rendered posts/_form.html.erb (2.1ms)
|
|
1192
|
+
Rendered posts/new.html.erb within layouts/application (3.1ms)
|
|
1193
|
+
Compiled qqface.css (0ms) (pid 3245)
|
|
1194
|
+
Compiled application.css (2ms) (pid 3245)
|
|
1195
|
+
Completed 200 OK in 57ms (Views: 56.2ms | ActiveRecord: 0.0ms)
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1199
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1203
|
+
Served asset /application.css - 304 Not Modified (7ms)
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1207
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1211
|
+
Served asset /posts.css - 304 Not Modified (0ms)
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1215
|
+
Served asset /qqface.css - 200 OK (7ms)
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1219
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1223
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (0ms)
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1227
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1231
|
+
Served asset /posts.js - 304 Not Modified (0ms)
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:37:56 +0800
|
|
1235
|
+
Served asset /face.gif - 304 Not Modified (0ms)
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
Started GET "/assets/face_bg.gif" for 127.0.0.1 at 2012-03-01 09:37:57 +0800
|
|
1239
|
+
Served asset /face_bg.gif - 304 Not Modified (0ms)
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:40:45 +0800
|
|
1243
|
+
Processing by PostsController#new as HTML
|
|
1244
|
+
Rendered posts/_form.html.erb (101.2ms)
|
|
1245
|
+
Rendered posts/new.html.erb within layouts/application (102.0ms)
|
|
1246
|
+
Completed 500 Internal Server Error in 104ms
|
|
1247
|
+
|
|
1248
|
+
ActionView::Template::Error (undefined method `qqface_format' for #<#<Class:0xa38a978>:0xabd072c>):
|
|
1249
|
+
12: <% end %>
|
|
1250
|
+
13: <% text = "[/表情1] hi how are you? [/表情37]" %>
|
|
1251
|
+
14:
|
|
1252
|
+
15: <%= simple_format(qqface_format(text)) %>
|
|
1253
|
+
16:
|
|
1254
|
+
17: <div class="field">
|
|
1255
|
+
18: <%= f.label :title %><br />
|
|
1256
|
+
app/views/posts/_form.html.erb:15:in `block in _app_views_posts__form_html_erb___361071033_90075420'
|
|
1257
|
+
app/views/posts/_form.html.erb:1:in `_app_views_posts__form_html_erb___361071033_90075420'
|
|
1258
|
+
app/views/posts/new.html.erb:3:in `_app_views_posts_new_html_erb__657692011_90536880'
|
|
1259
|
+
app/controllers/posts_controller.rb:29:in `new'
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
|
|
1263
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
1264
|
+
Rendered /usr/local/rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:40:58 +0800
|
|
1268
|
+
Processing by PostsController#new as HTML
|
|
1269
|
+
Rendered posts/_form.html.erb (117.9ms)
|
|
1270
|
+
Rendered posts/new.html.erb within layouts/application (139.0ms)
|
|
1271
|
+
Completed 200 OK in 223ms (Views: 218.0ms | ActiveRecord: 0.0ms)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1275
|
+
Served asset /application.css - 304 Not Modified (7ms)
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1279
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (46ms)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1283
|
+
Served asset /qqface.css - 304 Not Modified (4ms)
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1287
|
+
Served asset /posts.css - 304 Not Modified (2ms)
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1291
|
+
Served asset /scaffold.css - 304 Not Modified (8ms)
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1295
|
+
Served asset /posts.js - 304 Not Modified (2ms)
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1299
|
+
Served asset /application.js - 304 Not Modified (10ms)
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
Started GET "/assets/faces/1.gif" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1303
|
+
Served asset /faces/1.gif - 200 OK (30ms)
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1307
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1311
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
Started GET "/assets/faces/37.gif" for 127.0.0.1 at 2012-03-01 09:40:59 +0800
|
|
1315
|
+
Served asset /faces/37.gif - 200 OK (8ms)
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:41:00 +0800
|
|
1319
|
+
Served asset /face.gif - 304 Not Modified (2ms)
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
Started GET "/assets/face_bg.gif" for 127.0.0.1 at 2012-03-01 09:41:04 +0800
|
|
1323
|
+
Served asset /face_bg.gif - 304 Not Modified (3ms)
|
|
1324
|
+
|
|
1325
|
+
|
|
1326
|
+
Started GET "/posts/new" for 127.0.0.1 at 2012-03-01 09:42:53 +0800
|
|
1327
|
+
Processing by PostsController#new as HTML
|
|
1328
|
+
Rendered posts/_form.html.erb (92.5ms)
|
|
1329
|
+
Rendered posts/new.html.erb within layouts/application (114.7ms)
|
|
1330
|
+
Completed 200 OK in 198ms (Views: 193.4ms | ActiveRecord: 0.0ms)
|
|
1331
|
+
|
|
1332
|
+
|
|
1333
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1334
|
+
Served asset /application.css - 304 Not Modified (5ms)
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1338
|
+
Served asset /posts.css - 304 Not Modified (2ms)
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
Started GET "/assets/jquery.qqFace.js?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1342
|
+
Served asset /jquery.qqFace.js - 304 Not Modified (7ms)
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
Started GET "/assets/qqface.css?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1346
|
+
Served asset /qqface.css - 304 Not Modified (5ms)
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1350
|
+
Served asset /jquery_ujs.js - 304 Not Modified (4ms)
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1354
|
+
Served asset /posts.js - 304 Not Modified (1ms)
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1358
|
+
Served asset /application.js - 304 Not Modified (8ms)
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1362
|
+
Served asset /scaffold.css - 304 Not Modified (2ms)
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1366
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
Started GET "/assets/faces/1.gif" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1370
|
+
Served asset /faces/1.gif - 304 Not Modified (6ms)
|
|
1371
|
+
|
|
1372
|
+
|
|
1373
|
+
Started GET "/assets/faces/37.gif" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1374
|
+
Served asset /faces/37.gif - 304 Not Modified (5ms)
|
|
1375
|
+
|
|
1376
|
+
|
|
1377
|
+
Started GET "/assets/face.gif" for 127.0.0.1 at 2012-03-01 09:42:54 +0800
|
|
1378
|
+
Served asset /face.gif - 304 Not Modified (2ms)
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
Started GET "/assets/face_bg.gif" for 127.0.0.1 at 2012-03-01 09:47:59 +0800
|
|
1382
|
+
Served asset /face_bg.gif - 304 Not Modified (1ms)
|