extr 1.0.2 → 1.0.3
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/app/controllers/extr/router_controller.rb +14 -18
- data/lib/extr/config.rb +4 -5
- data/lib/extr/engine.rb +29 -19
- data/lib/extr/version.rb +1 -1
- data/readme.md +3 -2
- data/test/dummy/app/assets/javascripts/application.js +3 -3
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/production.sqlite3 +0 -0
- data/test/dummy/log/development.log +1583 -0
- data/test/dummy/log/production.log +90 -0
- data/test/dummy/tmp/cache/assets/C76/160/sprockets%2F49c594d143212b346d11f1ecf9358103 +0 -0
- data/test/dummy/tmp/cache/assets/C7B/980/sprockets%2F2e74b041ed6358212e539348c1356e4b +0 -0
- data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/CC9/AF0/sprockets%2F6a96ab5877a885921b0ea6c4997195f4 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DA8/900/sprockets%2Fde7a2b3987b89b9d9afb268ce4204a4a +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
- metadata +32 -4
@@ -1,4 +1,10 @@
|
|
1
1
|
module Extr
|
2
|
+
# Extr::RouterController is a standard Rails Action Controller that receives all incoming ExtJS requests
|
3
|
+
# (included validation of the transaction) and delegate them to the specified controller actions inside your Rails application.
|
4
|
+
#
|
5
|
+
#
|
6
|
+
#
|
7
|
+
#
|
2
8
|
class RouterController < ActionController::Base
|
3
9
|
|
4
10
|
protect_from_forgery
|
@@ -8,7 +14,7 @@ module Extr
|
|
8
14
|
def direct
|
9
15
|
body = transactions.map(&:response)
|
10
16
|
|
11
|
-
if request.form_data? and extjs_form_with_upload
|
17
|
+
if request.form_data? and extjs_form_with_upload?
|
12
18
|
render :inline => "<html><body><textarea>#{body.to_json}</textarea></body></html>", :content_type => 'text/html'
|
13
19
|
else
|
14
20
|
render :json => body ||= ""
|
@@ -17,7 +23,7 @@ module Extr
|
|
17
23
|
|
18
24
|
private
|
19
25
|
|
20
|
-
def extjs_form_with_upload
|
26
|
+
def extjs_form_with_upload?
|
21
27
|
params.select{|k,v| v.class == ActionDispatch::Http::UploadedFile}.any?
|
22
28
|
end
|
23
29
|
|
@@ -28,23 +34,13 @@ module Extr
|
|
28
34
|
def collect_transactions
|
29
35
|
arr = []
|
30
36
|
raw_http_params.each do |p|
|
31
|
-
|
32
|
-
|
33
|
-
p[:
|
34
|
-
p[:
|
35
|
-
p[:extTID],
|
37
|
+
t = Transaction.new(request,
|
38
|
+
p[:extAction] || p[:action],
|
39
|
+
p[:extMethod] || p[:method],
|
40
|
+
p[:extTID] || p[:tid],
|
36
41
|
p[:data],
|
37
|
-
p[:extUpload]
|
38
|
-
|
39
|
-
else
|
40
|
-
t = Transaction.new(request,
|
41
|
-
p[:action],
|
42
|
-
p[:method],
|
43
|
-
p[:tid],
|
44
|
-
p[:data],
|
45
|
-
false
|
46
|
-
)
|
47
|
-
end
|
42
|
+
p[:extUpload] || false
|
43
|
+
)
|
48
44
|
arr << t if t.valid?
|
49
45
|
end
|
50
46
|
return arr
|
data/lib/extr/config.rb
CHANGED
@@ -7,13 +7,12 @@ module Extr
|
|
7
7
|
cattr_accessor :controller_path
|
8
8
|
|
9
9
|
class << self
|
10
|
-
def controller_config
|
11
|
-
@@controller_config ||= Hash.new { |hash, key| hash[key] = {} }
|
12
|
-
end
|
13
10
|
|
14
|
-
def
|
15
|
-
@@
|
11
|
+
def initialize!
|
12
|
+
@@controller_config = Hash.new { |hash, key| hash[key] = {} }
|
13
|
+
@@controller_path = {}
|
16
14
|
end
|
15
|
+
|
17
16
|
end
|
18
17
|
end
|
19
18
|
end
|
data/lib/extr/engine.rb
CHANGED
@@ -1,34 +1,44 @@
|
|
1
1
|
module Extr
|
2
2
|
class Engine < Rails::Engine
|
3
3
|
|
4
|
-
initializer "
|
4
|
+
initializer "allow reloading of extdirect.yml file" do |app|
|
5
|
+
app.config.reload_classes_only_on_change = false if Rails.env.development?
|
6
|
+
end
|
5
7
|
|
8
|
+
config.to_prepare do
|
9
|
+
Rails.logger.info("Reload config from extdirect.yml file")
|
10
|
+
Config.initialize!
|
6
11
|
yaml_path = Rails.root.join("config", "extdirect.yml")
|
7
12
|
if File.exists? yaml_path
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
13
|
+
begin
|
14
|
+
YAML.load_file(yaml_path).each do |ns, klasses|
|
15
|
+
klasses.each do |klass,options|
|
16
|
+
action = options["name"] || klass.gsub("_","")
|
17
|
+
Config.controller_path[action]=klass.gsub("_","::").to_s
|
18
|
+
Config.controller_config[ns][action]= [] if Config.controller_config[ns][action].nil?
|
19
|
+
keys = ["methods","formHandler"]
|
20
|
+
|
21
|
+
(options.keys & keys).each do |key|
|
22
|
+
unless options[key].nil?
|
23
|
+
options[key].stringify_keys!.each do |mtd, mcfg|
|
24
|
+
method_hash = mcfg.is_a?(Hash) ? {'name' => mtd}.merge!(mcfg) : {'name' => mtd, 'len' => mcfg || 1}
|
25
|
+
method_hash[key]= true if key == "formHandler"
|
26
|
+
Config.controller_config[ns][action] << method_hash
|
27
|
+
end
|
28
|
+
end
|
29
|
+
#END KEY LOOP
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
24
33
|
end
|
25
|
-
|
26
|
-
|
34
|
+
rescue
|
35
|
+
Rails.logger.debug("Check your extdirect.yml file")
|
27
36
|
end
|
28
37
|
|
29
38
|
#END IF FILE
|
30
39
|
end
|
31
40
|
end
|
41
|
+
|
32
42
|
|
33
43
|
end
|
34
44
|
end
|
data/lib/extr/version.rb
CHANGED
data/readme.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
[](https://gemnasium.com/skeller1/extr)
|
2
2
|
[](http://stillmaintained.com/skeller1/extr)
|
3
3
|
[](https://codeclimate.com/github/skeller1/extr)
|
4
|
-
|
4
|
+
[](http://coderwall.com/skeller1)
|
5
5
|
# __ExtR__
|
6
6
|
|
7
7
|
|
@@ -194,7 +194,8 @@ It's now possible to use this Ext.Direct controller name in your scripts:
|
|
194
194
|
|
195
195
|
### Rake Task
|
196
196
|
|
197
|
-
|
197
|
+
rake app:routes:extr
|
198
|
+
rake routes:extr
|
198
199
|
|
199
200
|
This rake task allows you to control your extr config defined in `config/extdirect.yml`
|
200
201
|
|
Binary file
|
File without changes
|
@@ -30,3 +30,1586 @@ Connecting to database specified by database.yml
|
|
30
30
|
Connecting to database specified by database.yml
|
31
31
|
Connecting to database specified by database.yml
|
32
32
|
Connecting to database specified by database.yml
|
33
|
+
Connecting to database specified by database.yml
|
34
|
+
Connecting to database specified by database.yml
|
35
|
+
Connecting to database specified by database.yml
|
36
|
+
|
37
|
+
|
38
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:46:45 +0100
|
39
|
+
Connecting to database specified by database.yml
|
40
|
+
Processing by ProjectsController#index as HTML
|
41
|
+
Completed 500 Internal Server Error in 1ms
|
42
|
+
|
43
|
+
ActiveRecord::StatementInvalid (Could not find table 'projects'):
|
44
|
+
app/controllers/projects_controller.rb:18:in `index'
|
45
|
+
|
46
|
+
|
47
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
48
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
49
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.7ms)
|
50
|
+
Connecting to database specified by database.yml
|
51
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
52
|
+
[1m[35m (169.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
53
|
+
[1m[36m (146.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
54
|
+
[1m[35m (3.9ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
55
|
+
Migrating to CreateProjects (20111003211619)
|
56
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
58
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111003211619')[0m
|
59
|
+
[1m[35m (167.7ms)[0m commit transaction
|
60
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
61
|
+
|
62
|
+
|
63
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:47:58 +0100
|
64
|
+
Connecting to database specified by database.yml
|
65
|
+
Processing by ProjectsController#index as HTML
|
66
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
67
|
+
Rendered projects/index.html.erb within layouts/application (5.3ms)
|
68
|
+
Compiled profils.css (0ms) (pid 3859)
|
69
|
+
Compiled projects.css (0ms) (pid 3859)
|
70
|
+
Compiled scaffold.css (0ms) (pid 3859)
|
71
|
+
Compiled application.css (72ms) (pid 3859)
|
72
|
+
Completed 500 Internal Server Error in 182ms
|
73
|
+
|
74
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
75
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
76
|
+
3: <head>
|
77
|
+
4: <title>Extr</title>
|
78
|
+
5: <%= stylesheet_link_tag "application" %>
|
79
|
+
6: <%= javascript_include_tag "application" %>
|
80
|
+
7: <%= csrf_meta_tags %>
|
81
|
+
8:
|
82
|
+
9: <%= ext_base_tag %>
|
83
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
84
|
+
app/controllers/projects_controller.rb:19:in `index'
|
85
|
+
|
86
|
+
|
87
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms)
|
88
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
89
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.3ms)
|
90
|
+
|
91
|
+
|
92
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:25 +0100
|
93
|
+
Processing by ProjectsController#index as HTML
|
94
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
95
|
+
Rendered projects/index.html.erb within layouts/application (0.6ms)
|
96
|
+
Completed 500 Internal Server Error in 12ms
|
97
|
+
|
98
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
99
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
100
|
+
3: <head>
|
101
|
+
4: <title>Extr</title>
|
102
|
+
5: <%= stylesheet_link_tag "application" %>
|
103
|
+
6: <%= javascript_include_tag "application" %>
|
104
|
+
7: <%= csrf_meta_tags %>
|
105
|
+
8:
|
106
|
+
9: <%= ext_base_tag %>
|
107
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
108
|
+
app/controllers/projects_controller.rb:19:in `index'
|
109
|
+
|
110
|
+
|
111
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
112
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
113
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
|
114
|
+
|
115
|
+
|
116
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:26 +0100
|
117
|
+
Processing by ProjectsController#index as HTML
|
118
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
119
|
+
Rendered projects/index.html.erb within layouts/application (0.7ms)
|
120
|
+
Completed 500 Internal Server Error in 13ms
|
121
|
+
|
122
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
123
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
124
|
+
3: <head>
|
125
|
+
4: <title>Extr</title>
|
126
|
+
5: <%= stylesheet_link_tag "application" %>
|
127
|
+
6: <%= javascript_include_tag "application" %>
|
128
|
+
7: <%= csrf_meta_tags %>
|
129
|
+
8:
|
130
|
+
9: <%= ext_base_tag %>
|
131
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
132
|
+
app/controllers/projects_controller.rb:19:in `index'
|
133
|
+
|
134
|
+
|
135
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
136
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
137
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
|
138
|
+
|
139
|
+
|
140
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:26 +0100
|
141
|
+
Processing by ProjectsController#index as HTML
|
142
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
143
|
+
Rendered projects/index.html.erb within layouts/application (0.6ms)
|
144
|
+
Completed 500 Internal Server Error in 12ms
|
145
|
+
|
146
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
147
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
148
|
+
3: <head>
|
149
|
+
4: <title>Extr</title>
|
150
|
+
5: <%= stylesheet_link_tag "application" %>
|
151
|
+
6: <%= javascript_include_tag "application" %>
|
152
|
+
7: <%= csrf_meta_tags %>
|
153
|
+
8:
|
154
|
+
9: <%= ext_base_tag %>
|
155
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
156
|
+
app/controllers/projects_controller.rb:19:in `index'
|
157
|
+
|
158
|
+
|
159
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
160
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
161
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
|
162
|
+
|
163
|
+
|
164
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:27 +0100
|
165
|
+
Processing by ProjectsController#index as HTML
|
166
|
+
[1m[36mProject Load (0.8ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
167
|
+
Rendered projects/index.html.erb within layouts/application (0.6ms)
|
168
|
+
Completed 500 Internal Server Error in 13ms
|
169
|
+
|
170
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
171
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
172
|
+
3: <head>
|
173
|
+
4: <title>Extr</title>
|
174
|
+
5: <%= stylesheet_link_tag "application" %>
|
175
|
+
6: <%= javascript_include_tag "application" %>
|
176
|
+
7: <%= csrf_meta_tags %>
|
177
|
+
8:
|
178
|
+
9: <%= ext_base_tag %>
|
179
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
180
|
+
app/controllers/projects_controller.rb:19:in `index'
|
181
|
+
|
182
|
+
|
183
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
184
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
185
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
|
186
|
+
|
187
|
+
|
188
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:28 +0100
|
189
|
+
Processing by ProjectsController#index as HTML
|
190
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
191
|
+
Rendered projects/index.html.erb within layouts/application (0.6ms)
|
192
|
+
Completed 500 Internal Server Error in 12ms
|
193
|
+
|
194
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
195
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
196
|
+
3: <head>
|
197
|
+
4: <title>Extr</title>
|
198
|
+
5: <%= stylesheet_link_tag "application" %>
|
199
|
+
6: <%= javascript_include_tag "application" %>
|
200
|
+
7: <%= csrf_meta_tags %>
|
201
|
+
8:
|
202
|
+
9: <%= ext_base_tag %>
|
203
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
204
|
+
app/controllers/projects_controller.rb:19:in `index'
|
205
|
+
|
206
|
+
|
207
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
208
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
209
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
|
210
|
+
|
211
|
+
|
212
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:49:53 +0100
|
213
|
+
Processing by ProjectsController#index as HTML
|
214
|
+
[1m[36mProject Load (0.3ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
215
|
+
Rendered projects/index.html.erb within layouts/application (0.7ms)
|
216
|
+
Completed 500 Internal Server Error in 52ms
|
217
|
+
|
218
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
219
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
220
|
+
3: <head>
|
221
|
+
4: <title>Extr</title>
|
222
|
+
5: <%= stylesheet_link_tag "application" %>
|
223
|
+
6: <%= javascript_include_tag "application" %>
|
224
|
+
7: <%= csrf_meta_tags %>
|
225
|
+
8:
|
226
|
+
9: <%= ext_base_tag %>
|
227
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
228
|
+
app/controllers/projects_controller.rb:19:in `index'
|
229
|
+
|
230
|
+
|
231
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
232
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
233
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
|
234
|
+
|
235
|
+
|
236
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:49:54 +0100
|
237
|
+
Processing by ProjectsController#index as HTML
|
238
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
239
|
+
Rendered projects/index.html.erb within layouts/application (0.6ms)
|
240
|
+
Completed 500 Internal Server Error in 12ms
|
241
|
+
|
242
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
243
|
+
(in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
|
244
|
+
3: <head>
|
245
|
+
4: <title>Extr</title>
|
246
|
+
5: <%= stylesheet_link_tag "application" %>
|
247
|
+
6: <%= javascript_include_tag "application" %>
|
248
|
+
7: <%= csrf_meta_tags %>
|
249
|
+
8:
|
250
|
+
9: <%= ext_base_tag %>
|
251
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
|
252
|
+
app/controllers/projects_controller.rb:19:in `index'
|
253
|
+
|
254
|
+
|
255
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
256
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
257
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.7ms)
|
258
|
+
|
259
|
+
|
260
|
+
Started GET "/" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
|
261
|
+
Processing by ProjectsController#index as HTML
|
262
|
+
[1m[36mProject Load (0.3ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
263
|
+
Rendered projects/index.html.erb within layouts/application (0.6ms)
|
264
|
+
Compiled application.js (0ms) (pid 3859)
|
265
|
+
Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.3ms)
|
266
|
+
|
267
|
+
|
268
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
|
269
|
+
Served asset /application.css - 200 OK (11ms)
|
270
|
+
|
271
|
+
|
272
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
|
273
|
+
Served asset /profils.css - 200 OK (4ms)
|
274
|
+
|
275
|
+
|
276
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
|
277
|
+
Served asset /projects.css - 200 OK (2ms)
|
278
|
+
|
279
|
+
|
280
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
|
281
|
+
Served asset /scaffold.css - 200 OK (2ms)
|
282
|
+
|
283
|
+
|
284
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
|
285
|
+
Served asset /application.js - 200 OK (2ms)
|
286
|
+
|
287
|
+
|
288
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-02-07 00:50:16 +0100
|
289
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
290
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (5.5ms)
|
291
|
+
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
|
292
|
+
|
293
|
+
|
294
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-07 00:50:16 +0100
|
295
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
296
|
+
|
297
|
+
|
298
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:17 +0100
|
299
|
+
Processing by Extr::RouterController#direct as JSON
|
300
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
301
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
302
|
+
Parameters: {"data"=>[{"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
303
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
304
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
305
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
306
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
307
|
+
Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
308
|
+
|
309
|
+
|
310
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:18 +0100
|
311
|
+
Processing by Extr::RouterController#direct as JSON
|
312
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
313
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
314
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
315
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
316
|
+
Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
317
|
+
|
318
|
+
|
319
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:32 +0100
|
320
|
+
Processing by Extr::RouterController#direct as JSON
|
321
|
+
Parameters: {"extTID"=>"4", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>"34", "name"=>"Test name", "email"=>"test@company.com", "company"=>"Test company"}
|
322
|
+
Processing by ProfilsController#updateBasicInfo as JSON
|
323
|
+
Parameters: {"extTID"=>"4", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>"34", "name"=>"Test name", "email"=>"test@company.com", "company"=>"Test company"}
|
324
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
325
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
326
|
+
|
327
|
+
|
328
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:48 +0100
|
329
|
+
Processing by Extr::RouterController#direct as JSON
|
330
|
+
Parameters: {"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xb5aa5630 @original_filename="A1771.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"A1771.txt\"\r\nContent-Type: text/plain\r\n", @tempfile=#<File:/tmp/RackMultipart20130207-3859-kflnzx>>, "extTID"=>"5", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
|
331
|
+
Processing by ApplicationController#action3 as JSON
|
332
|
+
Parameters: {"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xb5aa5630 @original_filename="A1771.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"A1771.txt\"\r\nContent-Type: text/plain\r\n", @tempfile=#<File:/tmp/RackMultipart20130207-3859-kflnzx>>, "extTID"=>"5", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
|
333
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
334
|
+
Rendered inline template (0.6ms)
|
335
|
+
Completed 200 OK in 6ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
336
|
+
Connecting to database specified by database.yml
|
337
|
+
Connecting to database specified by database.yml
|
338
|
+
|
339
|
+
|
340
|
+
Started GET "/" for 127.0.0.1 at 2013-05-12 20:43:42 +0200
|
341
|
+
Connecting to database specified by database.yml
|
342
|
+
Processing by ProjectsController#index as HTML
|
343
|
+
[1m[36mProject Load (0.4ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
344
|
+
Rendered projects/index.html.erb within layouts/application (7.1ms)
|
345
|
+
Completed 200 OK in 163ms (Views: 159.9ms | ActiveRecord: 0.4ms)
|
346
|
+
|
347
|
+
|
348
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
|
349
|
+
Served asset /application.css - 200 OK (13ms)
|
350
|
+
|
351
|
+
|
352
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
|
353
|
+
Served asset /profils.css - 200 OK (2ms)
|
354
|
+
|
355
|
+
|
356
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
|
357
|
+
Served asset /projects.css - 200 OK (2ms)
|
358
|
+
|
359
|
+
|
360
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
|
361
|
+
Served asset /scaffold.css - 200 OK (2ms)
|
362
|
+
|
363
|
+
|
364
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
|
365
|
+
Served asset /application.js - 200 OK (2ms)
|
366
|
+
|
367
|
+
|
368
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:43:47 +0200
|
369
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
370
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (7.7ms)
|
371
|
+
Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
372
|
+
|
373
|
+
|
374
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:43:48 +0200
|
375
|
+
Processing by Extr::RouterController#direct as JSON
|
376
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
377
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
378
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
379
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
380
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
381
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
382
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
383
|
+
Completed 200 OK in 23ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
384
|
+
|
385
|
+
|
386
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:43:49 +0200
|
387
|
+
Processing by Extr::RouterController#direct as JSON
|
388
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
389
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
390
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
391
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
392
|
+
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
393
|
+
|
394
|
+
|
395
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:45:51 +0200
|
396
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
397
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.0ms)
|
398
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
399
|
+
|
400
|
+
|
401
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:45:54 +0200
|
402
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
403
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (39.9ms)
|
404
|
+
Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms)
|
405
|
+
|
406
|
+
|
407
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:45:57 +0200
|
408
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
409
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.1ms)
|
410
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
411
|
+
|
412
|
+
|
413
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:03 +0200
|
414
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
415
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.2ms)
|
416
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
417
|
+
|
418
|
+
|
419
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:04 +0200
|
420
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
421
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (3.9ms)
|
422
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
423
|
+
|
424
|
+
|
425
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:04 +0200
|
426
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
427
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (3.7ms)
|
428
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
429
|
+
|
430
|
+
|
431
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:05 +0200
|
432
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
433
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (3.8ms)
|
434
|
+
Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
435
|
+
|
436
|
+
|
437
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
|
438
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
439
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.2ms)
|
440
|
+
Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
441
|
+
|
442
|
+
|
443
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
|
444
|
+
Served asset /application.css - 304 Not Modified (4ms)
|
445
|
+
|
446
|
+
|
447
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
|
448
|
+
Served asset /profils.css - 304 Not Modified (0ms)
|
449
|
+
|
450
|
+
|
451
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
|
452
|
+
Served asset /projects.css - 304 Not Modified (0ms)
|
453
|
+
|
454
|
+
|
455
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
|
456
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
457
|
+
|
458
|
+
|
459
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
|
460
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
461
|
+
|
462
|
+
|
463
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:46:20 +0200
|
464
|
+
Processing by Extr::RouterController#direct as JSON
|
465
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
466
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
467
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
468
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
469
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
470
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
471
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
472
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
473
|
+
|
474
|
+
|
475
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:46:20 +0200
|
476
|
+
Processing by Extr::RouterController#direct as JSON
|
477
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
478
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
479
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
480
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
481
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
482
|
+
|
483
|
+
|
484
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
|
485
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
486
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (3.8ms)
|
487
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
488
|
+
|
489
|
+
|
490
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
|
491
|
+
Served asset /application.css - 304 Not Modified (8ms)
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
|
495
|
+
Served asset /profils.css - 304 Not Modified (0ms)
|
496
|
+
|
497
|
+
|
498
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
|
499
|
+
Served asset /projects.css - 304 Not Modified (0ms)
|
500
|
+
|
501
|
+
|
502
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
|
503
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
504
|
+
|
505
|
+
|
506
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
|
507
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
508
|
+
|
509
|
+
|
510
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:49:48 +0200
|
511
|
+
Processing by Extr::RouterController#direct as JSON
|
512
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
513
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
514
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
515
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
516
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
517
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
518
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
519
|
+
Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
520
|
+
|
521
|
+
|
522
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:49:48 +0200
|
523
|
+
Processing by Extr::RouterController#direct as JSON
|
524
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
525
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
526
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
527
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
528
|
+
Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
529
|
+
|
530
|
+
|
531
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:50:09 +0200
|
532
|
+
Connecting to database specified by database.yml
|
533
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
534
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.1ms)
|
535
|
+
Completed 200 OK in 70ms (Views: 69.3ms | ActiveRecord: 0.0ms)
|
536
|
+
|
537
|
+
|
538
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
|
539
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
540
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
541
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
542
|
+
|
543
|
+
|
544
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
|
545
|
+
Served asset /application.css - 304 Not Modified (21ms)
|
546
|
+
|
547
|
+
|
548
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
|
549
|
+
Served asset /projects.css - 304 Not Modified (2ms)
|
550
|
+
|
551
|
+
|
552
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
|
553
|
+
Served asset /profils.css - 304 Not Modified (2ms)
|
554
|
+
|
555
|
+
|
556
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
|
557
|
+
Served asset /scaffold.css - 304 Not Modified (2ms)
|
558
|
+
|
559
|
+
|
560
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
|
561
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
562
|
+
|
563
|
+
|
564
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:51:44 +0200
|
565
|
+
Processing by Extr::RouterController#direct as JSON
|
566
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
567
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
568
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
569
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
570
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
571
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
572
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
573
|
+
Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
574
|
+
|
575
|
+
|
576
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:51:44 +0200
|
577
|
+
Processing by Extr::RouterController#direct as JSON
|
578
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
579
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
580
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
581
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
582
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
583
|
+
|
584
|
+
|
585
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:52:03 +0200
|
586
|
+
Connecting to database specified by database.yml
|
587
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
588
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
|
589
|
+
Completed 200 OK in 72ms (Views: 71.3ms | ActiveRecord: 0.0ms)
|
590
|
+
|
591
|
+
|
592
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
|
593
|
+
Served asset /application.css - 304 Not Modified (70ms)
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
|
597
|
+
Served asset /profils.css - 304 Not Modified (2ms)
|
598
|
+
|
599
|
+
|
600
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
|
601
|
+
Served asset /projects.css - 304 Not Modified (3ms)
|
602
|
+
|
603
|
+
|
604
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
|
605
|
+
Served asset /scaffold.css - 304 Not Modified (5ms)
|
606
|
+
|
607
|
+
|
608
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
|
609
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
610
|
+
|
611
|
+
|
612
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:05 +0200
|
613
|
+
Processing by Extr::RouterController#direct as JSON
|
614
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
615
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
616
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
617
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
618
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
619
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
620
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
621
|
+
Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
622
|
+
|
623
|
+
|
624
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:05 +0200
|
625
|
+
Processing by Extr::RouterController#direct as JSON
|
626
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
627
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
628
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
629
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
630
|
+
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
631
|
+
|
632
|
+
|
633
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
|
634
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
635
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
636
|
+
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
637
|
+
|
638
|
+
|
639
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
|
640
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
641
|
+
|
642
|
+
|
643
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
|
644
|
+
Served asset /profils.css - 304 Not Modified (0ms)
|
645
|
+
|
646
|
+
|
647
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
|
648
|
+
Served asset /projects.css - 304 Not Modified (0ms)
|
649
|
+
|
650
|
+
|
651
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
|
652
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
653
|
+
|
654
|
+
|
655
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
|
656
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
657
|
+
|
658
|
+
|
659
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:28 +0200
|
660
|
+
Processing by Extr::RouterController#direct as JSON
|
661
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
662
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
663
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
664
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
665
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
666
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
667
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
668
|
+
Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
669
|
+
|
670
|
+
|
671
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:28 +0200
|
672
|
+
Processing by Extr::RouterController#direct as JSON
|
673
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
674
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
675
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
676
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
677
|
+
Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
678
|
+
|
679
|
+
|
680
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
|
681
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
682
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.2ms)
|
683
|
+
Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
684
|
+
|
685
|
+
|
686
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
|
687
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
688
|
+
|
689
|
+
|
690
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
|
691
|
+
Served asset /profils.css - 304 Not Modified (0ms)
|
692
|
+
|
693
|
+
|
694
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
|
695
|
+
Served asset /projects.css - 304 Not Modified (0ms)
|
696
|
+
|
697
|
+
|
698
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
|
699
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
700
|
+
|
701
|
+
|
702
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
|
703
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
704
|
+
|
705
|
+
|
706
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:55:48 +0200
|
707
|
+
Processing by Extr::RouterController#direct as JSON
|
708
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
709
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
710
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
711
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
712
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
713
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
714
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
715
|
+
Completed 200 OK in 43ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
716
|
+
|
717
|
+
|
718
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:55:48 +0200
|
719
|
+
Processing by Extr::RouterController#direct as JSON
|
720
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
721
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
722
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
723
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
724
|
+
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
725
|
+
|
726
|
+
|
727
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:58:27 +0200
|
728
|
+
Connecting to database specified by database.yml
|
729
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
730
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (11.2ms)
|
731
|
+
Completed 200 OK in 73ms (Views: 72.2ms | ActiveRecord: 0.0ms)
|
732
|
+
|
733
|
+
|
734
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
|
735
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
736
|
+
|
737
|
+
|
738
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
|
739
|
+
Served asset /profils.css - 304 Not Modified (2ms)
|
740
|
+
|
741
|
+
|
742
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
|
743
|
+
Served asset /projects.css - 304 Not Modified (2ms)
|
744
|
+
|
745
|
+
|
746
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
|
747
|
+
Served asset /scaffold.css - 304 Not Modified (2ms)
|
748
|
+
|
749
|
+
|
750
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
|
751
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
752
|
+
|
753
|
+
|
754
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:58:29 +0200
|
755
|
+
Processing by Extr::RouterController#direct as JSON
|
756
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
757
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
758
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
759
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
760
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
761
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
762
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
763
|
+
Completed 200 OK in 27ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
764
|
+
|
765
|
+
|
766
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:58:29 +0200
|
767
|
+
Processing by Extr::RouterController#direct as JSON
|
768
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
769
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
770
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
771
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
772
|
+
Completed 200 OK in 53ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
773
|
+
|
774
|
+
|
775
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:03 +0200
|
776
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
777
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (20.8ms)
|
778
|
+
Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms)
|
779
|
+
|
780
|
+
|
781
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:05 +0200
|
782
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
783
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (22.5ms)
|
784
|
+
Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms)
|
785
|
+
|
786
|
+
|
787
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:07 +0200
|
788
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
789
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (66.1ms)
|
790
|
+
Completed 200 OK in 73ms (Views: 72.4ms | ActiveRecord: 0.0ms)
|
791
|
+
|
792
|
+
|
793
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:08 +0200
|
794
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
795
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (29.0ms)
|
796
|
+
Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.0ms)
|
797
|
+
|
798
|
+
|
799
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:09 +0200
|
800
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
801
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (28.2ms)
|
802
|
+
Completed 200 OK in 34ms (Views: 33.9ms | ActiveRecord: 0.0ms)
|
803
|
+
|
804
|
+
|
805
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:10 +0200
|
806
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
807
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (72.9ms)
|
808
|
+
Completed 200 OK in 79ms (Views: 79.0ms | ActiveRecord: 0.0ms)
|
809
|
+
|
810
|
+
|
811
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:11 +0200
|
812
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
813
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (32.0ms)
|
814
|
+
Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
|
815
|
+
|
816
|
+
|
817
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:12 +0200
|
818
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
819
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (34.2ms)
|
820
|
+
Completed 200 OK in 41ms (Views: 40.1ms | ActiveRecord: 0.0ms)
|
821
|
+
|
822
|
+
|
823
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:12 +0200
|
824
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
825
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (36.8ms)
|
826
|
+
Completed 200 OK in 43ms (Views: 42.9ms | ActiveRecord: 0.0ms)
|
827
|
+
|
828
|
+
|
829
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:13 +0200
|
830
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
831
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (38.0ms)
|
832
|
+
Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms)
|
833
|
+
|
834
|
+
|
835
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:14 +0200
|
836
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
837
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (39.9ms)
|
838
|
+
Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.0ms)
|
839
|
+
|
840
|
+
|
841
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:14 +0200
|
842
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
843
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (42.3ms)
|
844
|
+
Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.0ms)
|
845
|
+
|
846
|
+
|
847
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:15 +0200
|
848
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
849
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (43.4ms)
|
850
|
+
Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.0ms)
|
851
|
+
|
852
|
+
|
853
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:15 +0200
|
854
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
855
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (88.2ms)
|
856
|
+
Completed 200 OK in 95ms (Views: 94.0ms | ActiveRecord: 0.0ms)
|
857
|
+
|
858
|
+
|
859
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:00:16 +0200
|
860
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
861
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (47.3ms)
|
862
|
+
Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 0.0ms)
|
863
|
+
|
864
|
+
|
865
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:00:43 +0200
|
866
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
867
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (49.5ms)
|
868
|
+
Completed 200 OK in 101ms (Views: 100.9ms | ActiveRecord: 0.0ms)
|
869
|
+
|
870
|
+
|
871
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:01:01 +0200
|
872
|
+
Connecting to database specified by database.yml
|
873
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
874
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (11.1ms)
|
875
|
+
Completed 200 OK in 72ms (Views: 71.7ms | ActiveRecord: 0.0ms)
|
876
|
+
|
877
|
+
|
878
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:01:06 +0200
|
879
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
880
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (8.3ms)
|
881
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
882
|
+
|
883
|
+
|
884
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:04:36 +0200
|
885
|
+
Connecting to database specified by database.yml
|
886
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
887
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.3ms)
|
888
|
+
Completed 200 OK in 71ms (Views: 70.0ms | ActiveRecord: 0.0ms)
|
889
|
+
|
890
|
+
|
891
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:04:52 +0200
|
892
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
893
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
894
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
895
|
+
|
896
|
+
|
897
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:05:05 +0200
|
898
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
899
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.3ms)
|
900
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
901
|
+
|
902
|
+
|
903
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:05:06 +0200
|
904
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
905
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
906
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
907
|
+
|
908
|
+
|
909
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:05:51 +0200
|
910
|
+
Connecting to database specified by database.yml
|
911
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
912
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
|
913
|
+
Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
|
914
|
+
|
915
|
+
|
916
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:06 +0200
|
917
|
+
Connecting to database specified by database.yml
|
918
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
919
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.5ms)
|
920
|
+
Compiled profils.css (0ms) (pid 3859)
|
921
|
+
Compiled projects.css (0ms) (pid 3859)
|
922
|
+
Compiled scaffold.css (0ms) (pid 3859)
|
923
|
+
Compiled application.css (10ms) (pid 3859)
|
924
|
+
Compiled application.js (0ms) (pid 3859)
|
925
|
+
Completed 200 OK in 96ms (Views: 95.8ms | ActiveRecord: 0.0ms)
|
926
|
+
|
927
|
+
|
928
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
|
929
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
930
|
+
|
931
|
+
|
932
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
|
933
|
+
Served asset /profils.css - 304 Not Modified (2ms)
|
934
|
+
|
935
|
+
|
936
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
|
937
|
+
Served asset /projects.css - 304 Not Modified (42ms)
|
938
|
+
|
939
|
+
|
940
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
|
941
|
+
Served asset /scaffold.css - 304 Not Modified (2ms)
|
942
|
+
|
943
|
+
|
944
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
|
945
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
946
|
+
|
947
|
+
|
948
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:12:08 +0200
|
949
|
+
Processing by Extr::RouterController#direct as JSON
|
950
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
951
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
952
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
953
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
954
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
955
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
956
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
957
|
+
Completed 200 OK in 26ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
958
|
+
|
959
|
+
|
960
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:12:08 +0200
|
961
|
+
Processing by Extr::RouterController#direct as JSON
|
962
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
963
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
964
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
965
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
966
|
+
Completed 200 OK in 54ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
967
|
+
|
968
|
+
|
969
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:12 +0200
|
970
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
971
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
972
|
+
Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
973
|
+
|
974
|
+
|
975
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:13 +0200
|
976
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
977
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
978
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
979
|
+
|
980
|
+
|
981
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
|
982
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
983
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
984
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
985
|
+
|
986
|
+
|
987
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
|
988
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
989
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.8ms)
|
990
|
+
Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.0ms)
|
991
|
+
|
992
|
+
|
993
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
|
994
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
995
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
996
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
997
|
+
|
998
|
+
|
999
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
|
1000
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1001
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
|
1002
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1003
|
+
|
1004
|
+
|
1005
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:33 +0200
|
1006
|
+
|
1007
|
+
NoMethodError (undefined method `each' for false:FalseClass):
|
1008
|
+
/home/neo/Projekte/extr/lib/extr/engine.rb:11:in `block in <class:Engine>'
|
1009
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:418:in `_run__782849328__prepare__380549324__callbacks'
|
1010
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1011
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_prepare_callbacks'
|
1012
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1013
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
|
1014
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1015
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1016
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1017
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1018
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1019
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1020
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1021
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1022
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1023
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1024
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1025
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1026
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1027
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1028
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1029
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1030
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1031
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1032
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1033
|
+
/home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1034
|
+
/home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1035
|
+
/home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1036
|
+
|
1037
|
+
|
1038
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
|
1039
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
|
1040
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.0ms)
|
1041
|
+
|
1042
|
+
|
1043
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:52 +0200
|
1044
|
+
|
1045
|
+
NoMethodError (undefined method `each' for false:FalseClass):
|
1046
|
+
/home/neo/Projekte/extr/lib/extr/engine.rb:11:in `block in <class:Engine>'
|
1047
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:418:in `_run__782849328__prepare__380549324__callbacks'
|
1048
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1049
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_prepare_callbacks'
|
1050
|
+
activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1051
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
|
1052
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1053
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1054
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1055
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1056
|
+
railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
|
1057
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
|
1058
|
+
activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1059
|
+
railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
|
1060
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1061
|
+
rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
|
1062
|
+
rack (1.4.4) lib/rack/runtime.rb:17:in `call'
|
1063
|
+
activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1064
|
+
rack (1.4.4) lib/rack/lock.rb:15:in `call'
|
1065
|
+
actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1066
|
+
railties (3.2.11) lib/rails/engine.rb:479:in `call'
|
1067
|
+
railties (3.2.11) lib/rails/application.rb:223:in `call'
|
1068
|
+
rack (1.4.4) lib/rack/content_length.rb:14:in `call'
|
1069
|
+
railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
|
1070
|
+
rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
|
1071
|
+
/home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1072
|
+
/home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1073
|
+
/home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1074
|
+
|
1075
|
+
|
1076
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
1077
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
1078
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms)
|
1079
|
+
Check your extdirect.yml file
|
1080
|
+
|
1081
|
+
|
1082
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:19:43 +0200
|
1083
|
+
Check your extdirect.yml file
|
1084
|
+
Connecting to database specified by database.yml
|
1085
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1086
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (6.4ms)
|
1087
|
+
Completed 200 OK in 67ms (Views: 66.8ms | ActiveRecord: 0.0ms)
|
1088
|
+
|
1089
|
+
|
1090
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
|
1091
|
+
Check your extdirect.yml file
|
1092
|
+
Served asset /application.css - 304 Not Modified (81ms)
|
1093
|
+
|
1094
|
+
|
1095
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
|
1096
|
+
Check your extdirect.yml file
|
1097
|
+
Served asset /profils.css - 304 Not Modified (5ms)
|
1098
|
+
|
1099
|
+
|
1100
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
|
1101
|
+
Check your extdirect.yml file
|
1102
|
+
Served asset /scaffold.css - 304 Not Modified (3ms)
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
|
1106
|
+
Check your extdirect.yml file
|
1107
|
+
Served asset /projects.css - 304 Not Modified (4ms)
|
1108
|
+
|
1109
|
+
|
1110
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
|
1111
|
+
Check your extdirect.yml file
|
1112
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
1113
|
+
|
1114
|
+
|
1115
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:21:02 +0200
|
1116
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1117
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.8ms)
|
1118
|
+
Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
|
1119
|
+
|
1120
|
+
|
1121
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
|
1122
|
+
Served asset /application.css - 304 Not Modified (12ms)
|
1123
|
+
|
1124
|
+
|
1125
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
|
1126
|
+
Served asset /profils.css - 304 Not Modified (0ms)
|
1127
|
+
|
1128
|
+
|
1129
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
|
1130
|
+
Served asset /projects.css - 304 Not Modified (0ms)
|
1131
|
+
|
1132
|
+
|
1133
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
|
1134
|
+
Served asset /scaffold.css - 304 Not Modified (0ms)
|
1135
|
+
|
1136
|
+
|
1137
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
|
1138
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
1139
|
+
|
1140
|
+
|
1141
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:21:04 +0200
|
1142
|
+
Processing by Extr::RouterController#direct as JSON
|
1143
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
1144
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
1145
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
1146
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1147
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
1148
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
1149
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1150
|
+
Completed 200 OK in 74ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:21:04 +0200
|
1154
|
+
Processing by Extr::RouterController#direct as JSON
|
1155
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
1156
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
1157
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
1158
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1159
|
+
Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
1160
|
+
|
1161
|
+
|
1162
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:21:42 +0200
|
1163
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1164
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1165
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
1166
|
+
|
1167
|
+
|
1168
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:21:44 +0200
|
1169
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1170
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1171
|
+
Completed 200 OK in 48ms (Views: 47.6ms | ActiveRecord: 0.0ms)
|
1172
|
+
|
1173
|
+
|
1174
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:05 +0200
|
1175
|
+
Connecting to database specified by database.yml
|
1176
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1177
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.6ms)
|
1178
|
+
Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
|
1179
|
+
|
1180
|
+
|
1181
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
|
1182
|
+
Served asset /application.css - 304 Not Modified (10ms)
|
1183
|
+
|
1184
|
+
|
1185
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
|
1186
|
+
Served asset /profils.css - 304 Not Modified (2ms)
|
1187
|
+
|
1188
|
+
|
1189
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
|
1190
|
+
Served asset /projects.css - 304 Not Modified (2ms)
|
1191
|
+
|
1192
|
+
|
1193
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
|
1194
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
1195
|
+
|
1196
|
+
|
1197
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
|
1198
|
+
Served asset /scaffold.css - 304 Not Modified (2ms)
|
1199
|
+
|
1200
|
+
|
1201
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:07 +0200
|
1202
|
+
Processing by Extr::RouterController#direct as JSON
|
1203
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
1204
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
1205
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
1206
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1207
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
1208
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
1209
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1210
|
+
Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1211
|
+
|
1212
|
+
|
1213
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:08 +0200
|
1214
|
+
Processing by Extr::RouterController#direct as JSON
|
1215
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
1216
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
1217
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
1218
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1219
|
+
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
1220
|
+
|
1221
|
+
|
1222
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:10 +0200
|
1223
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1224
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (5.0ms)
|
1225
|
+
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
1226
|
+
|
1227
|
+
|
1228
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
|
1229
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
1230
|
+
|
1231
|
+
|
1232
|
+
Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
|
1233
|
+
Served asset /profils.css - 304 Not Modified (0ms)
|
1234
|
+
|
1235
|
+
|
1236
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
|
1237
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
1238
|
+
|
1239
|
+
|
1240
|
+
Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
|
1241
|
+
Served asset /projects.css - 304 Not Modified (0ms)
|
1242
|
+
|
1243
|
+
|
1244
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
|
1245
|
+
Served asset /scaffold.css - 304 Not Modified (1ms)
|
1246
|
+
|
1247
|
+
|
1248
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:12 +0200
|
1249
|
+
Processing by Extr::RouterController#direct as JSON
|
1250
|
+
Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
|
1251
|
+
Processing by ProfilsController#getBasicInfo as JSON
|
1252
|
+
Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
|
1253
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1254
|
+
Processing by ProfilsController#getPhoneInfo as JSON
|
1255
|
+
Parameters: {"data"=>[{"uid"=>5}]}
|
1256
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1257
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1258
|
+
|
1259
|
+
|
1260
|
+
Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:12 +0200
|
1261
|
+
Processing by Extr::RouterController#direct as JSON
|
1262
|
+
Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
|
1263
|
+
Processing by ProfilsController#getLocationInfo as JSON
|
1264
|
+
Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
|
1265
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1266
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1267
|
+
|
1268
|
+
|
1269
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:13 +0200
|
1270
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1271
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1272
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
1273
|
+
|
1274
|
+
|
1275
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:15 +0200
|
1276
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1277
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (42.7ms)
|
1278
|
+
Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.0ms)
|
1279
|
+
|
1280
|
+
|
1281
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:28 +0200
|
1282
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1283
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
1284
|
+
Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1285
|
+
|
1286
|
+
|
1287
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:30 +0200
|
1288
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1289
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.7ms)
|
1290
|
+
Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1291
|
+
|
1292
|
+
|
1293
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:31 +0200
|
1294
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1295
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
|
1296
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1297
|
+
|
1298
|
+
|
1299
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:31 +0200
|
1300
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1301
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
1302
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
1303
|
+
|
1304
|
+
|
1305
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:55 +0200
|
1306
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1307
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
|
1308
|
+
Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1309
|
+
|
1310
|
+
|
1311
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:57 +0200
|
1312
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1313
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
1314
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1315
|
+
|
1316
|
+
|
1317
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:57 +0200
|
1318
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1319
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
|
1320
|
+
Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1321
|
+
|
1322
|
+
|
1323
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:08 +0200
|
1324
|
+
Connecting to database specified by database.yml
|
1325
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1326
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.5ms)
|
1327
|
+
Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
|
1328
|
+
|
1329
|
+
|
1330
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:11 +0200
|
1331
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1332
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
1333
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1334
|
+
|
1335
|
+
|
1336
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:12 +0200
|
1337
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1338
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1339
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1340
|
+
|
1341
|
+
|
1342
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:21 +0200
|
1343
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1344
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1345
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
1346
|
+
|
1347
|
+
|
1348
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:25:48 +0200
|
1349
|
+
Connecting to database specified by database.yml
|
1350
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1351
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
|
1352
|
+
Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
|
1353
|
+
|
1354
|
+
|
1355
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:01 +0200
|
1356
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1357
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.9ms)
|
1358
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
1359
|
+
|
1360
|
+
|
1361
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:04 +0200
|
1362
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1363
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1364
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
1365
|
+
|
1366
|
+
|
1367
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:05 +0200
|
1368
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1369
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (38.1ms)
|
1370
|
+
Completed 200 OK in 44ms (Views: 43.5ms | ActiveRecord: 0.0ms)
|
1371
|
+
|
1372
|
+
|
1373
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:06 +0200
|
1374
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1375
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1376
|
+
Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1377
|
+
|
1378
|
+
|
1379
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:19 +0200
|
1380
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1381
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.9ms)
|
1382
|
+
Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1383
|
+
|
1384
|
+
|
1385
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:20 +0200
|
1386
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1387
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.8ms)
|
1388
|
+
Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1389
|
+
|
1390
|
+
|
1391
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:23 +0200
|
1392
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1393
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (8.5ms)
|
1394
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
1395
|
+
|
1396
|
+
|
1397
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:44 +0200
|
1398
|
+
Connecting to database specified by database.yml
|
1399
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1400
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.3ms)
|
1401
|
+
Completed 200 OK in 70ms (Views: 69.7ms | ActiveRecord: 0.0ms)
|
1402
|
+
|
1403
|
+
|
1404
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:57 +0200
|
1405
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1406
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (5.8ms)
|
1407
|
+
Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
1408
|
+
|
1409
|
+
|
1410
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:27:00 +0200
|
1411
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1412
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
1413
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
1414
|
+
|
1415
|
+
|
1416
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:27:01 +0200
|
1417
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1418
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
|
1419
|
+
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
1420
|
+
|
1421
|
+
|
1422
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:27:02 +0200
|
1423
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1424
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1425
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
1426
|
+
|
1427
|
+
|
1428
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:06 +0200
|
1429
|
+
Connecting to database specified by database.yml
|
1430
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1431
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.9ms)
|
1432
|
+
Completed 200 OK in 70ms (Views: 69.0ms | ActiveRecord: 0.0ms)
|
1433
|
+
|
1434
|
+
|
1435
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:09 +0200
|
1436
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1437
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.7ms)
|
1438
|
+
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
|
1439
|
+
|
1440
|
+
|
1441
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:18 +0200
|
1442
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1443
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1444
|
+
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1445
|
+
|
1446
|
+
|
1447
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:19 +0200
|
1448
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1449
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1450
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1451
|
+
|
1452
|
+
|
1453
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:20 +0200
|
1454
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1455
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1456
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1457
|
+
|
1458
|
+
|
1459
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:21 +0200
|
1460
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1461
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1462
|
+
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1463
|
+
|
1464
|
+
|
1465
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:21 +0200
|
1466
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1467
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1468
|
+
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1469
|
+
|
1470
|
+
|
1471
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:22 +0200
|
1472
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1473
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1474
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1475
|
+
|
1476
|
+
|
1477
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:23 +0200
|
1478
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1479
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1480
|
+
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
1481
|
+
|
1482
|
+
|
1483
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:32 +0200
|
1484
|
+
Connecting to database specified by database.yml
|
1485
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1486
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (11.4ms)
|
1487
|
+
Completed 200 OK in 71ms (Views: 70.8ms | ActiveRecord: 0.0ms)
|
1488
|
+
|
1489
|
+
|
1490
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:37 +0200
|
1491
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1492
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (8.6ms)
|
1493
|
+
Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
|
1494
|
+
|
1495
|
+
|
1496
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:39 +0200
|
1497
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1498
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (10.5ms)
|
1499
|
+
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
|
1500
|
+
|
1501
|
+
|
1502
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:40 +0200
|
1503
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1504
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (12.9ms)
|
1505
|
+
Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms)
|
1506
|
+
|
1507
|
+
|
1508
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:08 +0200
|
1509
|
+
Connecting to database specified by database.yml
|
1510
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1511
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (11.6ms)
|
1512
|
+
Completed 200 OK in 72ms (Views: 71.6ms | ActiveRecord: 0.0ms)
|
1513
|
+
|
1514
|
+
|
1515
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:15 +0200
|
1516
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1517
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (8.5ms)
|
1518
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
1519
|
+
|
1520
|
+
|
1521
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:17 +0200
|
1522
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1523
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (10.5ms)
|
1524
|
+
Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
|
1525
|
+
|
1526
|
+
|
1527
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:18 +0200
|
1528
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1529
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (12.5ms)
|
1530
|
+
Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms)
|
1531
|
+
|
1532
|
+
|
1533
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:38 +0200
|
1534
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1535
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (53.9ms)
|
1536
|
+
Completed 200 OK in 61ms (Views: 60.0ms | ActiveRecord: 0.0ms)
|
1537
|
+
|
1538
|
+
|
1539
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:53 +0200
|
1540
|
+
Connecting to database specified by database.yml
|
1541
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1542
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.3ms)
|
1543
|
+
Completed 200 OK in 70ms (Views: 69.7ms | ActiveRecord: 0.0ms)
|
1544
|
+
|
1545
|
+
|
1546
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:58 +0200
|
1547
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1548
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
|
1549
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
1550
|
+
|
1551
|
+
|
1552
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:59 +0200
|
1553
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1554
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1555
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
1556
|
+
Check your extdirect.yml file
|
1557
|
+
|
1558
|
+
|
1559
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:53:01 +0200
|
1560
|
+
Check your extdirect.yml file
|
1561
|
+
Connecting to database specified by database.yml
|
1562
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1563
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (42.6ms)
|
1564
|
+
Completed 500 Internal Server Error in 91ms
|
1565
|
+
|
1566
|
+
ActionView::Template::Error (undefined method `each' for nil:NilClass):
|
1567
|
+
2:
|
1568
|
+
3: <%= stylesheet_link_tag "http://cdn.sencha.io/ext-4.1.0-gpl/resources/css/ext-all.css" %>
|
1569
|
+
4: <%= javascript_include_tag "http://cdn.sencha.io/ext-4.1.0-gpl/ext-all.js" %>
|
1570
|
+
5: <%= ext_direct_provider %>
|
1571
|
+
6:
|
1572
|
+
7: <% end %>
|
1573
|
+
8:
|
1574
|
+
app/views/projects/rpcextjs410.html.erb:5:in `block in _app_views_projects_rpcextjs____html_erb__1020544586_88785170'
|
1575
|
+
app/views/projects/rpcextjs410.html.erb:1:in `_app_views_projects_rpcextjs____html_erb__1020544586_88785170'
|
1576
|
+
|
1577
|
+
|
1578
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
|
1579
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
1580
|
+
Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.3ms)
|
1581
|
+
|
1582
|
+
|
1583
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:57:45 +0200
|
1584
|
+
Connecting to database specified by database.yml
|
1585
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1586
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (10.1ms)
|
1587
|
+
Completed 200 OK in 72ms (Views: 71.3ms | ActiveRecord: 0.0ms)
|
1588
|
+
|
1589
|
+
|
1590
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:57:50 +0200
|
1591
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1592
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
|
1593
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
1594
|
+
|
1595
|
+
|
1596
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:59:37 +0200
|
1597
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1598
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
|
1599
|
+
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
1600
|
+
Reload config from extdirect.yml file
|
1601
|
+
|
1602
|
+
|
1603
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:59:50 +0200
|
1604
|
+
Reload config from extdirect.yml file
|
1605
|
+
Connecting to database specified by database.yml
|
1606
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1607
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
|
1608
|
+
Completed 200 OK in 70ms (Views: 69.2ms | ActiveRecord: 0.0ms)
|
1609
|
+
|
1610
|
+
|
1611
|
+
Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 22:00:03 +0200
|
1612
|
+
Reload config from extdirect.yml file
|
1613
|
+
Processing by ProjectsController#rpcextjs410 as HTML
|
1614
|
+
Rendered projects/rpcextjs410.html.erb within layouts/application (4.7ms)
|
1615
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|