multiupload-uploadify 0.0.2
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 +3 -0
- data/Rakefile +38 -0
- data/app/middleware/flash_session_cookie_middleware.rb +18 -0
- data/config/initializers/middleware_loader.rb +3 -0
- data/lib/generators/multiupload_uploadify/multiupload_uploadify_generator.rb +20 -0
- data/lib/multiupload-uploadify.rb +1 -0
- data/lib/multiupload-uploadify/helper_methods.rb +40 -0
- data/lib/multiupload-uploadify/version.rb +3 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +17 -0
- data/test/dummy/app/assets/javascripts/home.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +14 -0
- data/test/dummy/app/assets/stylesheets/home.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/home_controller.rb +10 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/home_helper.rb +2 -0
- data/test/dummy/app/middleware/flash_session_cookie_middleware.rb +18 -0
- data/test/dummy/app/models/arquivo.rb +4 -0
- data/test/dummy/app/views/home/index.html.erb +11 -0
- data/test/dummy/app/views/layouts/application.html.erb +15 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -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/middleware_loader.rb +3 -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 +61 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20120816154721_create_arquivos.rb +9 -0
- data/test/dummy/db/schema.rb +25 -0
- data/test/dummy/log/development.log +1129 -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/public/system/arquivos/files/000/000/001/original/casa-de-madeira.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/002/original/casa-praia-recreio-b3.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/003/original/casa_propria.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/004/original/casas-Bonitas-Modernas.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/005/original/casas-Bonitas-Modernas_(1).jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/006/original/casas-de-madeira-pre-fabricadas-7.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/007/original/casa-com-piscina-na-frente.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/008/original/casa-de-madeira.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/009/original/casa-praia-recreio-b3.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/010/original/casa_propria.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/011/original/casas-Bonitas-Modernas.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/012/original/casas-Bonitas-Modernas_(1).jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/013/original/casa-de-madeira.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/014/original/casa-praia-recreio-b3.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/015/original/casa-com-piscina-na-frente.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/016/original/casa-de-madeira.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/017/original/casa-praia-recreio-b3.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/018/original/casa_propria.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/019/original/casas-Bonitas-Modernas.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/020/original/casas-Bonitas-Modernas_(1).jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/021/original/casa-com-piscina-na-frente.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/022/original/casa-de-madeira.jpg +0 -0
- data/test/dummy/public/system/arquivos/files/000/000/023/original/casa-praia-recreio-b3.jpg +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/arquivos.yml +11 -0
- data/test/dummy/test/functional/home_controller_test.rb +7 -0
- data/test/dummy/test/unit/arquivo_test.rb +7 -0
- data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/C80/AB0/sprockets%2Fe719e1528f9a2e4de511830305977d00 +0 -0
- data/test/dummy/tmp/cache/assets/CAE/DB0/sprockets%2Fd045d144f7494b39b6361c2583b1ae57 +0 -0
- data/test/dummy/tmp/cache/assets/CB6/440/sprockets%2F27e276e2960d82ce12cba7972c723196 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e +0 -0
- data/test/dummy/tmp/cache/assets/CE1/930/sprockets%2F21d75bf6a7d685044b270183ddd58f43 +0 -0
- data/test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683 +0 -0
- data/test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D42/1F0/sprockets%2Fd071941b5d6f65170e639a9483aedccb +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D4F/780/sprockets%2Fa18f29de6d56f8da9f3f9f13544a4127 +0 -0
- data/test/dummy/tmp/cache/assets/D51/730/sprockets%2F098543e89880c4cc6bff4737e3fb6b2b +0 -0
- data/test/dummy/tmp/cache/assets/D54/D70/sprockets%2F68de609c5a9df78898146b812c3ba8bc +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D7A/050/sprockets%2F96e9bd67b0d2d651f31fa6e5d98d60e1 +0 -0
- data/test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0 +0 -0
- data/test/dummy/tmp/cache/assets/DAA/DB0/sprockets%2Ffba728bef07d560bc59f1bc95bf88570 +0 -0
- data/test/dummy/tmp/cache/assets/DAB/C50/sprockets%2Fc439770cff8b3c4e5b31e719edeea179 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/DEB/FB0/sprockets%2Fd7fdac26002fd06b3eed0a70e605ad8d +0 -0
- data/test/dummy/tmp/cache/assets/DEE/080/sprockets%2F3ddca3e3f4d13434c30ddfc51bf590ec +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/vendor/assets/images/uploadify-cancel.png +0 -0
- data/test/dummy/vendor/assets/javascripts/dependencies/uploadify.swf +0 -0
- data/test/dummy/vendor/assets/javascripts/jquery.uploadify-3.1.js +967 -0
- data/test/dummy/vendor/assets/stylesheets/uploadify.css.erb +92 -0
- data/test/multiupload-uploadify_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +278 -0
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
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 => 20120816154721) do
|
|
15
|
+
|
|
16
|
+
create_table "arquivos", :force => true do |t|
|
|
17
|
+
t.string "file_file_name"
|
|
18
|
+
t.string "file_content_type"
|
|
19
|
+
t.integer "file_file_size"
|
|
20
|
+
t.datetime "file_updated_at"
|
|
21
|
+
t.datetime "created_at", :null => false
|
|
22
|
+
t.datetime "updated_at", :null => false
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
end
|
|
@@ -0,0 +1,1129 @@
|
|
|
1
|
+
Connecting to database specified by database.yml
|
|
2
|
+
Connecting to database specified by database.yml
|
|
3
|
+
Connecting to database specified by database.yml
|
|
4
|
+
Connecting to database specified by database.yml
|
|
5
|
+
Connecting to database specified by database.yml
|
|
6
|
+
Connecting to database specified by database.yml
|
|
7
|
+
Connecting to database specified by database.yml
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:45:22 -0400
|
|
11
|
+
Connecting to database specified by database.yml
|
|
12
|
+
Processing by HomeController#index as HTML
|
|
13
|
+
Rendered home/index.html.erb within layouts/application (26.2ms)
|
|
14
|
+
Completed 200 OK in 52ms (Views: 51.2ms | ActiveRecord: 0.0ms)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
18
|
+
Served asset /application.css - 304 Not Modified (20ms)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
22
|
+
Served asset /home.css - 304 Not Modified (5ms)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
26
|
+
Served asset /uploadify.css - 304 Not Modified (9ms)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
30
|
+
Served asset /jquery_ujs.js - 304 Not Modified (5ms)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
34
|
+
Served asset /jquery.js - 304 Not Modified (35ms)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
38
|
+
Served asset /home.js - 304 Not Modified (3ms)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
42
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (3ms)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
46
|
+
Served asset /application.js - 304 Not Modified (11ms)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345131923657" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
50
|
+
Served asset /dependencies/uploadify.swf - 200 OK (4ms)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:45:23 -0400
|
|
54
|
+
Processing by HomeController#index as */*
|
|
55
|
+
Rendered home/index.html.erb within layouts/application (2.1ms)
|
|
56
|
+
Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
Started GET "/assets/uploadify-cancel.png" for 127.0.0.1 at 2012-08-16 11:45:29 -0400
|
|
60
|
+
Served asset /uploadify-cancel.png - 304 Not Modified (3ms)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:45:29 -0400
|
|
64
|
+
|
|
65
|
+
AbstractController::ActionNotFound (The action 'new' could not be found for HomeController):
|
|
66
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.9ms)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:45:29 -0400
|
|
73
|
+
|
|
74
|
+
AbstractController::ActionNotFound (The action 'new' could not be found for HomeController):
|
|
75
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:45:29 -0400
|
|
82
|
+
|
|
83
|
+
AbstractController::ActionNotFound (The action 'new' could not be found for HomeController):
|
|
84
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:45:29 -0400
|
|
91
|
+
|
|
92
|
+
AbstractController::ActionNotFound (The action 'new' could not be found for HomeController):
|
|
93
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
|
|
97
|
+
Connecting to database specified by database.yml
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:55:04 -0400
|
|
101
|
+
Connecting to database specified by database.yml
|
|
102
|
+
Processing by HomeController#index as HTML
|
|
103
|
+
Completed 500 Internal Server Error in 64ms
|
|
104
|
+
|
|
105
|
+
ActiveRecord::StatementInvalid (Could not find table 'arquivos'):
|
|
106
|
+
app/controllers/home_controller.rb:3:in `index'
|
|
107
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
|
111
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
|
112
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
|
|
113
|
+
Connecting to database specified by database.yml
|
|
114
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
115
|
+
[1m[35m (151.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
116
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
|
117
|
+
[1m[35m (122.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
118
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
119
|
+
Migrating to CreateArquivos (20120816154721)
|
|
120
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
121
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "arquivos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_file_name" varchar(255), "file_content_type" varchar(255), "file_file_size" integer, "file_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
122
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120816154721')
|
|
123
|
+
[1m[36m (136.8ms)[0m [1mcommit transaction[0m
|
|
124
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
125
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
126
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("arquivos")
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:55:29 -0400
|
|
130
|
+
Connecting to database specified by database.yml
|
|
131
|
+
Processing by HomeController#index as HTML
|
|
132
|
+
[1m[36mArquivo Load (0.1ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
133
|
+
Rendered home/index.html.erb within layouts/application (31.3ms)
|
|
134
|
+
Completed 200 OK in 137ms (Views: 57.3ms | ActiveRecord: 2.1ms)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
138
|
+
Served asset /application.css - 304 Not Modified (3ms)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
142
|
+
Served asset /uploadify.css - 304 Not Modified (2ms)
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
146
|
+
Served asset /home.css - 304 Not Modified (6ms)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
150
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
154
|
+
Served asset /jquery_ujs.js - 304 Not Modified (7ms)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
158
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (5ms)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
162
|
+
Served asset /home.js - 304 Not Modified (1ms)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
166
|
+
Served asset /application.js - 304 Not Modified (10ms)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345132530580" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
170
|
+
Served asset /dependencies/uploadify.swf - 200 OK (2ms)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:55:30 -0400
|
|
174
|
+
Processing by HomeController#index as */*
|
|
175
|
+
[1m[35mArquivo Load (0.2ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
176
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
177
|
+
Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.2ms)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
Started GET "/assets/uploadify-cancel.png" for 127.0.0.1 at 2012-08-16 11:55:41 -0400
|
|
181
|
+
Served asset /uploadify-cancel.png - 304 Not Modified (2ms)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:55:41 -0400
|
|
185
|
+
Processing by HomeController#new as HTML
|
|
186
|
+
Parameters: {"Filename"=>"casa-de-madeira.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x007f7f64302038 @original_filename="casa-de-madeira.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-de-madeira.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-qm0gsk>>, "Upload"=>"Submit Query"}
|
|
187
|
+
WARNING: Can't verify CSRF token authenticity
|
|
188
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
189
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
190
|
+
[1m[35mSQL (49.2ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 16 Aug 2012 15:55:41 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-de-madeira.jpg"], ["file_file_size", 86780], ["file_updated_at", Thu, 16 Aug 2012 15:55:41 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:55:41 UTC +00:00]]
|
|
191
|
+
[paperclip] Saving attachments.
|
|
192
|
+
[1m[36m (154.6ms)[0m [1mcommit transaction[0m
|
|
193
|
+
Completed 500 Internal Server Error in 270ms
|
|
194
|
+
|
|
195
|
+
ActionView::MissingTemplate (Missing template home/new, application/new with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :xml, :yaml, :json], :handlers=>[:erb, :builder]}. Searched in:
|
|
196
|
+
* "/home/marco/projetos/multiupload-uploadify/test/dummy/app/views"
|
|
197
|
+
):
|
|
198
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:55:42 -0400
|
|
205
|
+
Processing by HomeController#new as HTML
|
|
206
|
+
Parameters: {"Filename"=>"casa-praia-recreio-b3.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002c731c8 @original_filename="casa-praia-recreio-b3.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-praia-recreio-b3.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-gl1yd0>>, "Upload"=>"Submit Query"}
|
|
207
|
+
WARNING: Can't verify CSRF token authenticity
|
|
208
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
209
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
210
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-praia-recreio-b3.jpg"], ["file_file_size", 141094], ["file_updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00]]
|
|
211
|
+
[paperclip] Saving attachments.
|
|
212
|
+
[1m[35m (143.6ms)[0m commit transaction
|
|
213
|
+
Completed 500 Internal Server Error in 161ms
|
|
214
|
+
|
|
215
|
+
ActionView::MissingTemplate (Missing template home/new, application/new with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :xml, :yaml, :json], :handlers=>[:erb, :builder]}. Searched in:
|
|
216
|
+
* "/home/marco/projetos/multiupload-uploadify/test/dummy/app/views"
|
|
217
|
+
):
|
|
218
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:55:42 -0400
|
|
225
|
+
Processing by HomeController#new as HTML
|
|
226
|
+
Parameters: {"Filename"=>"casa_propria.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002f09ec8 @original_filename="casa_propria.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa_propria.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-1brf312>>, "Upload"=>"Submit Query"}
|
|
227
|
+
WARNING: Can't verify CSRF token authenticity
|
|
228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
229
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
230
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa_propria.jpg"], ["file_file_size", 45196], ["file_updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00]]
|
|
231
|
+
[paperclip] Saving attachments.
|
|
232
|
+
[1m[36m (144.7ms)[0m [1mcommit transaction[0m
|
|
233
|
+
Completed 500 Internal Server Error in 158ms
|
|
234
|
+
|
|
235
|
+
ActionView::MissingTemplate (Missing template home/new, application/new with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :xml, :yaml, :json], :handlers=>[:erb, :builder]}. Searched in:
|
|
236
|
+
* "/home/marco/projetos/multiupload-uploadify/test/dummy/app/views"
|
|
237
|
+
):
|
|
238
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:55:42 -0400
|
|
245
|
+
Processing by HomeController#new as HTML
|
|
246
|
+
Parameters: {"Filename"=>"casas-Bonitas-Modernas.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x0000000326b530 @original_filename="casas-Bonitas-Modernas.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-Bonitas-Modernas.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-1wtho46>>, "Upload"=>"Submit Query"}
|
|
247
|
+
WARNING: Can't verify CSRF token authenticity
|
|
248
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
249
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
250
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-Bonitas-Modernas.jpg"], ["file_file_size", 88180], ["file_updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00]]
|
|
251
|
+
[paperclip] Saving attachments.
|
|
252
|
+
[1m[35m (146.2ms)[0m commit transaction
|
|
253
|
+
Completed 500 Internal Server Error in 162ms
|
|
254
|
+
|
|
255
|
+
ActionView::MissingTemplate (Missing template home/new, application/new with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :xml, :yaml, :json], :handlers=>[:erb, :builder]}. Searched in:
|
|
256
|
+
* "/home/marco/projetos/multiupload-uploadify/test/dummy/app/views"
|
|
257
|
+
):
|
|
258
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:55:42 -0400
|
|
265
|
+
Processing by HomeController#new as HTML
|
|
266
|
+
Parameters: {"Filename"=>"casas-Bonitas-Modernas (1).jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x007f7f64504ef8 @original_filename="casas-Bonitas-Modernas (1).jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-Bonitas-Modernas (1).jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-vb4izm>>, "Upload"=>"Submit Query"}
|
|
267
|
+
WARNING: Can't verify CSRF token authenticity
|
|
268
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
269
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
270
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-Bonitas-Modernas_(1).jpg"], ["file_file_size", 88180], ["file_updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:55:42 UTC +00:00]]
|
|
271
|
+
[paperclip] Saving attachments.
|
|
272
|
+
[1m[36m (142.5ms)[0m [1mcommit transaction[0m
|
|
273
|
+
Completed 500 Internal Server Error in 189ms
|
|
274
|
+
|
|
275
|
+
ActionView::MissingTemplate (Missing template home/new, application/new with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :xml, :yaml, :json], :handlers=>[:erb, :builder]}. Searched in:
|
|
276
|
+
* "/home/marco/projetos/multiupload-uploadify/test/dummy/app/views"
|
|
277
|
+
):
|
|
278
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:55:43 -0400
|
|
285
|
+
Processing by HomeController#new as HTML
|
|
286
|
+
Parameters: {"Filename"=>"casas-de-madeira-pre-fabricadas-7.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000003134310 @original_filename="casas-de-madeira-pre-fabricadas-7.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-de-madeira-pre-fabricadas-7.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-1nnyq5t>>, "Upload"=>"Submit Query"}
|
|
287
|
+
WARNING: Can't verify CSRF token authenticity
|
|
288
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
289
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
290
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 16 Aug 2012 15:55:43 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-de-madeira-pre-fabricadas-7.jpg"], ["file_file_size", 50647], ["file_updated_at", Thu, 16 Aug 2012 15:55:43 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:55:43 UTC +00:00]]
|
|
291
|
+
[paperclip] Saving attachments.
|
|
292
|
+
[1m[35m (143.7ms)[0m commit transaction
|
|
293
|
+
Completed 500 Internal Server Error in 163ms
|
|
294
|
+
|
|
295
|
+
ActionView::MissingTemplate (Missing template home/new, application/new with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :xml, :yaml, :json], :handlers=>[:erb, :builder]}. Searched in:
|
|
296
|
+
* "/home/marco/projetos/multiupload-uploadify/test/dummy/app/views"
|
|
297
|
+
):
|
|
298
|
+
app/middleware/flash_session_cookie_middleware.rb:16:in `call'
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
Rendered /home/marco/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
305
|
+
Processing by HomeController#index as HTML
|
|
306
|
+
[1m[36mArquivo Load (0.2ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
307
|
+
Rendered home/index.html.erb within layouts/application (6.1ms)
|
|
308
|
+
Completed 200 OK in 29ms (Views: 13.6ms | ActiveRecord: 0.7ms)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
312
|
+
Served asset /application.css - 304 Not Modified (19ms)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
316
|
+
Served asset /home.css - 304 Not Modified (0ms)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
320
|
+
Served asset /jquery.js - 304 Not Modified (48ms)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
324
|
+
Served asset /home.js - 304 Not Modified (0ms)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
328
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
332
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
336
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (0ms)
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
340
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345132574501" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
344
|
+
Served asset /dependencies/uploadify.swf - 200 OK (0ms)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:56:14 -0400
|
|
348
|
+
Processing by HomeController#index as */*
|
|
349
|
+
[1m[35mArquivo Load (0.3ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
350
|
+
Rendered home/index.html.erb within layouts/application (7.7ms)
|
|
351
|
+
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.3ms)
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
Started GET "/assets/uploadify-cancel.png" for 127.0.0.1 at 2012-08-16 11:56:21 -0400
|
|
355
|
+
Served asset /uploadify-cancel.png - 304 Not Modified (0ms)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:56:21 -0400
|
|
359
|
+
Processing by HomeController#new as HTML
|
|
360
|
+
Parameters: {"Filename"=>"casa-com-piscina-na-frente.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x0000000320cc60 @original_filename="casa-com-piscina-na-frente.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-com-piscina-na-frente.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-1f7kcen>>, "Upload"=>"Submit Query"}
|
|
361
|
+
WARNING: Can't verify CSRF token authenticity
|
|
362
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
363
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
364
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-com-piscina-na-frente.jpg"], ["file_file_size", 117497], ["file_updated_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00]]
|
|
365
|
+
[paperclip] Saving attachments.
|
|
366
|
+
[1m[36m (164.0ms)[0m [1mcommit transaction[0m
|
|
367
|
+
Rendered text template (0.0ms)
|
|
368
|
+
Completed 200 OK in 201ms (Views: 20.2ms | ActiveRecord: 164.8ms)
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:56:21 -0400
|
|
372
|
+
Processing by HomeController#new as HTML
|
|
373
|
+
Parameters: {"Filename"=>"casa-de-madeira.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x007f7f74468728 @original_filename="casa-de-madeira.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-de-madeira.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-eb2dbs>>, "Upload"=>"Submit Query"}
|
|
374
|
+
WARNING: Can't verify CSRF token authenticity
|
|
375
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
376
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
377
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-de-madeira.jpg"], ["file_file_size", 86780], ["file_updated_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00]]
|
|
378
|
+
[paperclip] Saving attachments.
|
|
379
|
+
[1m[35m (267.6ms)[0m commit transaction
|
|
380
|
+
Rendered text template (0.0ms)
|
|
381
|
+
Completed 200 OK in 281ms (Views: 1.0ms | ActiveRecord: 268.3ms)
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:56:21 -0400
|
|
385
|
+
Processing by HomeController#new as HTML
|
|
386
|
+
Parameters: {"Filename"=>"casa-praia-recreio-b3.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x0000000296c448 @original_filename="casa-praia-recreio-b3.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-praia-recreio-b3.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-184njuj>>, "Upload"=>"Submit Query"}
|
|
387
|
+
WARNING: Can't verify CSRF token authenticity
|
|
388
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
389
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
390
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-praia-recreio-b3.jpg"], ["file_file_size", 141094], ["file_updated_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:56:21 UTC +00:00]]
|
|
391
|
+
[paperclip] Saving attachments.
|
|
392
|
+
[1m[36m (172.3ms)[0m [1mcommit transaction[0m
|
|
393
|
+
Rendered text template (0.0ms)
|
|
394
|
+
Completed 200 OK in 186ms (Views: 0.9ms | ActiveRecord: 173.7ms)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:56:22 -0400
|
|
398
|
+
Processing by HomeController#new as HTML
|
|
399
|
+
Parameters: {"Filename"=>"casa_propria.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002dd1010 @original_filename="casa_propria.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa_propria.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-tilqq3>>, "Upload"=>"Submit Query"}
|
|
400
|
+
WARNING: Can't verify CSRF token authenticity
|
|
401
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
402
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
403
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa_propria.jpg"], ["file_file_size", 45196], ["file_updated_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00]]
|
|
404
|
+
[paperclip] Saving attachments.
|
|
405
|
+
[1m[35m (120.5ms)[0m commit transaction
|
|
406
|
+
Rendered text template (0.0ms)
|
|
407
|
+
Completed 200 OK in 136ms (Views: 0.8ms | ActiveRecord: 121.7ms)
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:56:22 -0400
|
|
411
|
+
Processing by HomeController#new as HTML
|
|
412
|
+
Parameters: {"Filename"=>"casas-Bonitas-Modernas.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x000000031bf208 @original_filename="casas-Bonitas-Modernas.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-Bonitas-Modernas.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-1t70vln>>, "Upload"=>"Submit Query"}
|
|
413
|
+
WARNING: Can't verify CSRF token authenticity
|
|
414
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
415
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
416
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-Bonitas-Modernas.jpg"], ["file_file_size", 88180], ["file_updated_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00]]
|
|
417
|
+
[paperclip] Saving attachments.
|
|
418
|
+
[1m[36m (131.4ms)[0m [1mcommit transaction[0m
|
|
419
|
+
Rendered text template (0.0ms)
|
|
420
|
+
Completed 200 OK in 150ms (Views: 1.1ms | ActiveRecord: 132.5ms)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-16 11:56:22 -0400
|
|
424
|
+
Processing by HomeController#new as HTML
|
|
425
|
+
Parameters: {"Filename"=>"casas-Bonitas-Modernas (1).jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x000000032245b8 @original_filename="casas-Bonitas-Modernas (1).jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-Bonitas-Modernas (1).jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120816-4344-ayaxwj>>, "Upload"=>"Submit Query"}
|
|
426
|
+
WARNING: Can't verify CSRF token authenticity
|
|
427
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
428
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
429
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-Bonitas-Modernas_(1).jpg"], ["file_file_size", 88180], ["file_updated_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00], ["updated_at", Thu, 16 Aug 2012 15:56:22 UTC +00:00]]
|
|
430
|
+
[paperclip] Saving attachments.
|
|
431
|
+
[1m[35m (122.6ms)[0m commit transaction
|
|
432
|
+
Rendered text template (0.0ms)
|
|
433
|
+
Completed 200 OK in 168ms (Views: 0.7ms | ActiveRecord: 123.2ms)
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
437
|
+
Processing by HomeController#index as HTML
|
|
438
|
+
[1m[36mArquivo Load (0.3ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
439
|
+
Rendered home/index.html.erb within layouts/application (11.9ms)
|
|
440
|
+
Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.3ms)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
444
|
+
Served asset /home.css - 304 Not Modified (3ms)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
448
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
452
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
456
|
+
Served asset /jquery.js - 304 Not Modified (8ms)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
460
|
+
Served asset /home.js - 304 Not Modified (0ms)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
464
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
468
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (1ms)
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
472
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345132584330" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
476
|
+
Served asset /dependencies/uploadify.swf - 200 OK (0ms)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:56:24 -0400
|
|
480
|
+
Processing by HomeController#index as */*
|
|
481
|
+
[1m[35mArquivo Load (0.5ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
482
|
+
Rendered home/index.html.erb within layouts/application (14.3ms)
|
|
483
|
+
Completed 200 OK in 28ms (Views: 24.5ms | ActiveRecord: 0.5ms)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345132589724" for 127.0.0.1 at 2012-08-16 11:56:29 -0400
|
|
487
|
+
Served asset /dependencies/uploadify.swf - 200 OK (0ms)
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
Started GET "/" for 127.0.0.1 at 2012-08-16 11:56:29 -0400
|
|
491
|
+
Processing by HomeController#index as */*
|
|
492
|
+
[1m[36mArquivo Load (0.5ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
493
|
+
Rendered home/index.html.erb within layouts/application (14.6ms)
|
|
494
|
+
Completed 200 OK in 28ms (Views: 24.8ms | ActiveRecord: 0.5ms)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 09:41:52 -0400
|
|
498
|
+
Connecting to database specified by database.yml
|
|
499
|
+
Processing by HomeController#index as HTML
|
|
500
|
+
[1m[36mArquivo Load (0.2ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
501
|
+
Rendered home/index.html.erb within layouts/application (25.3ms)
|
|
502
|
+
Completed 200 OK in 408ms (Views: 316.6ms | ActiveRecord: 3.0ms)
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
506
|
+
Served asset /home.css - 304 Not Modified (2ms)
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
510
|
+
Served asset /home.js - 200 OK (3ms)
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
514
|
+
Served asset /uploadify.css - 304 Not Modified (2ms)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
518
|
+
Served asset /application.css - 200 OK (6ms)
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
522
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
526
|
+
Served asset /jquery.js - 200 OK (6ms)
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
530
|
+
Served asset /jquery.uploadify-3.1.js - 200 OK (4ms)
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
534
|
+
Served asset /application.js - 200 OK (10ms)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345210914663" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
538
|
+
Served asset /dependencies/uploadify.swf - 200 OK (35ms)
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 09:41:54 -0400
|
|
542
|
+
Processing by HomeController#index as */*
|
|
543
|
+
[1m[35mArquivo Load (0.6ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
544
|
+
Rendered home/index.html.erb within layouts/application (18.1ms)
|
|
545
|
+
Completed 200 OK in 32ms (Views: 28.7ms | ActiveRecord: 0.6ms)
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
Started GET "/assets/uploadify-cancel.png" for 127.0.0.1 at 2012-08-17 09:41:59 -0400
|
|
549
|
+
Served asset /uploadify-cancel.png - 200 OK (32ms)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:41:59 -0400
|
|
553
|
+
Processing by HomeController#new as HTML
|
|
554
|
+
Parameters: {"Filename"=>"casa-de-madeira.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002dceea0 @original_filename="casa-de-madeira.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-de-madeira.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-1gsqtlp>>, "Upload"=>"Submit Query"}
|
|
555
|
+
WARNING: Can't verify CSRF token authenticity
|
|
556
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
557
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
558
|
+
[1m[35mSQL (53.7ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 17 Aug 2012 13:41:59 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-de-madeira.jpg"], ["file_file_size", 86780], ["file_updated_at", Fri, 17 Aug 2012 13:41:59 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:41:59 UTC +00:00]]
|
|
559
|
+
[paperclip] Saving attachments.
|
|
560
|
+
[1m[36m (148.0ms)[0m [1mcommit transaction[0m
|
|
561
|
+
Rendered text template (0.0ms)
|
|
562
|
+
Completed 200 OK in 243ms (Views: 26.4ms | ActiveRecord: 201.8ms)
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:34 -0400
|
|
566
|
+
Processing by HomeController#new as HTML
|
|
567
|
+
Parameters: {"Filename"=>"casa-praia-recreio-b3.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002315428 @original_filename="casa-praia-recreio-b3.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-praia-recreio-b3.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-cjtytu>>, "Upload"=>"Submit Query"}
|
|
568
|
+
WARNING: Can't verify CSRF token authenticity
|
|
569
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
570
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
571
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 17 Aug 2012 13:42:34 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-praia-recreio-b3.jpg"], ["file_file_size", 141094], ["file_updated_at", Fri, 17 Aug 2012 13:42:34 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:34 UTC +00:00]]
|
|
572
|
+
[paperclip] Saving attachments.
|
|
573
|
+
[1m[35m (152.8ms)[0m commit transaction
|
|
574
|
+
Rendered text template (0.0ms)
|
|
575
|
+
Completed 200 OK in 181ms (Views: 1.9ms | ActiveRecord: 154.1ms)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:48 -0400
|
|
579
|
+
Processing by HomeController#new as HTML
|
|
580
|
+
Parameters: {"Filename"=>"casa-com-piscina-na-frente.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002deb578 @original_filename="casa-com-piscina-na-frente.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-com-piscina-na-frente.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-11hxify>>, "Upload"=>"Submit Query"}
|
|
581
|
+
WARNING: Can't verify CSRF token authenticity
|
|
582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
583
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
584
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 17 Aug 2012 13:42:48 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-com-piscina-na-frente.jpg"], ["file_file_size", 117497], ["file_updated_at", Fri, 17 Aug 2012 13:42:48 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:48 UTC +00:00]]
|
|
585
|
+
[paperclip] Saving attachments.
|
|
586
|
+
[1m[36m (150.7ms)[0m [1mcommit transaction[0m
|
|
587
|
+
Rendered text template (0.0ms)
|
|
588
|
+
Completed 200 OK in 168ms (Views: 1.1ms | ActiveRecord: 151.8ms)
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:50 -0400
|
|
592
|
+
Processing by HomeController#new as HTML
|
|
593
|
+
Parameters: {"Filename"=>"casa-de-madeira.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002f25f88 @original_filename="casa-de-madeira.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-de-madeira.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-rwujun>>, "Upload"=>"Submit Query"}
|
|
594
|
+
WARNING: Can't verify CSRF token authenticity
|
|
595
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
596
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
597
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 17 Aug 2012 13:42:50 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-de-madeira.jpg"], ["file_file_size", 86780], ["file_updated_at", Fri, 17 Aug 2012 13:42:50 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:50 UTC +00:00]]
|
|
598
|
+
[paperclip] Saving attachments.
|
|
599
|
+
[1m[35m (137.9ms)[0m commit transaction
|
|
600
|
+
Rendered text template (0.1ms)
|
|
601
|
+
Completed 200 OK in 208ms (Views: 1.0ms | ActiveRecord: 138.8ms)
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:51 -0400
|
|
605
|
+
Processing by HomeController#new as HTML
|
|
606
|
+
Parameters: {"Filename"=>"casa-praia-recreio-b3.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002675e88 @original_filename="casa-praia-recreio-b3.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-praia-recreio-b3.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-2iuvl6>>, "Upload"=>"Submit Query"}
|
|
607
|
+
WARNING: Can't verify CSRF token authenticity
|
|
608
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
609
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
610
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 17 Aug 2012 13:42:51 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-praia-recreio-b3.jpg"], ["file_file_size", 141094], ["file_updated_at", Fri, 17 Aug 2012 13:42:51 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:51 UTC +00:00]]
|
|
611
|
+
[paperclip] Saving attachments.
|
|
612
|
+
[1m[36m (122.5ms)[0m [1mcommit transaction[0m
|
|
613
|
+
Rendered text template (0.0ms)
|
|
614
|
+
Completed 200 OK in 138ms (Views: 1.2ms | ActiveRecord: 123.7ms)
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:52 -0400
|
|
618
|
+
Processing by HomeController#new as HTML
|
|
619
|
+
Parameters: {"Filename"=>"casa_propria.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002e9e4c0 @original_filename="casa_propria.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa_propria.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-1tnypnj>>, "Upload"=>"Submit Query"}
|
|
620
|
+
WARNING: Can't verify CSRF token authenticity
|
|
621
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
622
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
623
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 17 Aug 2012 13:42:52 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa_propria.jpg"], ["file_file_size", 45196], ["file_updated_at", Fri, 17 Aug 2012 13:42:52 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:52 UTC +00:00]]
|
|
624
|
+
[paperclip] Saving attachments.
|
|
625
|
+
[1m[35m (145.7ms)[0m commit transaction
|
|
626
|
+
Rendered text template (0.0ms)
|
|
627
|
+
Completed 200 OK in 162ms (Views: 1.1ms | ActiveRecord: 147.0ms)
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:52 -0400
|
|
631
|
+
Processing by HomeController#new as HTML
|
|
632
|
+
Parameters: {"Filename"=>"casas-Bonitas-Modernas.jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000002dce4c8 @original_filename="casas-Bonitas-Modernas.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-Bonitas-Modernas.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-7fgwe2>>, "Upload"=>"Submit Query"}
|
|
633
|
+
WARNING: Can't verify CSRF token authenticity
|
|
634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
635
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
636
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 17 Aug 2012 13:42:52 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-Bonitas-Modernas.jpg"], ["file_file_size", 88180], ["file_updated_at", Fri, 17 Aug 2012 13:42:52 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:52 UTC +00:00]]
|
|
637
|
+
[paperclip] Saving attachments.
|
|
638
|
+
[1m[36m (129.9ms)[0m [1mcommit transaction[0m
|
|
639
|
+
Rendered text template (0.0ms)
|
|
640
|
+
Completed 200 OK in 143ms (Views: 1.2ms | ActiveRecord: 130.6ms)
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 09:42:53 -0400
|
|
644
|
+
Processing by HomeController#new as HTML
|
|
645
|
+
Parameters: {"Filename"=>"casas-Bonitas-Modernas (1).jpg", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x00000001c3d218 @original_filename="casas-Bonitas-Modernas (1).jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casas-Bonitas-Modernas (1).jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-4542-80toae>>, "Upload"=>"Submit Query"}
|
|
646
|
+
WARNING: Can't verify CSRF token authenticity
|
|
647
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
648
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
649
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 17 Aug 2012 13:42:53 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casas-Bonitas-Modernas_(1).jpg"], ["file_file_size", 88180], ["file_updated_at", Fri, 17 Aug 2012 13:42:53 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 13:42:53 UTC +00:00]]
|
|
650
|
+
[paperclip] Saving attachments.
|
|
651
|
+
[1m[35m (128.3ms)[0m commit transaction
|
|
652
|
+
Rendered text template (0.0ms)
|
|
653
|
+
Completed 200 OK in 140ms (Views: 0.9ms | ActiveRecord: 128.9ms)
|
|
654
|
+
Connecting to database specified by database.yml
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
658
|
+
Processing by HomeController#index as HTML
|
|
659
|
+
[1m[36mArquivo Load (0.3ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
660
|
+
Rendered home/index.html.erb within layouts/application (18.8ms)
|
|
661
|
+
Completed 200 OK in 29ms (Views: 25.8ms | ActiveRecord: 0.3ms)
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
665
|
+
Served asset /home.css - 304 Not Modified (0ms)
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
669
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
673
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (0ms)
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
677
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345214899308" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
681
|
+
Served asset /dependencies/uploadify.swf - 200 OK (0ms)
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:48:19 -0400
|
|
685
|
+
Processing by HomeController#index as */*
|
|
686
|
+
[1m[35mArquivo Load (0.6ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
687
|
+
Rendered home/index.html.erb within layouts/application (24.0ms)
|
|
688
|
+
Completed 200 OK in 38ms (Views: 34.6ms | ActiveRecord: 0.6ms)
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:48:39 -0400
|
|
692
|
+
Connecting to database specified by database.yml
|
|
693
|
+
Processing by HomeController#index as HTML
|
|
694
|
+
[1m[36mArquivo Load (0.2ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
695
|
+
Rendered home/index.html.erb within layouts/application (22.4ms)
|
|
696
|
+
Completed 200 OK in 172ms (Views: 110.0ms | ActiveRecord: 2.1ms)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:49:31 -0400
|
|
700
|
+
Processing by HomeController#index as HTML
|
|
701
|
+
[1m[35mArquivo Load (0.3ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
702
|
+
Rendered home/index.html.erb within layouts/application (23.0ms)
|
|
703
|
+
Completed 200 OK in 32ms (Views: 30.0ms | ActiveRecord: 0.3ms)
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:49:46 -0400
|
|
707
|
+
Processing by HomeController#index as HTML
|
|
708
|
+
[1m[36mArquivo Load (0.6ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
709
|
+
Rendered home/index.html.erb within layouts/application (19.9ms)
|
|
710
|
+
Completed 200 OK in 37ms (Views: 32.8ms | ActiveRecord: 0.6ms)
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:50:06 -0400
|
|
714
|
+
Processing by HomeController#index as HTML
|
|
715
|
+
[1m[35mArquivo Load (0.4ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
716
|
+
Rendered home/index.html.erb within layouts/application (18.6ms)
|
|
717
|
+
Completed 200 OK in 30ms (Views: 27.5ms | ActiveRecord: 0.4ms)
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:50:09 -0400
|
|
721
|
+
Processing by HomeController#index as HTML
|
|
722
|
+
[1m[36mArquivo Load (0.6ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
723
|
+
Rendered home/index.html.erb within layouts/application (62.8ms)
|
|
724
|
+
Completed 200 OK in 73ms (Views: 69.4ms | ActiveRecord: 0.6ms)
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 10:50:10 -0400
|
|
728
|
+
Served asset /home.css - 304 Not Modified (7ms)
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 10:50:10 -0400
|
|
732
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 10:50:10 -0400
|
|
736
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (5ms)
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 10:50:10 -0400
|
|
740
|
+
Served asset /uploadify.css - 304 Not Modified (3ms)
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345215010197" for 127.0.0.1 at 2012-08-17 10:50:10 -0400
|
|
744
|
+
Served asset /dependencies/uploadify.swf - 200 OK (2ms)
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:50:10 -0400
|
|
748
|
+
Processing by HomeController#index as */*
|
|
749
|
+
[1m[35mArquivo Load (0.7ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
750
|
+
Rendered home/index.html.erb within layouts/application (26.2ms)
|
|
751
|
+
Completed 200 OK in 41ms (Views: 36.4ms | ActiveRecord: 0.7ms)
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 10:50:18 -0400
|
|
755
|
+
Processing by HomeController#new as HTML
|
|
756
|
+
Parameters: {"Filename"=>"casa-com-piscina-na-frente.jpg", "teste"=>"123123", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x007fcaa47a32c8 @original_filename="casa-com-piscina-na-frente.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-com-piscina-na-frente.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-5808-1bq2eaj>>, "Upload"=>"Submit Query"}
|
|
757
|
+
WARNING: Can't verify CSRF token authenticity
|
|
758
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
759
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
760
|
+
[1m[35mSQL (42.4ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 17 Aug 2012 14:50:18 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-com-piscina-na-frente.jpg"], ["file_file_size", 117497], ["file_updated_at", Fri, 17 Aug 2012 14:50:18 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 14:50:18 UTC +00:00]]
|
|
761
|
+
[paperclip] Saving attachments.
|
|
762
|
+
[1m[36m (162.7ms)[0m [1mcommit transaction[0m
|
|
763
|
+
Rendered text template (0.0ms)
|
|
764
|
+
Completed 200 OK in 223ms (Views: 4.3ms | ActiveRecord: 205.2ms)
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 10:50:19 -0400
|
|
768
|
+
Processing by HomeController#new as HTML
|
|
769
|
+
Parameters: {"Filename"=>"casa-de-madeira.jpg", "teste"=>"123123", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x000000025aca88 @original_filename="casa-de-madeira.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-de-madeira.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-5808-1538h4o>>, "Upload"=>"Submit Query"}
|
|
770
|
+
WARNING: Can't verify CSRF token authenticity
|
|
771
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
772
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
773
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 17 Aug 2012 14:50:19 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-de-madeira.jpg"], ["file_file_size", 86780], ["file_updated_at", Fri, 17 Aug 2012 14:50:19 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 14:50:19 UTC +00:00]]
|
|
774
|
+
[paperclip] Saving attachments.
|
|
775
|
+
[1m[35m (375.3ms)[0m commit transaction
|
|
776
|
+
Rendered text template (0.0ms)
|
|
777
|
+
Completed 200 OK in 388ms (Views: 0.6ms | ActiveRecord: 376.1ms)
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
Started POST "/teste" for 127.0.0.1 at 2012-08-17 10:50:21 -0400
|
|
781
|
+
Processing by HomeController#new as HTML
|
|
782
|
+
Parameters: {"Filename"=>"casa-praia-recreio-b3.jpg", "teste"=>"123123", "Filedata"=>#<ActionDispatch::Http::UploadedFile:0x000000026edeb0 @original_filename="casa-praia-recreio-b3.jpg", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"Filedata\"; filename=\"casa-praia-recreio-b3.jpg\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<File:/tmp/RackMultipart20120817-5808-vyptpd>>, "Upload"=>"Submit Query"}
|
|
783
|
+
WARNING: Can't verify CSRF token authenticity
|
|
784
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
785
|
+
Binary data inserted for `string` type on column `file_content_type`
|
|
786
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "arquivos" ("created_at", "file_content_type", "file_file_name", "file_file_size", "file_updated_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 17 Aug 2012 14:50:21 UTC +00:00], ["file_content_type", "application/octet-stream"], ["file_file_name", "casa-praia-recreio-b3.jpg"], ["file_file_size", 141094], ["file_updated_at", Fri, 17 Aug 2012 14:50:21 UTC +00:00], ["updated_at", Fri, 17 Aug 2012 14:50:21 UTC +00:00]]
|
|
787
|
+
[paperclip] Saving attachments.
|
|
788
|
+
[1m[36m (305.5ms)[0m [1mcommit transaction[0m
|
|
789
|
+
Rendered text template (0.0ms)
|
|
790
|
+
Completed 200 OK in 352ms (Views: 1.2ms | ActiveRecord: 306.7ms)
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:55:59 -0400
|
|
794
|
+
Connecting to database specified by database.yml
|
|
795
|
+
Processing by HomeController#index as HTML
|
|
796
|
+
[1m[36mArquivo Load (0.3ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
797
|
+
Rendered home/index.html.erb within layouts/application (24.5ms)
|
|
798
|
+
Completed 200 OK in 173ms (Views: 110.9ms | ActiveRecord: 2.3ms)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:00 -0400
|
|
802
|
+
Served asset /home.css - 304 Not Modified (6ms)
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:00 -0400
|
|
806
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (2ms)
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:00 -0400
|
|
810
|
+
Served asset /uploadify.css - 304 Not Modified (5ms)
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:00 -0400
|
|
814
|
+
Served asset /jquery.js - 304 Not Modified (7ms)
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:56:25 -0400
|
|
818
|
+
Processing by HomeController#index as HTML
|
|
819
|
+
[1m[35mArquivo Load (0.5ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
820
|
+
Rendered home/index.html.erb within layouts/application (24.3ms)
|
|
821
|
+
Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.5ms)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:25 -0400
|
|
825
|
+
Served asset /home.css - 304 Not Modified (0ms)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:25 -0400
|
|
829
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:25 -0400
|
|
833
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:25 -0400
|
|
837
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (1ms)
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345215386005" for 127.0.0.1 at 2012-08-17 10:56:26 -0400
|
|
841
|
+
Served asset /dependencies/uploadify.swf - 200 OK (2ms)
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:56:26 -0400
|
|
845
|
+
Processing by HomeController#index as */*
|
|
846
|
+
[1m[36mArquivo Load (0.6ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
847
|
+
Rendered home/index.html.erb within layouts/application (23.7ms)
|
|
848
|
+
Completed 200 OK in 37ms (Views: 33.2ms | ActiveRecord: 0.6ms)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:56:32 -0400
|
|
852
|
+
Processing by HomeController#index as HTML
|
|
853
|
+
[1m[35mArquivo Load (0.5ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
854
|
+
Rendered home/index.html.erb within layouts/application (59.1ms)
|
|
855
|
+
Completed 200 OK in 73ms (Views: 68.0ms | ActiveRecord: 0.5ms)
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:32 -0400
|
|
859
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
863
|
+
Served asset /home.css - 304 Not Modified (0ms)
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
867
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
871
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
875
|
+
Served asset /jquery_ujs.js - 304 Not Modified (5ms)
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
879
|
+
Served asset /home.js - 304 Not Modified (2ms)
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
883
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (1ms)
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
887
|
+
Served asset /application.js - 304 Not Modified (7ms)
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345215393071" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
891
|
+
Served asset /dependencies/uploadify.swf - 200 OK (0ms)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 10:56:33 -0400
|
|
895
|
+
Processing by HomeController#index as */*
|
|
896
|
+
[1m[36mArquivo Load (0.6ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
897
|
+
Rendered home/index.html.erb within layouts/application (21.8ms)
|
|
898
|
+
Completed 200 OK in 34ms (Views: 29.5ms | ActiveRecord: 0.6ms)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:41:33 -0400
|
|
902
|
+
Connecting to database specified by database.yml
|
|
903
|
+
Processing by HomeController#index as HTML
|
|
904
|
+
[1m[36mArquivo Load (0.2ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
905
|
+
Rendered home/index.html.erb within layouts/application (25.7ms)
|
|
906
|
+
Completed 200 OK in 177ms (Views: 115.3ms | ActiveRecord: 2.1ms)
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
910
|
+
Served asset /application.css - 200 OK (16ms)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
914
|
+
Served asset /jquery.js - 200 OK (10ms)
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
918
|
+
Served asset /home.js - 200 OK (3ms)
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
922
|
+
Served asset /home.css - 304 Not Modified (7ms)
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
926
|
+
Served asset /jquery_ujs.js - 200 OK (4ms)
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
930
|
+
Served asset /uploadify.css - 304 Not Modified (5ms)
|
|
931
|
+
|
|
932
|
+
|
|
933
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
934
|
+
Served asset /jquery.uploadify-3.1.js - 200 OK (4ms)
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
938
|
+
Served asset /application.js - 200 OK (10ms)
|
|
939
|
+
|
|
940
|
+
|
|
941
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345228894563" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
942
|
+
Served asset /dependencies/uploadify.swf - 200 OK (2ms)
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:41:34 -0400
|
|
946
|
+
Processing by HomeController#index as */*
|
|
947
|
+
[1m[35mArquivo Load (0.6ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
948
|
+
Rendered home/index.html.erb within layouts/application (24.2ms)
|
|
949
|
+
Completed 200 OK in 70ms (Views: 65.3ms | ActiveRecord: 0.6ms)
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
953
|
+
Processing by HomeController#index as HTML
|
|
954
|
+
[1m[36mArquivo Load (0.6ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
955
|
+
Rendered home/index.html.erb within layouts/application (22.5ms)
|
|
956
|
+
Completed 200 OK in 34ms (Views: 30.0ms | ActiveRecord: 0.6ms)
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
960
|
+
Served asset /application.css - 304 Not Modified (14ms)
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
964
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
968
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
969
|
+
|
|
970
|
+
|
|
971
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
972
|
+
Served asset /home.js - 304 Not Modified (0ms)
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
976
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
980
|
+
Served asset /home.css - 304 Not Modified (0ms)
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
984
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
988
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (0ms)
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345228904395" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
992
|
+
Served asset /dependencies/uploadify.swf - 200 OK (0ms)
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:41:44 -0400
|
|
996
|
+
Processing by HomeController#index as */*
|
|
997
|
+
[1m[35mArquivo Load (0.6ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
998
|
+
Rendered home/index.html.erb within layouts/application (21.3ms)
|
|
999
|
+
Completed 200 OK in 35ms (Views: 30.4ms | ActiveRecord: 0.6ms)
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:42:06 -0400
|
|
1003
|
+
Connecting to database specified by database.yml
|
|
1004
|
+
Processing by HomeController#index as HTML
|
|
1005
|
+
[1m[36mArquivo Load (0.2ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
1006
|
+
Rendered home/index.html.erb within layouts/application (52.1ms)
|
|
1007
|
+
Completed 200 OK in 165ms (Views: 76.8ms | ActiveRecord: 2.1ms)
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 14:42:06 -0400
|
|
1011
|
+
Served asset /application.css - 304 Not Modified (53ms)
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 14:42:06 -0400
|
|
1015
|
+
Served asset /home.css - 304 Not Modified (4ms)
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 14:42:06 -0400
|
|
1019
|
+
Served asset /jquery.js - 304 Not Modified (9ms)
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 14:42:07 -0400
|
|
1023
|
+
Served asset /uploadify.css - 304 Not Modified (2ms)
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 14:42:07 -0400
|
|
1027
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 14:42:07 -0400
|
|
1031
|
+
Served asset /home.js - 304 Not Modified (2ms)
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 14:42:07 -0400
|
|
1035
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (2ms)
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 14:42:07 -0400
|
|
1039
|
+
Served asset /application.js - 304 Not Modified (8ms)
|
|
1040
|
+
|
|
1041
|
+
|
|
1042
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:43:44 -0400
|
|
1043
|
+
Processing by HomeController#index as HTML
|
|
1044
|
+
[1m[35mArquivo Load (0.5ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
1045
|
+
Rendered home/index.html.erb within layouts/application (23.0ms)
|
|
1046
|
+
Completed 200 OK in 35ms (Views: 31.4ms | ActiveRecord: 0.5ms)
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 14:43:44 -0400
|
|
1050
|
+
Served asset /application.css - 304 Not Modified (10ms)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 14:43:44 -0400
|
|
1054
|
+
Served asset /home.css - 304 Not Modified (0ms)
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 14:43:44 -0400
|
|
1058
|
+
Served asset /uploadify.css - 304 Not Modified (0ms)
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:44 -0400
|
|
1062
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:44 -0400
|
|
1066
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:45 -0400
|
|
1070
|
+
Served asset /home.js - 304 Not Modified (0ms)
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:45 -0400
|
|
1074
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (0ms)
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:45 -0400
|
|
1078
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:43:58 -0400
|
|
1082
|
+
Connecting to database specified by database.yml
|
|
1083
|
+
Processing by HomeController#index as HTML
|
|
1084
|
+
[1m[36mArquivo Load (0.2ms)[0m [1mSELECT "arquivos".* FROM "arquivos" [0m
|
|
1085
|
+
Rendered home/index.html.erb within layouts/application (25.0ms)
|
|
1086
|
+
Completed 200 OK in 172ms (Views: 109.9ms | ActiveRecord: 2.2ms)
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1090
|
+
Served asset /application.css - 304 Not Modified (5ms)
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1094
|
+
Served asset /home.js - 304 Not Modified (2ms)
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1098
|
+
Served asset /jquery.js - 304 Not Modified (8ms)
|
|
1099
|
+
|
|
1100
|
+
|
|
1101
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1102
|
+
Served asset /jquery_ujs.js - 304 Not Modified (6ms)
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
Started GET "/assets/uploadify.css?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1106
|
+
Served asset /uploadify.css - 304 Not Modified (5ms)
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1110
|
+
Served asset /home.css - 304 Not Modified (3ms)
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
Started GET "/assets/jquery.uploadify-3.1.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1114
|
+
Served asset /jquery.uploadify-3.1.js - 304 Not Modified (6ms)
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1118
|
+
Served asset /application.js - 304 Not Modified (12ms)
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
Started GET "/assets/dependencies/uploadify.swf?preventswfcaching=1345229039201" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1122
|
+
Served asset /dependencies/uploadify.swf - 200 OK (3ms)
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
Started GET "/" for 127.0.0.1 at 2012-08-17 14:43:59 -0400
|
|
1126
|
+
Processing by HomeController#index as */*
|
|
1127
|
+
[1m[35mArquivo Load (0.7ms)[0m SELECT "arquivos".* FROM "arquivos"
|
|
1128
|
+
Rendered home/index.html.erb within layouts/application (27.6ms)
|
|
1129
|
+
Completed 200 OK in 45ms (Views: 39.8ms | ActiveRecord: 0.7ms)
|