mxit-rails 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +62 -19
- data/app/assets/images/mxit_rails/emoticons.png +0 -0
- data/app/assets/javascripts/mxit_rails/emulator.js +22 -15
- data/app/assets/stylesheets/mxit_rails/emulator.css.scss +13 -2
- data/app/assets/stylesheets/mxit_rails/included.css.scss +53 -0
- data/app/helpers/mxit_rails_helper.rb +1 -1
- data/app/views/emulator/index.html.erb +39 -25
- data/app/views/layouts/mxit.html.erb +5 -4
- data/lib/mxit_rails/engine.rb +3 -0
- data/lib/mxit_rails/page.rb +66 -3
- data/lib/mxit_rails/styles.rb +54 -4
- data/lib/mxit_rails/version.rb +1 -1
- data/test/dummy/app/views/form/index/age.html.erb +1 -1
- data/test/dummy/app/views/form/index/done.html.erb +1 -1
- data/test/dummy/app/views/form/index/gender.html.erb +1 -1
- data/test/dummy/app/views/form/index/name.html.erb +1 -1
- data/test/dummy/app/views/form/index/start.html.erb +1 -1
- data/test/dummy/app/views/form/index/surname.html.erb +1 -1
- data/test/dummy/app/views/index/index.html.erb +2 -7
- data/test/dummy/app/views/welcome/easter_egg.html.erb +1 -1
- data/test/dummy/app/views/welcome/index.html.erb +1 -1
- data/test/dummy/log/development.log +3085 -0
- data/test/dummy/tmp/cache/assets/CE2/D30/sprockets%2Fd3a004deb91b48186689a96981c6b02b +0 -0
- data/test/dummy/tmp/cache/assets/CEA/D60/sprockets%2Fdf3c6b2c7584552f8929860e75cb0a51 +0 -0
- data/test/dummy/tmp/cache/assets/D03/D30/sprockets%2F039aef99b893884717dd47cbd5a47788 +0 -0
- data/test/dummy/tmp/cache/assets/D54/750/sprockets%2Fc16371b1a234c7c56cb01cb28a8bc5c3 +0 -0
- data/test/dummy/tmp/cache/assets/D5B/540/sprockets%2Fe0e490354c54e5a850a6e3c3aa1ecb15 +0 -0
- data/test/dummy/tmp/cache/assets/D6F/560/sprockets%2Fa572b066d908bae0d01dbc85f86a57d9 +0 -0
- data/test/dummy/tmp/cache/assets/DAA/B80/sprockets%2Ff8082150f8c8beafcd445cc79a9a6a85 +0 -0
- data/test/dummy/tmp/cache/assets/DFB/940/sprockets%2F2faff4be90929be6a1b1de49ea25e33b +0 -0
- data/test/dummy/tmp/cache/assets/E15/260/sprockets%2Fea9c788716af4ccb19ff8e1d7ea47b8e +0 -0
- data/test/dummy/tmp/cache/assets/E26/4F0/sprockets%2F1cd8dafcb93f36aea8c2cf9d04c322d3 +0 -0
- data/test/dummy/tmp/cache/assets/E4F/E70/sprockets%2Fd9fffd76ac7c8ee08bedf3e257c81f99 +0 -0
- metadata +7 -4
- data/test/dummy/tmp/pids/server.pid +0 -1
data/lib/mxit_rails/page.rb
CHANGED
@@ -39,12 +39,63 @@ module MxitRails
|
|
39
39
|
|
40
40
|
def get_mxit_info
|
41
41
|
@_mxit_params = {}
|
42
|
-
@_mxit_params[:mxit_id] = get_mxit_header_field 'X-Mxit-
|
42
|
+
@_mxit_params[:mxit_id] = get_mxit_header_field 'X-Mxit-USERID-R'
|
43
43
|
@_mxit_params[:mxit_login] = get_mxit_header_field('X-Mxit-Login') || get_mxit_header_field('X-Mxit-ID-R')
|
44
|
+
|
44
45
|
@_mxit_params[:display_name] = get_mxit_header_field 'X-Mxit-Nick'
|
46
|
+
@_mxit_params[:nick] = @_mxit_params[:display_name]
|
47
|
+
|
48
|
+
screen_size = get_mxit_header_field 'UA-Pixels'
|
49
|
+
unless screen_size.blank?
|
50
|
+
screen_size = screen_size.split 'x'
|
51
|
+
@_mxit_params[:screen_width] = screen_size[0].to_i
|
52
|
+
@_mxit_params[:screen_height] = screen_size[1].to_i
|
53
|
+
end
|
54
|
+
@_mxit_params[:device_user_agent] = get_mxit_header_field 'X-Device-User-Agent'
|
55
|
+
# TODO: Split this into useful subcomponents
|
56
|
+
|
57
|
+
@_mxit_params[:contact] = get_mxit_header_field 'X-Mxit-Contact'
|
58
|
+
@_mxit_params[:location] = get_mxit_header_field 'X-Mxit-Location'
|
59
|
+
location = @_mxit_params[:location]
|
60
|
+
unless location.blank?
|
61
|
+
location = location.split ','
|
62
|
+
@_mxit_params[:country_code] = location[0] #ISO 3166-1 alpha-2 Country Code
|
63
|
+
@_mxit_params[:country_name] = location[1]
|
64
|
+
@_mxit_params[:principal_subdivision_code] = location[2]
|
65
|
+
@_mxit_params[:principal_subdivision_name] = location[3]
|
66
|
+
@_mxit_params[:city_code] = location[4]
|
67
|
+
@_mxit_params[:city_name] = location[5]
|
68
|
+
@_mxit_params[:network_operator_id] = location[6]
|
69
|
+
@_mxit_params[:client_features_bitset] = location[7]
|
70
|
+
@_mxit_params[:cell_id] = location[8]
|
71
|
+
end
|
72
|
+
|
73
|
+
@_mxit_params[:profile] = get_mxit_header_field 'X-Mxit-Profile'
|
74
|
+
profile = @_mxit_params[:profile]
|
75
|
+
unless profile.blank?
|
76
|
+
profile = profile.split ','
|
77
|
+
@_mxit_params[:language_code] = profile[0] #ISO_639-1 or ISO_639-2 language code
|
78
|
+
@_mxit_params[:registered_country_code] = profile[1] #ISO 3166-1 alpha-2 Country Code
|
79
|
+
@_mxit_params[:date_of_birth] = profile[2]
|
80
|
+
begin
|
81
|
+
# Don't set if it can't parse - ignore exceptions
|
82
|
+
@_mxit_params[:date_of_birth] = Date.parse profile[2] #YYYY-MM-dd
|
83
|
+
end
|
84
|
+
@_mxit_params[:gender] = :unknown
|
85
|
+
@_mxit_params[:gender] = :male if profile[3] =~ /male/i
|
86
|
+
@_mxit_params[:gender] = :female if profile[3] =~ /female/i
|
87
|
+
@_mxit_params[:tariff_plan] = :unknown
|
88
|
+
@_mxit_params[:tariff_plan] = :free if profile[4] == '1'
|
89
|
+
@_mxit_params[:tariff_plan] = :freestyler if profile[4] == '2'
|
90
|
+
end
|
45
91
|
|
46
|
-
|
47
|
-
|
92
|
+
user_input = get_mxit_header_field 'X-Mxit-User-Input'
|
93
|
+
user_input = URI.unescape(user_input).gsub('+', ' ') unless user_input.blank?
|
94
|
+
@_mxit_params[:user_input] = user_input
|
95
|
+
# TODO: How closely must it match a link to be ignored?
|
96
|
+
# TODO: What happens if there's an input on the page?
|
97
|
+
|
98
|
+
# This is only available on internal services for security reasons
|
48
99
|
device_info = get_mxit_header_field('X-Mxit-Device-Info')
|
49
100
|
unless device_info.blank?
|
50
101
|
tmp = device_info.split(',')
|
@@ -66,6 +117,7 @@ module MxitRails
|
|
66
117
|
@_mxit_validated = true
|
67
118
|
@_mxit_validation_types = []
|
68
119
|
@_mxit_validation_messages = []
|
120
|
+
@_mxit_emulator = request.headers['X-Mxit-UserId-R'].nil?
|
69
121
|
|
70
122
|
clean_session
|
71
123
|
|
@@ -109,6 +161,17 @@ module MxitRails
|
|
109
161
|
end
|
110
162
|
end
|
111
163
|
|
164
|
+
# Override render method so as to inject emoticons, etc
|
165
|
+
def render *arguments
|
166
|
+
if @_mxit_emulator
|
167
|
+
output = render_to_string *arguments
|
168
|
+
output = MxitRails::Styles.add_emoticons output
|
169
|
+
super :inline => output
|
170
|
+
else
|
171
|
+
super *arguments
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
112
175
|
def input input_name, input_label
|
113
176
|
descriptor.input = input_name
|
114
177
|
descriptor.input_label = input_label
|
data/lib/mxit_rails/styles.rb
CHANGED
@@ -16,10 +16,60 @@ module MxitRails
|
|
16
16
|
StyleList[name.to_sym] = content
|
17
17
|
end
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
Emoticons = {
|
20
|
+
happy: [':)', ':-)'],
|
21
|
+
sad: [':(', ':-('],
|
22
|
+
winking: [";)", ";-)"],
|
23
|
+
excited: [':D', ':-D'],
|
24
|
+
shocked: [':|', ':-|'],
|
25
|
+
surprised: [':O', ':-O'],
|
26
|
+
tongue_out: [':P', ':-P'],
|
27
|
+
embarrassed: [':$', ':-$'],
|
28
|
+
cool: ['8-)'],
|
29
|
+
heart: ['(H)'],
|
30
|
+
flower: ['(F)'],
|
31
|
+
|
32
|
+
# V 3.0. smileys
|
33
|
+
male: ['(m)'],
|
34
|
+
female: ['(f)'],
|
35
|
+
star: ['(*)'],
|
36
|
+
chilli: ['(c)'],
|
37
|
+
kiss: ['(x)'],
|
38
|
+
idea: ['(i)'],
|
39
|
+
extremely_angry: [':e', ':-e'],
|
40
|
+
censored: [':x', ':-x'],
|
41
|
+
grumpy: ['(z)'],
|
42
|
+
coffee: ['(U)'],
|
43
|
+
mr_green: ['(G)'],
|
44
|
+
|
45
|
+
# V 5.0 smileys
|
46
|
+
sick: [':o('],
|
47
|
+
wtf: [':{', ':-{'],
|
48
|
+
in_love: [':}', ':-}'],
|
49
|
+
rolling_eyes: ['8-o', '8o'],
|
50
|
+
crying: [':\'('],
|
51
|
+
thinking: [':?', ':-?'],
|
52
|
+
drooling: [':~', ':-~'],
|
53
|
+
sleepy: [':z', ':-z'],
|
54
|
+
liar: [':L)'],
|
55
|
+
nerdy: ['8-|', '8|'],
|
56
|
+
pirate: ['P-)'],
|
57
|
+
bored: [':[', ':-['],
|
58
|
+
cold: [':<', ':-<'],
|
59
|
+
confused: [':,', ':-,'],
|
60
|
+
hungry: [':C', ':-C'],
|
61
|
+
stressed: [':s', ':-s'],
|
62
|
+
}
|
63
|
+
|
64
|
+
def self.add_emoticons source
|
65
|
+
output = source
|
66
|
+
Emoticons.each do |name, searches|
|
67
|
+
searches.each do |search|
|
68
|
+
output.gsub! search, "<span class=\"emoticon #{name}\" title=\"#{name} #{search}\">#{search}</span>"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
output
|
72
|
+
end
|
23
73
|
|
24
74
|
end
|
25
75
|
end
|
data/lib/mxit_rails/version.rb
CHANGED
@@ -2,13 +2,8 @@
|
|
2
2
|
<b>Templater</b>
|
3
3
|
|
4
4
|
<%= mxit_table_row %>
|
5
|
-
This is the root of the dummy app
|
6
|
-
<br />
|
7
|
-
|
8
|
-
<b>Current Mxit Params:</b><br />
|
9
|
-
<% @mxit_params.each do |k,v| %>
|
10
|
-
<%= k %>: <b><%= v %></b><br />
|
11
|
-
<% end %>
|
5
|
+
This is the root of the dummy app.<br />
|
6
|
+
It can do smileys: 8-)<br />
|
12
7
|
<br />
|
13
8
|
|
14
9
|
<%= link_to 'Single-page form', '/welcome' %><br />
|
@@ -61570,3 +61570,3088 @@ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
|
61570
61570
|
|
61571
61571
|
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 16:56:59 +0200
|
61572
61572
|
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
61573
|
+
|
61574
|
+
|
61575
|
+
Started GET "/welcome" for 127.0.0.1 at 2012-10-04 17:41:14 +0200
|
61576
|
+
Processing by WelcomeController#index as HTML
|
61577
|
+
Rendered welcome/index.html.erb within layouts/mxit (11.1ms)
|
61578
|
+
Completed 500 Internal Server Error in 14ms
|
61579
|
+
|
61580
|
+
ActionView::Template::Error (undefined method `mxit_nav_link' for #<#<Class:0x007fe7a6224030>:0x007fe7a4211c48>):
|
61581
|
+
2: <b>Step 1 of 1</b>
|
61582
|
+
3:
|
61583
|
+
4: <%= mxit_table_row %>
|
61584
|
+
5: <%= mxit_nav_link '/', 'Back' %>
|
61585
|
+
6:
|
61586
|
+
7: <% unless mxit_validation_message %>
|
61587
|
+
8: You're visiting the templater-in-progress. It's now <%= @time %>.<br /><br />
|
61588
|
+
app/views/welcome/index.html.erb:5:in `_app_views_welcome_index_html_erb___2683192932039311161_70316427719320'
|
61589
|
+
|
61590
|
+
|
61591
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
61592
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
61593
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.9ms)
|
61594
|
+
|
61595
|
+
|
61596
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 17:41:16 +0200
|
61597
|
+
Processing by IndexController#index as HTML
|
61598
|
+
Rendered index/index.html.erb within layouts/mxit (0.5ms)
|
61599
|
+
Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
61600
|
+
|
61601
|
+
|
61602
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 17:41:16 +0200
|
61603
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
61604
|
+
|
61605
|
+
|
61606
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 17:41:20 +0200
|
61607
|
+
Processing by IndexController#index as HTML
|
61608
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
61609
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
61610
|
+
|
61611
|
+
|
61612
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 17:41:20 +0200
|
61613
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
61614
|
+
|
61615
|
+
|
61616
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 18:42:14 +0200
|
61617
|
+
Connecting to database specified by database.yml
|
61618
|
+
Processing by IndexController#index as HTML
|
61619
|
+
Rendered index/index.html.erb within layouts/mxit (2.7ms)
|
61620
|
+
Completed 500 Internal Server Error in 37ms
|
61621
|
+
|
61622
|
+
NoMethodError (undefined method `add_emoticons' for MxitRails::Styles:Module):
|
61623
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:117:in `render'
|
61624
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
61625
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
61626
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
61627
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
61628
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
61629
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__324390122944135940__process_action__3945951602471221414__callbacks'
|
61630
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
61631
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
61632
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
61633
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
61634
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
61635
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
61636
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
61637
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
61638
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
61639
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
61640
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
61641
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
61642
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
61643
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
61644
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
61645
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
61646
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
61647
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
61648
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
61649
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
61650
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
61651
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
61652
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
61653
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
61654
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
61655
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
61656
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
61657
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
61658
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
61659
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
61660
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
61661
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
61662
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
61663
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
61664
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
61665
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
61666
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2159668085825985210__call__2008444789851821068__callbacks'
|
61667
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
61668
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
61669
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
61670
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
61671
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
61672
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
61673
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
61674
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
61675
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
61676
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
61677
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
61678
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
61679
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
61680
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
61681
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
61682
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
61683
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
61684
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
61685
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
61686
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
61687
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
61688
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
61689
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
61690
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
61691
|
+
|
61692
|
+
|
61693
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
61694
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
61695
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
61696
|
+
|
61697
|
+
|
61698
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 18:42:29 +0200
|
61699
|
+
Processing by IndexController#index as HTML
|
61700
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
61701
|
+
Completed 500 Internal Server Error in 3ms
|
61702
|
+
|
61703
|
+
NoMethodError (undefined method `add_emoticons' for MxitRails::Styles:Module):
|
61704
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:117:in `render'
|
61705
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
61706
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
61707
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
61708
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
61709
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
61710
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__324390122944135940__process_action__3945951602471221414__callbacks'
|
61711
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
61712
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
61713
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
61714
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
61715
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
61716
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
61717
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
61718
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
61719
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
61720
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
61721
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
61722
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
61723
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
61724
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
61725
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
61726
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
61727
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
61728
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
61729
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
61730
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
61731
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
61732
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
61733
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
61734
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
61735
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
61736
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
61737
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
61738
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
61739
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
61740
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
61741
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
61742
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
61743
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
61744
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
61745
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
61746
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
61747
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2159668085825985210__call__2008444789851821068__callbacks'
|
61748
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
61749
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
61750
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
61751
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
61752
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
61753
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
61754
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
61755
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
61756
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
61757
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
61758
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
61759
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
61760
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
61761
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
61762
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
61763
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
61764
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
61765
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
61766
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
61767
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
61768
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
61769
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
61770
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
61771
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
61772
|
+
|
61773
|
+
|
61774
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
61775
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
61776
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
61777
|
+
|
61778
|
+
|
61779
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61780
|
+
Processing by EmulatorController#index as HTML
|
61781
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (18.1ms)
|
61782
|
+
Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
|
61783
|
+
|
61784
|
+
|
61785
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61786
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (6ms)
|
61787
|
+
|
61788
|
+
|
61789
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61790
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
|
61791
|
+
|
61792
|
+
|
61793
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61794
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (8ms)
|
61795
|
+
|
61796
|
+
|
61797
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61798
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
|
61799
|
+
|
61800
|
+
|
61801
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61802
|
+
Processing by IndexController#index as HTML
|
61803
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
61804
|
+
Completed 500 Internal Server Error in 9ms
|
61805
|
+
|
61806
|
+
NoMethodError (undefined method `add_emoticons' for MxitRails::Styles:Module):
|
61807
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:117:in `render'
|
61808
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
61809
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
61810
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
61811
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
61812
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
61813
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__324390122944135940__process_action__3945951602471221414__callbacks'
|
61814
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
61815
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
61816
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
61817
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
61818
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
61819
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
61820
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
61821
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
61822
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
61823
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
61824
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
61825
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
61826
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
61827
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
61828
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
61829
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
61830
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
61831
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
61832
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
61833
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
61834
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
61835
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
61836
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
61837
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
61838
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
61839
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
61840
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
61841
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
61842
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
61843
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
61844
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
61845
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
61846
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
61847
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
61848
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
61849
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
61850
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2159668085825985210__call__2008444789851821068__callbacks'
|
61851
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
61852
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
61853
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
61854
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
61855
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
61856
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
61857
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
61858
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
61859
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
61860
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
61861
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
61862
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
61863
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
61864
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
61865
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
61866
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
61867
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
61868
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
61869
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
61870
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
61871
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
61872
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
61873
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
61874
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
61875
|
+
|
61876
|
+
|
61877
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
61878
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
61879
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
|
61880
|
+
|
61881
|
+
|
61882
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61883
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
|
61884
|
+
|
61885
|
+
|
61886
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61887
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (2ms)
|
61888
|
+
|
61889
|
+
|
61890
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61891
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
|
61892
|
+
|
61893
|
+
|
61894
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61895
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (3ms)
|
61896
|
+
|
61897
|
+
|
61898
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61899
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
|
61900
|
+
|
61901
|
+
|
61902
|
+
Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-10-04 18:42:32 +0200
|
61903
|
+
Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
|
61904
|
+
|
61905
|
+
|
61906
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61907
|
+
Connecting to database specified by database.yml
|
61908
|
+
Processing by EmulatorController#index as HTML
|
61909
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.2ms)
|
61910
|
+
Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|
61911
|
+
|
61912
|
+
|
61913
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61914
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (5ms)
|
61915
|
+
|
61916
|
+
|
61917
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61918
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
|
61919
|
+
|
61920
|
+
|
61921
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61922
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (5ms)
|
61923
|
+
|
61924
|
+
|
61925
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61926
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
|
61927
|
+
|
61928
|
+
|
61929
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61930
|
+
Processing by IndexController#index as HTML
|
61931
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
61932
|
+
Rendered inline template (0.3ms)
|
61933
|
+
Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
61934
|
+
|
61935
|
+
|
61936
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61937
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
|
61938
|
+
|
61939
|
+
|
61940
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61941
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (3ms)
|
61942
|
+
|
61943
|
+
|
61944
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61945
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
|
61946
|
+
|
61947
|
+
|
61948
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61949
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
|
61950
|
+
|
61951
|
+
|
61952
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61953
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
|
61954
|
+
|
61955
|
+
|
61956
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 18:42:42 +0200
|
61957
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
|
61958
|
+
|
61959
|
+
|
61960
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:34:37 +0200
|
61961
|
+
Connecting to database specified by database.yml
|
61962
|
+
Processing by IndexController#index as HTML
|
61963
|
+
Rendered index/index.html.erb within layouts/mxit (2.5ms)
|
61964
|
+
Rendered inline template (3.4ms)
|
61965
|
+
Completed 500 Internal Server Error in 45ms
|
61966
|
+
|
61967
|
+
ActionView::Template::Error (undefined method `encoding_aware?' for #<Hash:0x007f9bdb1d19a0>):
|
61968
|
+
actionpack (3.2.8) lib/action_view/template.rb:189:in `encode!'
|
61969
|
+
actionpack (3.2.8) lib/action_view/template.rb:266:in `compile'
|
61970
|
+
actionpack (3.2.8) lib/action_view/template.rb:244:in `block in compile!'
|
61971
|
+
<internal:prelude>:10:in `synchronize'
|
61972
|
+
actionpack (3.2.8) lib/action_view/template.rb:232:in `compile!'
|
61973
|
+
actionpack (3.2.8) lib/action_view/template.rb:144:in `block in render'
|
61974
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
|
61975
|
+
actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
|
61976
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
61977
|
+
actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
61978
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
61979
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
61980
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
61981
|
+
actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
61982
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
61983
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
61984
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
61985
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
61986
|
+
actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
61987
|
+
actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
|
61988
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
61989
|
+
actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
61990
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
61991
|
+
actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
61992
|
+
actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
61993
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
|
61994
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
|
61995
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
61996
|
+
activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
61997
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
61998
|
+
activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
61999
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
62000
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
62001
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
62002
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
62003
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:118:in `render'
|
62004
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
62005
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
62006
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
62007
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
62008
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
62009
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__3235100857998627554__process_action__3780349536947920749__callbacks'
|
62010
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
62011
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
62012
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
62013
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
62014
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
62015
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
62016
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
62017
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
62018
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
62019
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
62020
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
62021
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
62022
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
62023
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
62024
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
62025
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
62026
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
62027
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
62028
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
62029
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
62030
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
62031
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
62032
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
62033
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
62034
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
62035
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
62036
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
62037
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
62038
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
62039
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
62040
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
62041
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
62042
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
62043
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
62044
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
62045
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
62046
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__790435098235286551__call__1513797101356440641__callbacks'
|
62047
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
62048
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
62049
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
62050
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
62051
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
62052
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
62053
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
62054
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
62055
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
62056
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
62057
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
62058
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
62059
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
62060
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
62061
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
62062
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
62063
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
62064
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
62065
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
62066
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
62067
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
62068
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
62069
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
62070
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
62071
|
+
|
62072
|
+
|
62073
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
62074
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
62075
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
|
62076
|
+
|
62077
|
+
|
62078
|
+
Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-10-04 20:34:38 +0200
|
62079
|
+
Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
|
62080
|
+
|
62081
|
+
|
62082
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:35:40 +0200
|
62083
|
+
Connecting to database specified by database.yml
|
62084
|
+
Processing by IndexController#index as HTML
|
62085
|
+
Rendered index/index.html.erb within layouts/mxit (1.9ms)
|
62086
|
+
{:happy=>[":)", ":-)"], :sad=>[":(", ":-("], :winking=>[";)", ";-)"], :excited=>[":D", ":-D"], :shocked=>[":|", ":-|"], :surprised=>[":O", ":-O"], :tongue_out=>[":P", ":-P"], :embarrassed=>[":$", ":-$"], :cool=>["8-)"], :heart=>["(H)"], :flower=>["(F)"], :male=>["(m)"], :female=>["(f)"], :star=>["(*)"], :chilli=>["(c)"], :kiss=>["(x)"], :idea=>["(i)"], :extremely_angry=>[":e", ":-e"], :censored=>[":x", ":-x"], :grumpy=>["(z)"], :coffee=>["(U)"], :mr_green=>["(G)"], :sick=>[":o("], :wtf=>[":{", ":-{"], :in_love=>[":}", ":-}"], :rolling_eyes=>["8-o", "8o"], :crying=>[":'("], :thinking=>[":?", ":-?"], :drooling=>[":~", ":-~"], :sleepy=>[":z", ":-z"], :liar=>[":L)"], :nerdy=>["8-|", "8|"], :pirate=>["P-)"], :bored=>[":[", ":-["], :cold=>[":<", ":-<"], :confused=>[":,", ":-,"], :hungry=>[":C", ":-C"], :stressed=>[":s", ":-s"]}
|
62087
|
+
Rendered inline template (2.8ms)
|
62088
|
+
Completed 500 Internal Server Error in 36ms
|
62089
|
+
|
62090
|
+
ActionView::Template::Error (undefined method `encoding_aware?' for #<Hash:0x007f84bb815758>):
|
62091
|
+
actionpack (3.2.8) lib/action_view/template.rb:189:in `encode!'
|
62092
|
+
actionpack (3.2.8) lib/action_view/template.rb:266:in `compile'
|
62093
|
+
actionpack (3.2.8) lib/action_view/template.rb:244:in `block in compile!'
|
62094
|
+
<internal:prelude>:10:in `synchronize'
|
62095
|
+
actionpack (3.2.8) lib/action_view/template.rb:232:in `compile!'
|
62096
|
+
actionpack (3.2.8) lib/action_view/template.rb:144:in `block in render'
|
62097
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
|
62098
|
+
actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
|
62099
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
62100
|
+
actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
62101
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
62102
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
62103
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
62104
|
+
actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
62105
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
62106
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
62107
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
62108
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
62109
|
+
actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
62110
|
+
actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
|
62111
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
62112
|
+
actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
62113
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
62114
|
+
actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
62115
|
+
actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
62116
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
|
62117
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
|
62118
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
62119
|
+
activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
62120
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
62121
|
+
activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
62122
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
62123
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
62124
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
62125
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
62126
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:119:in `render'
|
62127
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
62128
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
62129
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
62130
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
62131
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
62132
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__827199488751559111__process_action__441779032613101363__callbacks'
|
62133
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
62134
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
62135
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
62136
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
62137
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
62138
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
62139
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
62140
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
62141
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
62142
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
62143
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
62144
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
62145
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
62146
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
62147
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
62148
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
62149
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
62150
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
62151
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
62152
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
62153
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
62154
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
62155
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
62156
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
62157
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
62158
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
62159
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
62160
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
62161
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
62162
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
62163
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
62164
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
62165
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
62166
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
62167
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
62168
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
62169
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__839359825634623766__call__1551408328315475666__callbacks'
|
62170
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
62171
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
62172
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
62173
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
62174
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
62175
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
62176
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
62177
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
62178
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
62179
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
62180
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
62181
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
62182
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
62183
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
62184
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
62185
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
62186
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
62187
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
62188
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
62189
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
62190
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
62191
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
62192
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
62193
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
62194
|
+
|
62195
|
+
|
62196
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
62197
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
62198
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
|
62199
|
+
|
62200
|
+
|
62201
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:36:15 +0200
|
62202
|
+
Connecting to database specified by database.yml
|
62203
|
+
Processing by IndexController#index as HTML
|
62204
|
+
Rendered index/index.html.erb within layouts/mxit (2.1ms)
|
62205
|
+
Rendered inline template (0.3ms)
|
62206
|
+
Completed 200 OK in 38ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62207
|
+
|
62208
|
+
|
62209
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:36:15 +0200
|
62210
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
|
62211
|
+
|
62212
|
+
|
62213
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:40:24 +0200
|
62214
|
+
Processing by IndexController#index as HTML
|
62215
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62216
|
+
Compiled mxit_rails/included.css (247ms) (pid 20501)
|
62217
|
+
Rendered inline template (0.3ms)
|
62218
|
+
Completed 200 OK in 260ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62219
|
+
|
62220
|
+
|
62221
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:40:25 +0200
|
62222
|
+
Served asset /mxit_rails/included.css - 200 OK (4ms)
|
62223
|
+
|
62224
|
+
|
62225
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:40:34 +0200
|
62226
|
+
Connecting to database specified by database.yml
|
62227
|
+
Processing by IndexController#index as HTML
|
62228
|
+
Rendered index/index.html.erb within layouts/mxit (1.9ms)
|
62229
|
+
Rendered inline template (0.3ms)
|
62230
|
+
Completed 200 OK in 34ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62231
|
+
|
62232
|
+
|
62233
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:40:34 +0200
|
62234
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
|
62235
|
+
|
62236
|
+
|
62237
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-04 20:40:34 +0200
|
62238
|
+
Served asset /mxit_rails/emoticons.png - 200 OK (7ms)
|
62239
|
+
|
62240
|
+
|
62241
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:40:51 +0200
|
62242
|
+
Processing by IndexController#index as HTML
|
62243
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62244
|
+
Compiled mxit_rails/included.css (166ms) (pid 20663)
|
62245
|
+
Rendered inline template (0.5ms)
|
62246
|
+
Completed 200 OK in 180ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
62247
|
+
|
62248
|
+
|
62249
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:40:51 +0200
|
62250
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62251
|
+
|
62252
|
+
|
62253
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:40:52 +0200
|
62254
|
+
Processing by IndexController#index as HTML
|
62255
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62256
|
+
Rendered inline template (0.3ms)
|
62257
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62258
|
+
|
62259
|
+
|
62260
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:40:52 +0200
|
62261
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62262
|
+
|
62263
|
+
|
62264
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:40:53 +0200
|
62265
|
+
Processing by IndexController#index as HTML
|
62266
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62267
|
+
Rendered inline template (0.5ms)
|
62268
|
+
Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
62269
|
+
|
62270
|
+
|
62271
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:40:53 +0200
|
62272
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62273
|
+
|
62274
|
+
|
62275
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:41:44 +0200
|
62276
|
+
Processing by IndexController#index as HTML
|
62277
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62278
|
+
Compiled mxit_rails/included.css (5ms) (pid 20663)
|
62279
|
+
Rendered inline template (0.3ms)
|
62280
|
+
Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62281
|
+
|
62282
|
+
|
62283
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:41:44 +0200
|
62284
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62285
|
+
|
62286
|
+
|
62287
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:41:45 +0200
|
62288
|
+
Processing by IndexController#index as HTML
|
62289
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62290
|
+
Rendered inline template (0.3ms)
|
62291
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62292
|
+
|
62293
|
+
|
62294
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:41:45 +0200
|
62295
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62296
|
+
|
62297
|
+
|
62298
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:41:46 +0200
|
62299
|
+
Processing by IndexController#index as HTML
|
62300
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62301
|
+
Rendered inline template (0.3ms)
|
62302
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62303
|
+
|
62304
|
+
|
62305
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:41:46 +0200
|
62306
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62307
|
+
|
62308
|
+
|
62309
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:02 +0200
|
62310
|
+
Processing by IndexController#index as HTML
|
62311
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62312
|
+
Compiled mxit_rails/included.css (4ms) (pid 20663)
|
62313
|
+
Rendered inline template (0.4ms)
|
62314
|
+
Completed 200 OK in 18ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
62315
|
+
|
62316
|
+
|
62317
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:02 +0200
|
62318
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62319
|
+
|
62320
|
+
|
62321
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:03 +0200
|
62322
|
+
Processing by IndexController#index as HTML
|
62323
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62324
|
+
Rendered inline template (0.3ms)
|
62325
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62326
|
+
|
62327
|
+
|
62328
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:03 +0200
|
62329
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62330
|
+
|
62331
|
+
|
62332
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:05 +0200
|
62333
|
+
Processing by IndexController#index as HTML
|
62334
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62335
|
+
Rendered inline template (0.4ms)
|
62336
|
+
Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62337
|
+
|
62338
|
+
|
62339
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:05 +0200
|
62340
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62341
|
+
|
62342
|
+
|
62343
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:06 +0200
|
62344
|
+
Processing by IndexController#index as HTML
|
62345
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62346
|
+
Rendered inline template (0.3ms)
|
62347
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62348
|
+
|
62349
|
+
|
62350
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:06 +0200
|
62351
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62352
|
+
|
62353
|
+
|
62354
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:07 +0200
|
62355
|
+
Processing by IndexController#index as HTML
|
62356
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62357
|
+
Rendered inline template (29.5ms)
|
62358
|
+
Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 0.0ms)
|
62359
|
+
|
62360
|
+
|
62361
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:07 +0200
|
62362
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62363
|
+
|
62364
|
+
|
62365
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:07 +0200
|
62366
|
+
Processing by IndexController#index as HTML
|
62367
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
62368
|
+
Rendered inline template (0.4ms)
|
62369
|
+
Completed 200 OK in 6ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
62370
|
+
|
62371
|
+
|
62372
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:07 +0200
|
62373
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62374
|
+
|
62375
|
+
|
62376
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:42:33 +0200
|
62377
|
+
Processing by IndexController#index as HTML
|
62378
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62379
|
+
Compiled mxit_rails/included.css (5ms) (pid 20663)
|
62380
|
+
Rendered inline template (0.3ms)
|
62381
|
+
Completed 200 OK in 18ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62382
|
+
|
62383
|
+
|
62384
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:42:33 +0200
|
62385
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62386
|
+
|
62387
|
+
|
62388
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:43:28 +0200
|
62389
|
+
Processing by IndexController#index as HTML
|
62390
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
62391
|
+
Compiled mxit_rails/included.css (5ms) (pid 20663)
|
62392
|
+
Rendered inline template (0.5ms)
|
62393
|
+
Completed 200 OK in 19ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
62394
|
+
|
62395
|
+
|
62396
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:43:29 +0200
|
62397
|
+
Served asset /mxit_rails/included.css - 200 OK (4ms)
|
62398
|
+
|
62399
|
+
|
62400
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:44:05 +0200
|
62401
|
+
Processing by IndexController#index as HTML
|
62402
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62403
|
+
Compiled mxit_rails/included.css (6ms) (pid 20663)
|
62404
|
+
Rendered inline template (0.4ms)
|
62405
|
+
Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62406
|
+
|
62407
|
+
|
62408
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:44:05 +0200
|
62409
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62410
|
+
|
62411
|
+
|
62412
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:44:07 +0200
|
62413
|
+
Processing by IndexController#index as HTML
|
62414
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62415
|
+
Rendered inline template (0.3ms)
|
62416
|
+
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
62417
|
+
|
62418
|
+
|
62419
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:44:07 +0200
|
62420
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62421
|
+
|
62422
|
+
|
62423
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:49:13 +0200
|
62424
|
+
Processing by IndexController#index as HTML
|
62425
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62426
|
+
Compiled mxit_rails/included.css (28ms) (pid 20663)
|
62427
|
+
Rendered inline template (0.3ms)
|
62428
|
+
Completed 200 OK in 41ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62429
|
+
|
62430
|
+
|
62431
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:49:13 +0200
|
62432
|
+
Served asset /mxit_rails/included.css - 200 OK (4ms)
|
62433
|
+
|
62434
|
+
|
62435
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:49:57 +0200
|
62436
|
+
Processing by IndexController#index as HTML
|
62437
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
62438
|
+
Compiled mxit_rails/included.css (60ms) (pid 20663)
|
62439
|
+
Rendered inline template (0.3ms)
|
62440
|
+
Completed 200 OK in 74ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62441
|
+
|
62442
|
+
|
62443
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:49:57 +0200
|
62444
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62445
|
+
|
62446
|
+
|
62447
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:49:57 +0200
|
62448
|
+
Processing by IndexController#index as HTML
|
62449
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62450
|
+
Rendered inline template (0.3ms)
|
62451
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62452
|
+
|
62453
|
+
|
62454
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:49:57 +0200
|
62455
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62456
|
+
|
62457
|
+
|
62458
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:50:24 +0200
|
62459
|
+
Connecting to database specified by database.yml
|
62460
|
+
Processing by IndexController#index as HTML
|
62461
|
+
Rendered index/index.html.erb within layouts/mxit (2.6ms)
|
62462
|
+
Rendered inline template (0.4ms)
|
62463
|
+
Completed 200 OK in 37ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
62464
|
+
|
62465
|
+
|
62466
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:50:24 +0200
|
62467
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (4ms)
|
62468
|
+
|
62469
|
+
|
62470
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:50:26 +0200
|
62471
|
+
Processing by IndexController#index as HTML
|
62472
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62473
|
+
Rendered inline template (0.3ms)
|
62474
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62475
|
+
|
62476
|
+
|
62477
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:50:26 +0200
|
62478
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62479
|
+
|
62480
|
+
|
62481
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:51:41 +0200
|
62482
|
+
Connecting to database specified by database.yml
|
62483
|
+
Processing by IndexController#index as HTML
|
62484
|
+
Rendered index/index.html.erb within layouts/mxit (2.0ms)
|
62485
|
+
Compiled mxit_rails/included.css (193ms) (pid 20911)
|
62486
|
+
Rendered inline template (0.3ms)
|
62487
|
+
Completed 200 OK in 233ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62488
|
+
|
62489
|
+
|
62490
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:51:42 +0200
|
62491
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62492
|
+
|
62493
|
+
|
62494
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:51:53 +0200
|
62495
|
+
Processing by IndexController#index as HTML
|
62496
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62497
|
+
Compiled mxit_rails/included.css (30ms) (pid 20911)
|
62498
|
+
Rendered inline template (0.3ms)
|
62499
|
+
Completed 200 OK in 43ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
62500
|
+
|
62501
|
+
|
62502
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:51:53 +0200
|
62503
|
+
Served asset /mxit_rails/included.css - 200 OK (4ms)
|
62504
|
+
|
62505
|
+
|
62506
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:51:54 +0200
|
62507
|
+
Processing by IndexController#index as HTML
|
62508
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
62509
|
+
Rendered inline template (0.3ms)
|
62510
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62511
|
+
|
62512
|
+
|
62513
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:51:54 +0200
|
62514
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62515
|
+
|
62516
|
+
|
62517
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:52:08 +0200
|
62518
|
+
Processing by IndexController#index as HTML
|
62519
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62520
|
+
Compiled mxit_rails/included.css (27ms) (pid 20911)
|
62521
|
+
Rendered inline template (0.3ms)
|
62522
|
+
Completed 200 OK in 41ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62523
|
+
|
62524
|
+
|
62525
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:52:08 +0200
|
62526
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62527
|
+
|
62528
|
+
|
62529
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:52:09 +0200
|
62530
|
+
Processing by IndexController#index as HTML
|
62531
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62532
|
+
Rendered inline template (0.3ms)
|
62533
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62534
|
+
|
62535
|
+
|
62536
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:52:09 +0200
|
62537
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62538
|
+
|
62539
|
+
|
62540
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:53:00 +0200
|
62541
|
+
Processing by IndexController#index as HTML
|
62542
|
+
Rendered index/index.html.erb within layouts/mxit (0.1ms)
|
62543
|
+
Compiled mxit_rails/included.css (31ms) (pid 20911)
|
62544
|
+
Rendered inline template (0.4ms)
|
62545
|
+
Completed 200 OK in 43ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
62546
|
+
|
62547
|
+
|
62548
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:53:00 +0200
|
62549
|
+
Served asset /mxit_rails/included.css - 200 OK (4ms)
|
62550
|
+
|
62551
|
+
|
62552
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:53:01 +0200
|
62553
|
+
Processing by IndexController#index as HTML
|
62554
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62555
|
+
Rendered inline template (0.3ms)
|
62556
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62557
|
+
|
62558
|
+
|
62559
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:53:01 +0200
|
62560
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62561
|
+
|
62562
|
+
|
62563
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:53:19 +0200
|
62564
|
+
Processing by IndexController#index as HTML
|
62565
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62566
|
+
Compiled mxit_rails/included.css (62ms) (pid 20911)
|
62567
|
+
Rendered inline template (0.3ms)
|
62568
|
+
Completed 200 OK in 73ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62569
|
+
|
62570
|
+
|
62571
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:53:19 +0200
|
62572
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62573
|
+
|
62574
|
+
|
62575
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:53:39 +0200
|
62576
|
+
Processing by IndexController#index as HTML
|
62577
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62578
|
+
Compiled mxit_rails/included.css (42ms) (pid 20911)
|
62579
|
+
Rendered inline template (0.3ms)
|
62580
|
+
Completed 200 OK in 54ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62581
|
+
|
62582
|
+
|
62583
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:53:39 +0200
|
62584
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62585
|
+
|
62586
|
+
|
62587
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:53:51 +0200
|
62588
|
+
Processing by IndexController#index as HTML
|
62589
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62590
|
+
Rendered inline template (0.3ms)
|
62591
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62592
|
+
|
62593
|
+
|
62594
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:53:51 +0200
|
62595
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62596
|
+
|
62597
|
+
|
62598
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:54:15 +0200
|
62599
|
+
Processing by IndexController#index as HTML
|
62600
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62601
|
+
Rendered inline template (0.3ms)
|
62602
|
+
Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62603
|
+
|
62604
|
+
|
62605
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:54:15 +0200
|
62606
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62607
|
+
|
62608
|
+
|
62609
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:54:17 +0200
|
62610
|
+
Processing by IndexController#index as HTML
|
62611
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
62612
|
+
Rendered inline template (0.3ms)
|
62613
|
+
Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
62614
|
+
|
62615
|
+
|
62616
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:54:17 +0200
|
62617
|
+
Processing by IndexController#index as HTML
|
62618
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
62619
|
+
Rendered inline template (0.3ms)
|
62620
|
+
Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62621
|
+
|
62622
|
+
|
62623
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62624
|
+
Processing by EmulatorController#index as HTML
|
62625
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (23.3ms)
|
62626
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
62627
|
+
|
62628
|
+
|
62629
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62630
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (6ms)
|
62631
|
+
|
62632
|
+
|
62633
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62634
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
|
62635
|
+
|
62636
|
+
|
62637
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62638
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
|
62639
|
+
|
62640
|
+
|
62641
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62642
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (2ms)
|
62643
|
+
|
62644
|
+
|
62645
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62646
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
|
62647
|
+
|
62648
|
+
|
62649
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62650
|
+
Processing by IndexController#index as HTML
|
62651
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
62652
|
+
Rendered inline template (0.5ms)
|
62653
|
+
Completed 200 OK in 7ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
62654
|
+
|
62655
|
+
|
62656
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62657
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
|
62658
|
+
|
62659
|
+
|
62660
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62661
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (9ms)
|
62662
|
+
|
62663
|
+
|
62664
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62665
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (3ms)
|
62666
|
+
|
62667
|
+
|
62668
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62669
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (5ms)
|
62670
|
+
|
62671
|
+
|
62672
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62673
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (5ms)
|
62674
|
+
|
62675
|
+
|
62676
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62677
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62678
|
+
|
62679
|
+
|
62680
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:54:19 +0200
|
62681
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
|
62682
|
+
|
62683
|
+
|
62684
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:54:47 +0200
|
62685
|
+
Processing by IndexController#index as HTML
|
62686
|
+
Rendered index/index.html.erb within layouts/mxit (0.6ms)
|
62687
|
+
Rendered inline template (0.2ms)
|
62688
|
+
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
62689
|
+
|
62690
|
+
|
62691
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:54:47 +0200
|
62692
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62693
|
+
|
62694
|
+
|
62695
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:54:47 +0200
|
62696
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62697
|
+
|
62698
|
+
|
62699
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:54:55 +0200
|
62700
|
+
Processing by IndexController#index as HTML
|
62701
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
62702
|
+
Rendered inline template (0.3ms)
|
62703
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62704
|
+
|
62705
|
+
|
62706
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:54:55 +0200
|
62707
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62708
|
+
|
62709
|
+
|
62710
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:54:55 +0200
|
62711
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62712
|
+
|
62713
|
+
|
62714
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:56:07 +0200
|
62715
|
+
Processing by IndexController#index as HTML
|
62716
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62717
|
+
Compiled mxit_rails/included.css (41ms) (pid 20911)
|
62718
|
+
Rendered inline template (0.3ms)
|
62719
|
+
Completed 200 OK in 54ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
62720
|
+
|
62721
|
+
|
62722
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:56:07 +0200
|
62723
|
+
Served asset /mxit_rails/included.css - 200 OK (3ms)
|
62724
|
+
|
62725
|
+
|
62726
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:56:07 +0200
|
62727
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62728
|
+
|
62729
|
+
|
62730
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:56:16 +0200
|
62731
|
+
Processing by IndexController#index as HTML
|
62732
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62733
|
+
Rendered inline template (0.3ms)
|
62734
|
+
Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62735
|
+
|
62736
|
+
|
62737
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:56:16 +0200
|
62738
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62739
|
+
|
62740
|
+
|
62741
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:56:16 +0200
|
62742
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62743
|
+
|
62744
|
+
|
62745
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:57:57 +0200
|
62746
|
+
Processing by IndexController#index as HTML
|
62747
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62748
|
+
Rendered inline template (0.4ms)
|
62749
|
+
Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
62750
|
+
|
62751
|
+
|
62752
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:57:57 +0200
|
62753
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62754
|
+
|
62755
|
+
|
62756
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:57:57 +0200
|
62757
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62758
|
+
|
62759
|
+
|
62760
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:58:44 +0200
|
62761
|
+
Processing by IndexController#index as HTML
|
62762
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
62763
|
+
Rendered inline template (0.4ms)
|
62764
|
+
Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
62765
|
+
|
62766
|
+
|
62767
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:58:44 +0200
|
62768
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62769
|
+
|
62770
|
+
|
62771
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:58:44 +0200
|
62772
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62773
|
+
|
62774
|
+
|
62775
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:59:04 +0200
|
62776
|
+
Processing by IndexController#index as HTML
|
62777
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62778
|
+
Rendered inline template (0.3ms)
|
62779
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62780
|
+
|
62781
|
+
|
62782
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:59:04 +0200
|
62783
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62784
|
+
|
62785
|
+
|
62786
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:59:04 +0200
|
62787
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62788
|
+
|
62789
|
+
|
62790
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 20:59:12 +0200
|
62791
|
+
Processing by IndexController#index as HTML
|
62792
|
+
Rendered index/index.html.erb within layouts/mxit (0.8ms)
|
62793
|
+
Rendered inline template (0.2ms)
|
62794
|
+
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62795
|
+
|
62796
|
+
|
62797
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 20:59:12 +0200
|
62798
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62799
|
+
|
62800
|
+
|
62801
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-04 20:59:12 +0200
|
62802
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
62803
|
+
|
62804
|
+
|
62805
|
+
Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-10-04 21:01:02 +0200
|
62806
|
+
Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
|
62807
|
+
|
62808
|
+
|
62809
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 21:10:36 +0200
|
62810
|
+
Processing by IndexController#index as HTML
|
62811
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
62812
|
+
Rendered inline template (0.2ms)
|
62813
|
+
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
62814
|
+
|
62815
|
+
|
62816
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 21:10:36 +0200
|
62817
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62818
|
+
|
62819
|
+
|
62820
|
+
Started GET "/welcome" for 127.0.0.1 at 2012-10-04 21:10:39 +0200
|
62821
|
+
Processing by WelcomeController#index as HTML
|
62822
|
+
Rendered welcome/index.html.erb within layouts/mxit (10.2ms)
|
62823
|
+
Completed 500 Internal Server Error in 13ms
|
62824
|
+
|
62825
|
+
ActionView::Template::Error (undefined method `mxit_nav_link' for #<#<Class:0x007fe5be29a300>:0x007fe5be29fa08>):
|
62826
|
+
2: <b>Step 1 of 1</b>
|
62827
|
+
3:
|
62828
|
+
4: <%= mxit_table_row %>
|
62829
|
+
5: <%= mxit_nav_link '/', 'Back' %>
|
62830
|
+
6:
|
62831
|
+
7: <% unless mxit_validation_message %>
|
62832
|
+
8: You're visiting the templater-in-progress. It's now <%= @time %>.<br /><br />
|
62833
|
+
app/views/welcome/index.html.erb:5:in `_app_views_welcome_index_html_erb___1253393665581876069_70312357324220'
|
62834
|
+
|
62835
|
+
|
62836
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
62837
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
62838
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
|
62839
|
+
|
62840
|
+
|
62841
|
+
Started GET "/welcome" for 127.0.0.1 at 2012-10-04 21:12:02 +0200
|
62842
|
+
Processing by WelcomeController#index as HTML
|
62843
|
+
Rendered welcome/index.html.erb within layouts/mxit (0.6ms)
|
62844
|
+
Rendered inline template (0.3ms)
|
62845
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62846
|
+
|
62847
|
+
|
62848
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 21:12:02 +0200
|
62849
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62850
|
+
|
62851
|
+
|
62852
|
+
Started GET "/" for 127.0.0.1 at 2012-10-04 21:12:05 +0200
|
62853
|
+
Processing by IndexController#index as HTML
|
62854
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62855
|
+
Rendered inline template (0.3ms)
|
62856
|
+
Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
62857
|
+
|
62858
|
+
|
62859
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-04 21:12:05 +0200
|
62860
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
62861
|
+
|
62862
|
+
|
62863
|
+
Started GET "/" for undefined at 2012-10-04 21:49:56 +0200
|
62864
|
+
Processing by IndexController#index as HTML
|
62865
|
+
Rendered index/index.html.erb within layouts/mxit (0.6ms)
|
62866
|
+
Rendered inline template (0.3ms)
|
62867
|
+
Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
62868
|
+
|
62869
|
+
|
62870
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for undefined at 2012-10-04 21:49:57 +0200
|
62871
|
+
Served asset /mxit_rails/included.css - 200 OK (0ms)
|
62872
|
+
|
62873
|
+
|
62874
|
+
Started GET "/emulator" for undefined at 2012-10-04 21:50:03 +0200
|
62875
|
+
Processing by EmulatorController#index as HTML
|
62876
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (6.8ms)
|
62877
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
62878
|
+
|
62879
|
+
|
62880
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for undefined at 2012-10-04 21:50:06 +0200
|
62881
|
+
Served asset /mxit_rails/emulator.css - 200 OK (0ms)
|
62882
|
+
|
62883
|
+
|
62884
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for undefined at 2012-10-04 21:50:06 +0200
|
62885
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 200 OK (0ms)
|
62886
|
+
|
62887
|
+
|
62888
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for undefined at 2012-10-04 21:50:06 +0200
|
62889
|
+
Served asset /mxit_rails/jquery.cookie.js - 200 OK (0ms)
|
62890
|
+
|
62891
|
+
|
62892
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for undefined at 2012-10-04 21:50:08 +0200
|
62893
|
+
Served asset /mxit_rails/jquery.history.js - 200 OK (0ms)
|
62894
|
+
|
62895
|
+
|
62896
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for undefined at 2012-10-04 21:50:08 +0200
|
62897
|
+
Served asset /mxit_rails/emulator.js - 200 OK (1ms)
|
62898
|
+
|
62899
|
+
|
62900
|
+
Started GET "/" for undefined at 2012-10-04 21:50:12 +0200
|
62901
|
+
Processing by IndexController#index as HTML
|
62902
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62903
|
+
Rendered inline template (0.5ms)
|
62904
|
+
Completed 200 OK in 6ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
62905
|
+
|
62906
|
+
|
62907
|
+
Started GET "/assets/mxit_rails/go.png" for undefined at 2012-10-04 21:50:12 +0200
|
62908
|
+
Served asset /mxit_rails/go.png - 200 OK (0ms)
|
62909
|
+
|
62910
|
+
|
62911
|
+
Started GET "/assets/mxit_rails/home.png" for undefined at 2012-10-04 21:50:12 +0200
|
62912
|
+
Served asset /mxit_rails/home.png - 200 OK (0ms)
|
62913
|
+
|
62914
|
+
|
62915
|
+
Started GET "/assets/mxit_rails/refresh.png" for undefined at 2012-10-04 21:50:12 +0200
|
62916
|
+
Served asset /mxit_rails/refresh.png - 200 OK (0ms)
|
62917
|
+
|
62918
|
+
|
62919
|
+
Started GET "/assets/mxit_rails/out.png" for undefined at 2012-10-04 21:50:12 +0200
|
62920
|
+
Served asset /mxit_rails/out.png - 200 OK (0ms)
|
62921
|
+
|
62922
|
+
|
62923
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for undefined at 2012-10-04 21:50:12 +0200
|
62924
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 200 OK (1ms)
|
62925
|
+
|
62926
|
+
|
62927
|
+
Started GET "/assets/mxit_rails/emoticons.png" for undefined at 2012-10-04 21:50:20 +0200
|
62928
|
+
Served asset /mxit_rails/emoticons.png - 200 OK (4ms)
|
62929
|
+
|
62930
|
+
|
62931
|
+
Started GET "/emulator" for undefined at 2012-10-04 21:50:26 +0200
|
62932
|
+
Processing by EmulatorController#index as HTML
|
62933
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.1ms)
|
62934
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
62935
|
+
|
62936
|
+
|
62937
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for undefined at 2012-10-04 21:50:31 +0200
|
62938
|
+
Served asset /mxit_rails/emulator.css - 200 OK (0ms)
|
62939
|
+
|
62940
|
+
|
62941
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for undefined at 2012-10-04 21:50:31 +0200
|
62942
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 200 OK (1ms)
|
62943
|
+
|
62944
|
+
|
62945
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for undefined at 2012-10-04 21:50:31 +0200
|
62946
|
+
Served asset /mxit_rails/jquery.cookie.js - 200 OK (0ms)
|
62947
|
+
|
62948
|
+
|
62949
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for undefined at 2012-10-04 21:50:32 +0200
|
62950
|
+
Served asset /mxit_rails/emulator.js - 200 OK (1ms)
|
62951
|
+
|
62952
|
+
|
62953
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for undefined at 2012-10-04 21:50:32 +0200
|
62954
|
+
Served asset /mxit_rails/jquery.history.js - 200 OK (0ms)
|
62955
|
+
|
62956
|
+
|
62957
|
+
Started GET "/" for undefined at 2012-10-04 21:50:36 +0200
|
62958
|
+
Processing by IndexController#index as HTML
|
62959
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
62960
|
+
Rendered inline template (0.5ms)
|
62961
|
+
Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
62962
|
+
|
62963
|
+
|
62964
|
+
Started GET "/assets/mxit_rails/go.png" for undefined at 2012-10-04 21:50:36 +0200
|
62965
|
+
Served asset /mxit_rails/go.png - 200 OK (0ms)
|
62966
|
+
|
62967
|
+
|
62968
|
+
Started GET "/assets/mxit_rails/refresh.png" for undefined at 2012-10-04 21:50:36 +0200
|
62969
|
+
Served asset /mxit_rails/refresh.png - 200 OK (0ms)
|
62970
|
+
|
62971
|
+
|
62972
|
+
Started GET "/assets/mxit_rails/home.png" for undefined at 2012-10-04 21:50:36 +0200
|
62973
|
+
Served asset /mxit_rails/home.png - 200 OK (0ms)
|
62974
|
+
|
62975
|
+
|
62976
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for undefined at 2012-10-04 21:50:36 +0200
|
62977
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 200 OK (2ms)
|
62978
|
+
|
62979
|
+
|
62980
|
+
Started GET "/assets/mxit_rails/out.png" for undefined at 2012-10-04 21:50:36 +0200
|
62981
|
+
Served asset /mxit_rails/out.png - 200 OK (0ms)
|
62982
|
+
|
62983
|
+
|
62984
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for undefined at 2012-10-04 21:50:45 +0200
|
62985
|
+
Served asset /mxit_rails/included.css - 200 OK (0ms)
|
62986
|
+
|
62987
|
+
|
62988
|
+
Started GET "/assets/mxit_rails/emoticons.png" for undefined at 2012-10-04 21:50:47 +0200
|
62989
|
+
Served asset /mxit_rails/emoticons.png - 200 OK (0ms)
|
62990
|
+
|
62991
|
+
|
62992
|
+
Started GET "/assets/mxit_rails/favicon.ico" for undefined at 2012-10-04 21:50:52 +0200
|
62993
|
+
Served asset /mxit_rails/favicon.ico - 200 OK (0ms)
|
62994
|
+
|
62995
|
+
|
62996
|
+
Started GET "/assets/mxit_rails/favicon.ico" for undefined at 2012-10-04 21:50:57 +0200
|
62997
|
+
Served asset /mxit_rails/favicon.ico - 200 OK (0ms)
|
62998
|
+
|
62999
|
+
|
63000
|
+
Started GET "/index" for undefined at 2012-10-04 21:51:07 +0200
|
63001
|
+
Processing by IndexController#index as HTML
|
63002
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63003
|
+
Rendered inline template (0.4ms)
|
63004
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
63005
|
+
|
63006
|
+
|
63007
|
+
Started GET "/welcome/single" for undefined at 2012-10-04 21:51:19 +0200
|
63008
|
+
Processing by WelcomeController#single as HTML
|
63009
|
+
Rendered welcome/single.html.erb within layouts/mxit (0.7ms)
|
63010
|
+
Rendered inline template (0.3ms)
|
63011
|
+
Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
63012
|
+
|
63013
|
+
|
63014
|
+
Started GET "/welcome/single?_mxit_rails_submit=true&select=1" for undefined at 2012-10-04 21:51:26 +0200
|
63015
|
+
Processing by WelcomeController#single as HTML
|
63016
|
+
Parameters: {"_mxit_rails_submit"=>"true", "select"=>"1"}
|
63017
|
+
Value: 1
|
63018
|
+
Redirected to http://linsen.showoff.io/index/success
|
63019
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
63020
|
+
|
63021
|
+
|
63022
|
+
Started GET "/index/success" for 196.209.249.37 at 2012-10-04 21:51:27 +0200
|
63023
|
+
Processing by IndexController#success as HTML
|
63024
|
+
Rendered index/success.html.erb within layouts/mxit (0.5ms)
|
63025
|
+
Rendered inline template (0.2ms)
|
63026
|
+
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
63027
|
+
|
63028
|
+
|
63029
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 196.209.249.37 at 2012-10-04 21:51:28 +0200
|
63030
|
+
Served asset /mxit_rails/included.css - 200 OK (0ms)
|
63031
|
+
|
63032
|
+
|
63033
|
+
Started GET "/" for 196.209.249.37 at 2012-10-04 21:51:32 +0200
|
63034
|
+
Processing by IndexController#index as HTML
|
63035
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63036
|
+
Rendered inline template (0.3ms)
|
63037
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
63038
|
+
|
63039
|
+
|
63040
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:20:17 +0200
|
63041
|
+
Connecting to database specified by database.yml
|
63042
|
+
Processing by IndexController#index as HTML
|
63043
|
+
Completed 500 Internal Server Error in 0ms
|
63044
|
+
|
63045
|
+
NoMethodError (undefined method `split!' for "300x460":String):
|
63046
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:50:in `get_mxit_info'
|
63047
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:108:in `setup'
|
63048
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__4482688311319451620__process_action__3891714710451963712__callbacks'
|
63049
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
63050
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
63051
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
63052
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
63053
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
63054
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
63055
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
63056
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
63057
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
63058
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
63059
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
63060
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
63061
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
63062
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
63063
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
63064
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
63065
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
63066
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
63067
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
63068
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
63069
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
63070
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
63071
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
63072
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
63073
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
63074
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
63075
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
63076
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
63077
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
63078
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
63079
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
63080
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
63081
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
63082
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
63083
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
63084
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
63085
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__14617200735377472__call__1013832695137029695__callbacks'
|
63086
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
63087
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
63088
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
63089
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
63090
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
63091
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
63092
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
63093
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
63094
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
63095
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
63096
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
63097
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
63098
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
63099
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
63100
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
63101
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
63102
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
63103
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
63104
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
63105
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
63106
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
63107
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
63108
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
63109
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
63110
|
+
|
63111
|
+
|
63112
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
63113
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
63114
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
|
63115
|
+
|
63116
|
+
|
63117
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:20:18 +0200
|
63118
|
+
Processing by IndexController#index as HTML
|
63119
|
+
Completed 500 Internal Server Error in 0ms
|
63120
|
+
|
63121
|
+
NoMethodError (undefined method `split!' for "300x460":String):
|
63122
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:50:in `get_mxit_info'
|
63123
|
+
/Users/linsenloots/Dev/payments/mxit-rails/lib/mxit_rails/page.rb:108:in `setup'
|
63124
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:407:in `_run__4482688311319451620__process_action__3891714710451963712__callbacks'
|
63125
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
63126
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
63127
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
63128
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
63129
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
63130
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
63131
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
63132
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
63133
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
63134
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
63135
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
63136
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
63137
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
63138
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
63139
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
63140
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
63141
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
63142
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
63143
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
63144
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
63145
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
63146
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
63147
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
63148
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
63149
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
63150
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
63151
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
63152
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
63153
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
63154
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
63155
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
63156
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
63157
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
63158
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
63159
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
63160
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
63161
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__14617200735377472__call__1013832695137029695__callbacks'
|
63162
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
63163
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
63164
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
63165
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
63166
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
63167
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
63168
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
63169
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
63170
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
63171
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
63172
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
63173
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
63174
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
63175
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
63176
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
63177
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
63178
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
63179
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
63180
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
63181
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
63182
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
63183
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
63184
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
63185
|
+
/Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
63186
|
+
|
63187
|
+
|
63188
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
63189
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
63190
|
+
Rendered /Users/linsenloots/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.5ms)
|
63191
|
+
|
63192
|
+
|
63193
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:21:32 +0200
|
63194
|
+
Connecting to database specified by database.yml
|
63195
|
+
Processing by IndexController#index as HTML
|
63196
|
+
========
|
63197
|
+
Mxit Params:
|
63198
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:unknown, :tariff_plan=>:free, :user_input=>nil}
|
63199
|
+
========
|
63200
|
+
Rendered index/index.html.erb within layouts/mxit (2.0ms)
|
63201
|
+
Completed 200 OK in 34ms (Views: 29.2ms | ActiveRecord: 0.0ms)
|
63202
|
+
|
63203
|
+
|
63204
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:23:27 +0200
|
63205
|
+
Processing by IndexController#index as HTML
|
63206
|
+
========
|
63207
|
+
Mxit Params:
|
63208
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:unknown, :tariff_plan=>:free, :user_input=>nil}
|
63209
|
+
========
|
63210
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63211
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
63212
|
+
|
63213
|
+
|
63214
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:25:36 +0200
|
63215
|
+
Connecting to database specified by database.yml
|
63216
|
+
Processing by IndexController#index as HTML
|
63217
|
+
========
|
63218
|
+
Mxit Params:
|
63219
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63220
|
+
========
|
63221
|
+
Rendered index/index.html.erb within layouts/mxit (1.9ms)
|
63222
|
+
Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.0ms)
|
63223
|
+
|
63224
|
+
|
63225
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:28:49 +0200
|
63226
|
+
Processing by IndexController#index as HTML
|
63227
|
+
========
|
63228
|
+
Mxit Params:
|
63229
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>"test+it"}
|
63230
|
+
========
|
63231
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63232
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
63233
|
+
|
63234
|
+
|
63235
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:30:46 +0200
|
63236
|
+
Connecting to database specified by database.yml
|
63237
|
+
Processing by IndexController#index as HTML
|
63238
|
+
========
|
63239
|
+
Mxit Params:
|
63240
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>"test+it/?"}
|
63241
|
+
========
|
63242
|
+
Rendered index/index.html.erb within layouts/mxit (1.8ms)
|
63243
|
+
Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
63244
|
+
Connecting to database specified by database.yml
|
63245
|
+
|
63246
|
+
|
63247
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:32:49 +0200
|
63248
|
+
Processing by IndexController#index as HTML
|
63249
|
+
========
|
63250
|
+
Mxit Params:
|
63251
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>"hello+there+sir!"}
|
63252
|
+
========
|
63253
|
+
Rendered index/index.html.erb within layouts/mxit (0.1ms)
|
63254
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
63255
|
+
|
63256
|
+
|
63257
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:33:19 +0200
|
63258
|
+
Processing by IndexController#index as HTML
|
63259
|
+
========
|
63260
|
+
Mxit Params:
|
63261
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>"1++2+=3"}
|
63262
|
+
========
|
63263
|
+
Rendered index/index.html.erb within layouts/mxit (0.1ms)
|
63264
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
63265
|
+
|
63266
|
+
|
63267
|
+
Started GET "/welcome" for 196.35.255.4 at 2012-10-05 07:34:44 +0200
|
63268
|
+
Connecting to database specified by database.yml
|
63269
|
+
Processing by WelcomeController#index as HTML
|
63270
|
+
========
|
63271
|
+
Mxit Params:
|
63272
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63273
|
+
========
|
63274
|
+
Rendered welcome/index.html.erb within layouts/mxit (1.9ms)
|
63275
|
+
Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.0ms)
|
63276
|
+
|
63277
|
+
|
63278
|
+
Started POST "/welcome" for 196.35.255.4 at 2012-10-05 07:34:56 +0200
|
63279
|
+
Processing by WelcomeController#index as HTML
|
63280
|
+
Parameters: {"_mxit_rails_submit"=>"true", "phone_number"=>"0819267557"}
|
63281
|
+
========
|
63282
|
+
Mxit Params:
|
63283
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63284
|
+
========
|
63285
|
+
Validation: "0819267557"
|
63286
|
+
This won't execute if an error occurred or if error! or redirect! was called
|
63287
|
+
Redirected to http://linsen.showoff.io/index/success
|
63288
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
63289
|
+
|
63290
|
+
|
63291
|
+
Started GET "/index/success" for 196.35.255.4 at 2012-10-05 07:34:57 +0200
|
63292
|
+
Processing by IndexController#success as HTML
|
63293
|
+
========
|
63294
|
+
Mxit Params:
|
63295
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63296
|
+
========
|
63297
|
+
Rendered index/success.html.erb within layouts/mxit (0.5ms)
|
63298
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
63299
|
+
|
63300
|
+
|
63301
|
+
Started GET "/index/success" for 196.35.255.4 at 2012-10-05 07:35:10 +0200
|
63302
|
+
Processing by IndexController#success as HTML
|
63303
|
+
========
|
63304
|
+
Mxit Params:
|
63305
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>"done"}
|
63306
|
+
========
|
63307
|
+
Rendered index/success.html.erb within layouts/mxit (0.1ms)
|
63308
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
63309
|
+
|
63310
|
+
|
63311
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:35:16 +0200
|
63312
|
+
Processing by IndexController#index as HTML
|
63313
|
+
========
|
63314
|
+
Mxit Params:
|
63315
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63316
|
+
========
|
63317
|
+
Rendered index/index.html.erb within layouts/mxit (0.7ms)
|
63318
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
63319
|
+
|
63320
|
+
|
63321
|
+
Started GET "/welcome/single" for 196.35.255.4 at 2012-10-05 07:36:22 +0200
|
63322
|
+
Processing by WelcomeController#single as HTML
|
63323
|
+
========
|
63324
|
+
Mxit Params:
|
63325
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63326
|
+
========
|
63327
|
+
Rendered welcome/single.html.erb within layouts/mxit (1.0ms)
|
63328
|
+
Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
63329
|
+
|
63330
|
+
|
63331
|
+
Started GET "/welcome/single" for 196.35.255.4 at 2012-10-05 07:36:27 +0200
|
63332
|
+
Processing by WelcomeController#single as HTML
|
63333
|
+
========
|
63334
|
+
Mxit Params:
|
63335
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>"1"}
|
63336
|
+
========
|
63337
|
+
Rendered welcome/single.html.erb within layouts/mxit (0.1ms)
|
63338
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
63339
|
+
|
63340
|
+
|
63341
|
+
Started GET "/welcome/single?_mxit_rails_submit=true&select=1" for 196.35.255.4 at 2012-10-05 07:36:32 +0200
|
63342
|
+
Processing by WelcomeController#single as HTML
|
63343
|
+
Parameters: {"_mxit_rails_submit"=>"true", "select"=>"1"}
|
63344
|
+
========
|
63345
|
+
Mxit Params:
|
63346
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63347
|
+
========
|
63348
|
+
Value: 1
|
63349
|
+
Redirected to http://linsen.showoff.io/index/success
|
63350
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
63351
|
+
|
63352
|
+
|
63353
|
+
Started GET "/index/success" for 196.35.255.4 at 2012-10-05 07:36:33 +0200
|
63354
|
+
Processing by IndexController#success as HTML
|
63355
|
+
========
|
63356
|
+
Mxit Params:
|
63357
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63358
|
+
========
|
63359
|
+
Rendered index/success.html.erb within layouts/mxit (0.1ms)
|
63360
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
63361
|
+
|
63362
|
+
|
63363
|
+
Started GET "/" for 196.35.255.4 at 2012-10-05 07:36:36 +0200
|
63364
|
+
Processing by IndexController#index as HTML
|
63365
|
+
========
|
63366
|
+
Mxit Params:
|
63367
|
+
{:mxit_id=>"m25575659002", :mxit_login=>"linsen", :display_name=>"Linsen", :nick=>"Linsen", :screen_width=>300, :screen_height=>460, :device_user_agent=>"iPhone", :contact=>"do.doing.done.staging", :location=>"ZA,,11,,,Cape Town,189004,4534282,", :country_code=>"ZA", :country_name=>"", :principal_subdivision_code=>"11", :principal_subdivision_name=>"", :city_code=>"", :city_name=>"Cape Town", :network_operator_id=>"189004", :client_features_bitset=>"4534282", :cell_id=>nil, :profile=>"en,ZA,1986-03-24,Male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Mon, 24 Mar 1986, :gender=>:male, :tariff_plan=>:free, :user_input=>nil}
|
63368
|
+
========
|
63369
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63370
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
63371
|
+
|
63372
|
+
|
63373
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 07:45:47 +0200
|
63374
|
+
Connecting to database specified by database.yml
|
63375
|
+
Processing by IndexController#index as HTML
|
63376
|
+
Rendered index/index.html.erb within layouts/mxit (1.9ms)
|
63377
|
+
Rendered inline template (0.3ms)
|
63378
|
+
Completed 200 OK in 40ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
63379
|
+
|
63380
|
+
|
63381
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 07:45:47 +0200
|
63382
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (2ms)
|
63383
|
+
|
63384
|
+
|
63385
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 07:45:47 +0200
|
63386
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (2ms)
|
63387
|
+
|
63388
|
+
|
63389
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 07:53:36 +0200
|
63390
|
+
Processing by EmulatorController#index as HTML
|
63391
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (19.3ms)
|
63392
|
+
Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
|
63393
|
+
|
63394
|
+
|
63395
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 07:53:36 +0200
|
63396
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
|
63397
|
+
|
63398
|
+
|
63399
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63400
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (10ms)
|
63401
|
+
|
63402
|
+
|
63403
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63404
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
|
63405
|
+
|
63406
|
+
|
63407
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63408
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (6ms)
|
63409
|
+
|
63410
|
+
|
63411
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63412
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (3ms)
|
63413
|
+
|
63414
|
+
|
63415
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63416
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (10ms)
|
63417
|
+
|
63418
|
+
|
63419
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63420
|
+
Processing by IndexController#index as HTML
|
63421
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63422
|
+
Rendered inline template (0.3ms)
|
63423
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
63424
|
+
|
63425
|
+
|
63426
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63427
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (7ms)
|
63428
|
+
|
63429
|
+
|
63430
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63431
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (4ms)
|
63432
|
+
|
63433
|
+
|
63434
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63435
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (2ms)
|
63436
|
+
|
63437
|
+
|
63438
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63439
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (3ms)
|
63440
|
+
|
63441
|
+
|
63442
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63443
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63444
|
+
|
63445
|
+
|
63446
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63447
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63448
|
+
|
63449
|
+
|
63450
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-05 07:53:37 +0200
|
63451
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
|
63452
|
+
|
63453
|
+
|
63454
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63455
|
+
Processing by EmulatorController#index as HTML
|
63456
|
+
Compiled mxit_rails/emulator.css (262ms) (pid 27679)
|
63457
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (272.4ms)
|
63458
|
+
Completed 200 OK in 274ms (Views: 273.5ms | ActiveRecord: 0.0ms)
|
63459
|
+
|
63460
|
+
|
63461
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63462
|
+
Served asset /mxit_rails/emulator.css - 200 OK (8ms)
|
63463
|
+
|
63464
|
+
|
63465
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63466
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63467
|
+
|
63468
|
+
|
63469
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63470
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
63471
|
+
|
63472
|
+
|
63473
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63474
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63475
|
+
|
63476
|
+
|
63477
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63478
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63479
|
+
|
63480
|
+
|
63481
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63482
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
|
63483
|
+
|
63484
|
+
|
63485
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63486
|
+
Processing by IndexController#index as HTML
|
63487
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63488
|
+
Rendered inline template (0.5ms)
|
63489
|
+
Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
63490
|
+
|
63491
|
+
|
63492
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63493
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63494
|
+
|
63495
|
+
|
63496
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63497
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63498
|
+
|
63499
|
+
|
63500
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63501
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63502
|
+
|
63503
|
+
|
63504
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63505
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63506
|
+
|
63507
|
+
|
63508
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63509
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63510
|
+
|
63511
|
+
|
63512
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 07:54:18 +0200
|
63513
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63514
|
+
|
63515
|
+
|
63516
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63517
|
+
Processing by EmulatorController#index as HTML
|
63518
|
+
Compiled mxit_rails/emulator.css (33ms) (pid 27679)
|
63519
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (45.8ms)
|
63520
|
+
Completed 200 OK in 47ms (Views: 46.8ms | ActiveRecord: 0.0ms)
|
63521
|
+
|
63522
|
+
|
63523
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63524
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63525
|
+
|
63526
|
+
|
63527
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63528
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63529
|
+
|
63530
|
+
|
63531
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63532
|
+
Served asset /mxit_rails/emulator.css - 200 OK (3ms)
|
63533
|
+
|
63534
|
+
|
63535
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63536
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
63537
|
+
|
63538
|
+
|
63539
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63540
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63541
|
+
|
63542
|
+
|
63543
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63544
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63545
|
+
|
63546
|
+
|
63547
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63548
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63549
|
+
|
63550
|
+
|
63551
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63552
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63553
|
+
|
63554
|
+
|
63555
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63556
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63557
|
+
|
63558
|
+
|
63559
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63560
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63561
|
+
|
63562
|
+
|
63563
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63564
|
+
Processing by IndexController#index as HTML
|
63565
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63566
|
+
Rendered inline template (0.3ms)
|
63567
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
63568
|
+
|
63569
|
+
|
63570
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63571
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63572
|
+
|
63573
|
+
|
63574
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 07:54:54 +0200
|
63575
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63576
|
+
|
63577
|
+
|
63578
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 07:55:23 +0200
|
63579
|
+
Processing by EmulatorController#index as HTML
|
63580
|
+
Compiled mxit_rails/emulator.css (30ms) (pid 27679)
|
63581
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (40.3ms)
|
63582
|
+
Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.0ms)
|
63583
|
+
|
63584
|
+
|
63585
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 07:55:23 +0200
|
63586
|
+
Served asset /mxit_rails/emulator.css - 200 OK (5ms)
|
63587
|
+
|
63588
|
+
|
63589
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 07:55:23 +0200
|
63590
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63591
|
+
|
63592
|
+
|
63593
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 07:55:23 +0200
|
63594
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63595
|
+
|
63596
|
+
|
63597
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 07:55:23 +0200
|
63598
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
63599
|
+
|
63600
|
+
|
63601
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 07:55:23 +0200
|
63602
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63603
|
+
|
63604
|
+
|
63605
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63606
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63607
|
+
|
63608
|
+
|
63609
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63610
|
+
Processing by IndexController#index as HTML
|
63611
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63612
|
+
Rendered inline template (0.4ms)
|
63613
|
+
Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
63614
|
+
|
63615
|
+
|
63616
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63617
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63618
|
+
|
63619
|
+
|
63620
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63621
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63622
|
+
|
63623
|
+
|
63624
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63625
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63626
|
+
|
63627
|
+
|
63628
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63629
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
|
63630
|
+
|
63631
|
+
|
63632
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63633
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63634
|
+
|
63635
|
+
|
63636
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 07:55:24 +0200
|
63637
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63638
|
+
|
63639
|
+
|
63640
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63641
|
+
Processing by EmulatorController#index as HTML
|
63642
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.4ms)
|
63643
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
63644
|
+
|
63645
|
+
|
63646
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63647
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
63648
|
+
|
63649
|
+
|
63650
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63651
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
|
63652
|
+
|
63653
|
+
|
63654
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63655
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63656
|
+
|
63657
|
+
|
63658
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63659
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63660
|
+
|
63661
|
+
|
63662
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63663
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
|
63664
|
+
|
63665
|
+
|
63666
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63667
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63668
|
+
|
63669
|
+
|
63670
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63671
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63672
|
+
|
63673
|
+
|
63674
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63675
|
+
Processing by IndexController#index as HTML
|
63676
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63677
|
+
Rendered inline template (0.3ms)
|
63678
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
63679
|
+
|
63680
|
+
|
63681
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63682
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63683
|
+
|
63684
|
+
|
63685
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63686
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63687
|
+
|
63688
|
+
|
63689
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:38:18 +0200
|
63690
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63691
|
+
|
63692
|
+
|
63693
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:38:19 +0200
|
63694
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63695
|
+
|
63696
|
+
|
63697
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:38:19 +0200
|
63698
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63699
|
+
|
63700
|
+
|
63701
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63702
|
+
Processing by EmulatorController#index as HTML
|
63703
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (4.6ms)
|
63704
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
63705
|
+
|
63706
|
+
|
63707
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63708
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
63709
|
+
|
63710
|
+
|
63711
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63712
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
|
63713
|
+
|
63714
|
+
|
63715
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63716
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63717
|
+
|
63718
|
+
|
63719
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63720
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63721
|
+
|
63722
|
+
|
63723
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63724
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
63725
|
+
|
63726
|
+
|
63727
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63728
|
+
Processing by IndexController#index as HTML
|
63729
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63730
|
+
Rendered inline template (0.3ms)
|
63731
|
+
Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
63732
|
+
|
63733
|
+
|
63734
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63735
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63736
|
+
|
63737
|
+
|
63738
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63739
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63740
|
+
|
63741
|
+
|
63742
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63743
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63744
|
+
|
63745
|
+
|
63746
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63747
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
|
63748
|
+
|
63749
|
+
|
63750
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63751
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63752
|
+
|
63753
|
+
|
63754
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:38:36 +0200
|
63755
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63756
|
+
|
63757
|
+
|
63758
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:39:23 +0200
|
63759
|
+
Processing by EmulatorController#index as HTML
|
63760
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.6ms)
|
63761
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
63762
|
+
|
63763
|
+
|
63764
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:39:23 +0200
|
63765
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
63766
|
+
|
63767
|
+
|
63768
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63769
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63770
|
+
|
63771
|
+
|
63772
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63773
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
|
63774
|
+
|
63775
|
+
|
63776
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63777
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63778
|
+
|
63779
|
+
|
63780
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63781
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63782
|
+
|
63783
|
+
|
63784
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63785
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63786
|
+
|
63787
|
+
|
63788
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63789
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63790
|
+
|
63791
|
+
|
63792
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63793
|
+
Served asset /mxit_rails/out.png - 200 OK (0ms)
|
63794
|
+
|
63795
|
+
|
63796
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63797
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63798
|
+
|
63799
|
+
|
63800
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63801
|
+
Processing by IndexController#index as HTML
|
63802
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63803
|
+
Rendered inline template (0.5ms)
|
63804
|
+
Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
63805
|
+
|
63806
|
+
|
63807
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63808
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63809
|
+
|
63810
|
+
|
63811
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63812
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63813
|
+
|
63814
|
+
|
63815
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63816
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63817
|
+
|
63818
|
+
|
63819
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-05 08:39:24 +0200
|
63820
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|
63821
|
+
|
63822
|
+
|
63823
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63824
|
+
Processing by EmulatorController#index as HTML
|
63825
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (4.0ms)
|
63826
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
63827
|
+
|
63828
|
+
|
63829
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63830
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
63831
|
+
|
63832
|
+
|
63833
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63834
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
|
63835
|
+
|
63836
|
+
|
63837
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63838
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63839
|
+
|
63840
|
+
|
63841
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63842
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63843
|
+
|
63844
|
+
|
63845
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63846
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63847
|
+
|
63848
|
+
|
63849
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63850
|
+
Processing by IndexController#index as HTML
|
63851
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63852
|
+
Rendered inline template (0.3ms)
|
63853
|
+
Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
63854
|
+
|
63855
|
+
|
63856
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63857
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63858
|
+
|
63859
|
+
|
63860
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63861
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63862
|
+
|
63863
|
+
|
63864
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63865
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63866
|
+
|
63867
|
+
|
63868
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63869
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63870
|
+
|
63871
|
+
|
63872
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63873
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63874
|
+
|
63875
|
+
|
63876
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63877
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63878
|
+
|
63879
|
+
|
63880
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:43:15 +0200
|
63881
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63882
|
+
|
63883
|
+
|
63884
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63885
|
+
Processing by EmulatorController#index as HTML
|
63886
|
+
Compiled mxit_rails/emulator.css (38ms) (pid 27679)
|
63887
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (51.7ms)
|
63888
|
+
Completed 200 OK in 53ms (Views: 52.6ms | ActiveRecord: 0.0ms)
|
63889
|
+
|
63890
|
+
|
63891
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63892
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
63893
|
+
|
63894
|
+
|
63895
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63896
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
63897
|
+
|
63898
|
+
|
63899
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63900
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63901
|
+
|
63902
|
+
|
63903
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63904
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63905
|
+
|
63906
|
+
|
63907
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63908
|
+
Served asset /mxit_rails/emulator.css - 200 OK (2ms)
|
63909
|
+
|
63910
|
+
|
63911
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63912
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
63913
|
+
|
63914
|
+
|
63915
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63916
|
+
Processing by IndexController#index as HTML
|
63917
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63918
|
+
Rendered inline template (0.3ms)
|
63919
|
+
Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
63920
|
+
|
63921
|
+
|
63922
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63923
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63924
|
+
|
63925
|
+
|
63926
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63927
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63928
|
+
|
63929
|
+
|
63930
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63931
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63932
|
+
|
63933
|
+
|
63934
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63935
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63936
|
+
|
63937
|
+
|
63938
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63939
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
63940
|
+
|
63941
|
+
|
63942
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:43:56 +0200
|
63943
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
63944
|
+
|
63945
|
+
|
63946
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63947
|
+
Processing by EmulatorController#index as HTML
|
63948
|
+
Compiled mxit_rails/emulator.js (3ms) (pid 27679)
|
63949
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (55.6ms)
|
63950
|
+
Completed 200 OK in 57ms (Views: 56.9ms | ActiveRecord: 0.0ms)
|
63951
|
+
|
63952
|
+
|
63953
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63954
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
63955
|
+
|
63956
|
+
|
63957
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63958
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (6ms)
|
63959
|
+
|
63960
|
+
|
63961
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63962
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
63963
|
+
|
63964
|
+
|
63965
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63966
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
63967
|
+
|
63968
|
+
|
63969
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63970
|
+
Served asset /mxit_rails/emulator.js - 200 OK (15ms)
|
63971
|
+
|
63972
|
+
|
63973
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:50:13 +0200
|
63974
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
|
63975
|
+
|
63976
|
+
|
63977
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
63978
|
+
Processing by IndexController#index as HTML
|
63979
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
63980
|
+
Rendered inline template (0.3ms)
|
63981
|
+
Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
63982
|
+
|
63983
|
+
|
63984
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
63985
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
63986
|
+
|
63987
|
+
|
63988
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
63989
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
63990
|
+
|
63991
|
+
|
63992
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
63993
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
63994
|
+
|
63995
|
+
|
63996
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
63997
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
63998
|
+
|
63999
|
+
|
64000
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
64001
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64002
|
+
|
64003
|
+
|
64004
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:50:14 +0200
|
64005
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64006
|
+
|
64007
|
+
|
64008
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64009
|
+
Processing by EmulatorController#index as HTML
|
64010
|
+
Compiled mxit_rails/emulator.css (38ms) (pid 27679)
|
64011
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (50.8ms)
|
64012
|
+
Completed 200 OK in 52ms (Views: 51.9ms | ActiveRecord: 0.0ms)
|
64013
|
+
|
64014
|
+
|
64015
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64016
|
+
Served asset /mxit_rails/emulator.css - 200 OK (8ms)
|
64017
|
+
|
64018
|
+
|
64019
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64020
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64021
|
+
|
64022
|
+
|
64023
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64024
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
|
64025
|
+
|
64026
|
+
|
64027
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64028
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64029
|
+
|
64030
|
+
|
64031
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64032
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64033
|
+
|
64034
|
+
|
64035
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64036
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
64037
|
+
|
64038
|
+
|
64039
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64040
|
+
Processing by IndexController#index as HTML
|
64041
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64042
|
+
Rendered inline template (0.3ms)
|
64043
|
+
Completed 200 OK in 43ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
64044
|
+
|
64045
|
+
|
64046
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64047
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64048
|
+
|
64049
|
+
|
64050
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64051
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64052
|
+
|
64053
|
+
|
64054
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64055
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
|
64056
|
+
|
64057
|
+
|
64058
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64059
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
64060
|
+
|
64061
|
+
|
64062
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64063
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64064
|
+
|
64065
|
+
|
64066
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:50:43 +0200
|
64067
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64068
|
+
|
64069
|
+
|
64070
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64071
|
+
Processing by EmulatorController#index as HTML
|
64072
|
+
Compiled mxit_rails/emulator.css (36ms) (pid 27679)
|
64073
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (48.7ms)
|
64074
|
+
Completed 200 OK in 50ms (Views: 50.1ms | ActiveRecord: 0.0ms)
|
64075
|
+
|
64076
|
+
|
64077
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64078
|
+
Served asset /mxit_rails/emulator.css - 200 OK (3ms)
|
64079
|
+
|
64080
|
+
|
64081
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64082
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64083
|
+
|
64084
|
+
|
64085
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64086
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
64087
|
+
|
64088
|
+
|
64089
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64090
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64091
|
+
|
64092
|
+
|
64093
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64094
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64095
|
+
|
64096
|
+
|
64097
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64098
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
64099
|
+
|
64100
|
+
|
64101
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64102
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
|
64103
|
+
|
64104
|
+
|
64105
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64106
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
64107
|
+
|
64108
|
+
|
64109
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64110
|
+
Processing by IndexController#index as HTML
|
64111
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64112
|
+
Rendered inline template (0.4ms)
|
64113
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64114
|
+
|
64115
|
+
|
64116
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64117
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64118
|
+
|
64119
|
+
|
64120
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64121
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64122
|
+
|
64123
|
+
|
64124
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64125
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64126
|
+
|
64127
|
+
|
64128
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:51:12 +0200
|
64129
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64130
|
+
|
64131
|
+
|
64132
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64133
|
+
Processing by EmulatorController#index as HTML
|
64134
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.7ms)
|
64135
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
64136
|
+
|
64137
|
+
|
64138
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64139
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
64140
|
+
|
64141
|
+
|
64142
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64143
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64144
|
+
|
64145
|
+
|
64146
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64147
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64148
|
+
|
64149
|
+
|
64150
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64151
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64152
|
+
|
64153
|
+
|
64154
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64155
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
|
64156
|
+
|
64157
|
+
|
64158
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64159
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
64160
|
+
|
64161
|
+
|
64162
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64163
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64164
|
+
|
64165
|
+
|
64166
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64167
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
|
64168
|
+
|
64169
|
+
|
64170
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64171
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
64172
|
+
|
64173
|
+
|
64174
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64175
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64176
|
+
|
64177
|
+
|
64178
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64179
|
+
Processing by IndexController#index as HTML
|
64180
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
64181
|
+
Rendered inline template (0.4ms)
|
64182
|
+
Completed 200 OK in 7ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
64183
|
+
|
64184
|
+
|
64185
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64186
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64187
|
+
|
64188
|
+
|
64189
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:51:21 +0200
|
64190
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64191
|
+
|
64192
|
+
|
64193
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64194
|
+
Processing by EmulatorController#index as HTML
|
64195
|
+
Compiled mxit_rails/emulator.css (35ms) (pid 27679)
|
64196
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (77.9ms)
|
64197
|
+
Completed 200 OK in 79ms (Views: 79.1ms | ActiveRecord: 0.0ms)
|
64198
|
+
|
64199
|
+
|
64200
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64201
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
|
64202
|
+
|
64203
|
+
|
64204
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64205
|
+
Served asset /mxit_rails/emulator.css - 200 OK (2ms)
|
64206
|
+
|
64207
|
+
|
64208
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64209
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
64210
|
+
|
64211
|
+
|
64212
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64213
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64214
|
+
|
64215
|
+
|
64216
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64217
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64218
|
+
|
64219
|
+
|
64220
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64221
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
64222
|
+
|
64223
|
+
|
64224
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64225
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (7ms)
|
64226
|
+
|
64227
|
+
|
64228
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64229
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
64230
|
+
|
64231
|
+
|
64232
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64233
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64234
|
+
|
64235
|
+
|
64236
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64237
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64238
|
+
|
64239
|
+
|
64240
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64241
|
+
Processing by IndexController#index as HTML
|
64242
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64243
|
+
Rendered inline template (0.3ms)
|
64244
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
64245
|
+
|
64246
|
+
|
64247
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64248
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64249
|
+
|
64250
|
+
|
64251
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:51:39 +0200
|
64252
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64253
|
+
|
64254
|
+
|
64255
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64256
|
+
Processing by EmulatorController#index as HTML
|
64257
|
+
Compiled mxit_rails/emulator.css (36ms) (pid 27679)
|
64258
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (48.0ms)
|
64259
|
+
Completed 200 OK in 49ms (Views: 49.3ms | ActiveRecord: 0.0ms)
|
64260
|
+
|
64261
|
+
|
64262
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64263
|
+
Served asset /mxit_rails/emulator.css - 200 OK (7ms)
|
64264
|
+
|
64265
|
+
|
64266
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64267
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64268
|
+
|
64269
|
+
|
64270
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64271
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64272
|
+
|
64273
|
+
|
64274
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64275
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
|
64276
|
+
|
64277
|
+
|
64278
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64279
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64280
|
+
|
64281
|
+
|
64282
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64283
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
|
64284
|
+
|
64285
|
+
|
64286
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64287
|
+
Processing by IndexController#index as HTML
|
64288
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64289
|
+
Rendered inline template (0.3ms)
|
64290
|
+
Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
64291
|
+
|
64292
|
+
|
64293
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64294
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
64295
|
+
|
64296
|
+
|
64297
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64298
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
64299
|
+
|
64300
|
+
|
64301
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64302
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64303
|
+
|
64304
|
+
|
64305
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64306
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64307
|
+
|
64308
|
+
|
64309
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:52:08 +0200
|
64310
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64311
|
+
|
64312
|
+
|
64313
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:52:09 +0200
|
64314
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64315
|
+
|
64316
|
+
|
64317
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64318
|
+
Processing by EmulatorController#index as HTML
|
64319
|
+
Compiled mxit_rails/emulator.js (2ms) (pid 27679)
|
64320
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (47.1ms)
|
64321
|
+
Completed 200 OK in 49ms (Views: 48.3ms | ActiveRecord: 0.0ms)
|
64322
|
+
|
64323
|
+
|
64324
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64325
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
64326
|
+
|
64327
|
+
|
64328
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64329
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64330
|
+
|
64331
|
+
|
64332
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64333
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64334
|
+
|
64335
|
+
|
64336
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64337
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64338
|
+
|
64339
|
+
|
64340
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64341
|
+
Served asset /mxit_rails/emulator.js - 200 OK (6ms)
|
64342
|
+
|
64343
|
+
|
64344
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64345
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (7ms)
|
64346
|
+
|
64347
|
+
|
64348
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64349
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64350
|
+
|
64351
|
+
|
64352
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64353
|
+
Processing by IndexController#index as HTML
|
64354
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
64355
|
+
Rendered inline template (0.4ms)
|
64356
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
64357
|
+
|
64358
|
+
|
64359
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64360
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64361
|
+
|
64362
|
+
|
64363
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64364
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
64365
|
+
|
64366
|
+
|
64367
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64368
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
|
64369
|
+
|
64370
|
+
|
64371
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64372
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64373
|
+
|
64374
|
+
|
64375
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:53:19 +0200
|
64376
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64377
|
+
|
64378
|
+
|
64379
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64380
|
+
Processing by EmulatorController#index as HTML
|
64381
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.3ms)
|
64382
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
64383
|
+
|
64384
|
+
|
64385
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64386
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
64387
|
+
|
64388
|
+
|
64389
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64390
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64391
|
+
|
64392
|
+
|
64393
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64394
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
|
64395
|
+
|
64396
|
+
|
64397
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64398
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64399
|
+
|
64400
|
+
|
64401
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64402
|
+
Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
|
64403
|
+
|
64404
|
+
|
64405
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64406
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (4ms)
|
64407
|
+
|
64408
|
+
|
64409
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64410
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
|
64411
|
+
|
64412
|
+
|
64413
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64414
|
+
Processing by IndexController#index as HTML
|
64415
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
64416
|
+
Rendered inline template (0.3ms)
|
64417
|
+
Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
64418
|
+
|
64419
|
+
|
64420
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64421
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64422
|
+
|
64423
|
+
|
64424
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64425
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64426
|
+
|
64427
|
+
|
64428
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64429
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64430
|
+
|
64431
|
+
|
64432
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64433
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
|
64434
|
+
|
64435
|
+
|
64436
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:53:38 +0200
|
64437
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64438
|
+
|
64439
|
+
|
64440
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64441
|
+
Processing by EmulatorController#index as HTML
|
64442
|
+
Compiled mxit_rails/emulator.js (4ms) (pid 27679)
|
64443
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (46.3ms)
|
64444
|
+
Completed 200 OK in 48ms (Views: 47.8ms | ActiveRecord: 0.0ms)
|
64445
|
+
|
64446
|
+
|
64447
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64448
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
|
64449
|
+
|
64450
|
+
|
64451
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64452
|
+
Served asset /mxit_rails/emulator.js - 200 OK (11ms)
|
64453
|
+
|
64454
|
+
|
64455
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64456
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (0ms)
|
64457
|
+
|
64458
|
+
|
64459
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64460
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
|
64461
|
+
|
64462
|
+
|
64463
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64464
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
|
64465
|
+
|
64466
|
+
|
64467
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64468
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
|
64469
|
+
|
64470
|
+
|
64471
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64472
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
|
64473
|
+
|
64474
|
+
|
64475
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64476
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
|
64477
|
+
|
64478
|
+
|
64479
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64480
|
+
Processing by IndexController#index as HTML
|
64481
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64482
|
+
Rendered inline template (0.3ms)
|
64483
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
64484
|
+
|
64485
|
+
|
64486
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64487
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (0ms)
|
64488
|
+
|
64489
|
+
|
64490
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64491
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
|
64492
|
+
|
64493
|
+
|
64494
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64495
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64496
|
+
|
64497
|
+
|
64498
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:53:55 +0200
|
64499
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64500
|
+
|
64501
|
+
|
64502
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:54:03 +0200
|
64503
|
+
Processing by IndexController#index as HTML
|
64504
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
64505
|
+
Rendered inline template (0.4ms)
|
64506
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
64507
|
+
|
64508
|
+
|
64509
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:54:03 +0200
|
64510
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64511
|
+
|
64512
|
+
|
64513
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:54:03 +0200
|
64514
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64515
|
+
|
64516
|
+
|
64517
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:54:08 +0200
|
64518
|
+
Processing by IndexController#index as HTML
|
64519
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64520
|
+
Rendered inline template (0.3ms)
|
64521
|
+
Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64522
|
+
|
64523
|
+
|
64524
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:54:08 +0200
|
64525
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64526
|
+
|
64527
|
+
|
64528
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:54:09 +0200
|
64529
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64530
|
+
|
64531
|
+
|
64532
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:54:18 +0200
|
64533
|
+
Connecting to database specified by database.yml
|
64534
|
+
Processing by IndexController#index as HTML
|
64535
|
+
================
|
64536
|
+
{:mxit_id=>"m987654321", :mxit_login=>"MxitLogin", :display_name=>"Nickname", :nick=>"Nickname", :screen_width=>240, :screen_height=>320, :device_user_agent=>"EMULATOR", :contact=>"ContactName", :location=>"ZA,South Africa,11,Western Cape,23,Kraaifontein,88,13072382,8fbe253", :country_code=>"ZA", :country_name=>"South Africa", :principal_subdivision_code=>"11", :principal_subdivision_name=>"Western Cape", :city_code=>"23", :city_name=>"Kraaifontein", :network_operator_id=>"88", :client_features_bitset=>"13072382", :cell_id=>"8fbe253", :profile=>"en,ZA,1984-01-01,male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Sun, 01 Jan 1984, :gender=>:male, :tariff_plan=>:free, :user_input=>nil, :distribution_code=>"DISTRO_CODE", :mobile_number=>"27820123456"}
|
64537
|
+
================
|
64538
|
+
Rendered index/index.html.erb within layouts/mxit (2.7ms)
|
64539
|
+
Rendered inline template (0.3ms)
|
64540
|
+
Completed 200 OK in 40ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64541
|
+
|
64542
|
+
|
64543
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:54:18 +0200
|
64544
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
|
64545
|
+
|
64546
|
+
|
64547
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:54:19 +0200
|
64548
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (2ms)
|
64549
|
+
|
64550
|
+
|
64551
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:54:53 +0200
|
64552
|
+
Processing by IndexController#index as HTML
|
64553
|
+
================
|
64554
|
+
{:mxit_id=>"m987654321", :mxit_login=>"MxitLogin", :display_name=>"Nickname", :nick=>"Nickname", :screen_width=>240, :screen_height=>320, :device_user_agent=>"EMULATOR", :contact=>"ContactName", :location=>"ZA,South Africa,11,Western Cape,23,Kraaifontein,88,13072382,8fbe253", :country_code=>"ZA", :country_name=>"South Africa", :principal_subdivision_code=>"11", :principal_subdivision_name=>"Western Cape", :city_code=>"23", :city_name=>"Kraaifontein", :network_operator_id=>"88", :client_features_bitset=>"13072382", :cell_id=>"8fbe253", :profile=>"en,ZA,1984-01-01,male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Sun, 01 Jan 1984, :gender=>:male, :tariff_plan=>:free, :user_input=>nil, :distribution_code=>"DISTRO_CODE", :mobile_number=>"27820123456"}
|
64555
|
+
================
|
64556
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
64557
|
+
Rendered inline template (0.3ms)
|
64558
|
+
Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64559
|
+
|
64560
|
+
|
64561
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:54:53 +0200
|
64562
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64563
|
+
|
64564
|
+
|
64565
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:54:53 +0200
|
64566
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64567
|
+
|
64568
|
+
|
64569
|
+
Started GET "/emulator/" for 127.0.0.1 at 2012-10-05 08:55:49 +0200
|
64570
|
+
Processing by EmulatorController#index as HTML
|
64571
|
+
Compiled mxit_rails/emulator.js (2ms) (pid 30200)
|
64572
|
+
Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (19.3ms)
|
64573
|
+
Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
|
64574
|
+
|
64575
|
+
|
64576
|
+
Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-10-05 08:55:49 +0200
|
64577
|
+
Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (8ms)
|
64578
|
+
|
64579
|
+
|
64580
|
+
Started GET "/assets/mxit_rails/jquery.history.js?body=1" for 127.0.0.1 at 2012-10-05 08:55:49 +0200
|
64581
|
+
Served asset /mxit_rails/jquery.history.js - 304 Not Modified (3ms)
|
64582
|
+
|
64583
|
+
|
64584
|
+
Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-10-05 08:55:49 +0200
|
64585
|
+
Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
|
64586
|
+
|
64587
|
+
|
64588
|
+
Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-10-05 08:55:49 +0200
|
64589
|
+
Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
|
64590
|
+
|
64591
|
+
|
64592
|
+
Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64593
|
+
Served asset /mxit_rails/emulator.js - 200 OK (5ms)
|
64594
|
+
|
64595
|
+
|
64596
|
+
Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64597
|
+
Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
|
64598
|
+
|
64599
|
+
|
64600
|
+
Started GET "/assets/mxit_rails/home.png" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64601
|
+
Served asset /mxit_rails/home.png - 304 Not Modified (28ms)
|
64602
|
+
|
64603
|
+
|
64604
|
+
Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64605
|
+
Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
|
64606
|
+
|
64607
|
+
|
64608
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64609
|
+
Processing by IndexController#index as HTML
|
64610
|
+
================
|
64611
|
+
{:mxit_id=>"m987654321", :mxit_login=>"MxitLogin", :display_name=>"Nickname", :nick=>"Nickname", :screen_width=>240, :screen_height=>320, :device_user_agent=>"EMULATOR", :contact=>"ContactName", :location=>"ZA,South Africa,11,Western Cape,23,Kraaifontein,88,13072382,8fbe253", :country_code=>"ZA", :country_name=>"South Africa", :principal_subdivision_code=>"11", :principal_subdivision_name=>"Western Cape", :city_code=>"23", :city_name=>"Kraaifontein", :network_operator_id=>"88", :client_features_bitset=>"13072382", :cell_id=>"8fbe253", :profile=>"en,ZA,1984-01-01,male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Sun, 01 Jan 1984, :gender=>:male, :tariff_plan=>:free, :user_input=>nil, :distribution_code=>"DISTRO_CODE", :mobile_number=>"27820123456"}
|
64612
|
+
================
|
64613
|
+
Rendered index/index.html.erb within layouts/mxit (0.2ms)
|
64614
|
+
Rendered inline template (0.3ms)
|
64615
|
+
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
64616
|
+
|
64617
|
+
|
64618
|
+
Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64619
|
+
Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
|
64620
|
+
|
64621
|
+
|
64622
|
+
Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64623
|
+
Served asset /mxit_rails/refresh.png - 304 Not Modified (3ms)
|
64624
|
+
|
64625
|
+
|
64626
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64627
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64628
|
+
|
64629
|
+
|
64630
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64631
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64632
|
+
|
64633
|
+
|
64634
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-05 08:55:50 +0200
|
64635
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (3ms)
|
64636
|
+
|
64637
|
+
|
64638
|
+
Started GET "/" for 127.0.0.1 at 2012-10-05 08:55:58 +0200
|
64639
|
+
Processing by IndexController#index as HTML
|
64640
|
+
================
|
64641
|
+
{:mxit_id=>"m987654321", :mxit_login=>"MxitLogin", :display_name=>"Nickname", :nick=>"Nickname", :screen_width=>240, :screen_height=>320, :device_user_agent=>"EMULATOR", :contact=>"ContactName", :location=>"ZA,South Africa,11,Western Cape,23,Kraaifontein,88,13072382,8fbe253", :country_code=>"ZA", :country_name=>"South Africa", :principal_subdivision_code=>"11", :principal_subdivision_name=>"Western Cape", :city_code=>"23", :city_name=>"Kraaifontein", :network_operator_id=>"88", :client_features_bitset=>"13072382", :cell_id=>"8fbe253", :profile=>"en,ZA,1984-01-01,male,1", :language_code=>"en", :registered_country_code=>"ZA", :date_of_birth=>Sun, 01 Jan 1984, :gender=>:male, :tariff_plan=>:free, :user_input=>nil, :distribution_code=>"DISTRO_CODE", :mobile_number=>"27820123456"}
|
64642
|
+
================
|
64643
|
+
Rendered index/index.html.erb within layouts/mxit (0.3ms)
|
64644
|
+
Rendered inline template (0.4ms)
|
64645
|
+
Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
64646
|
+
|
64647
|
+
|
64648
|
+
Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-10-05 08:55:58 +0200
|
64649
|
+
Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
|
64650
|
+
|
64651
|
+
|
64652
|
+
Started GET "/assets/mxit_rails/emoticons.png" for 127.0.0.1 at 2012-10-05 08:55:58 +0200
|
64653
|
+
Served asset /mxit_rails/emoticons.png - 304 Not Modified (0ms)
|
64654
|
+
|
64655
|
+
|
64656
|
+
Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-10-05 08:55:58 +0200
|
64657
|
+
Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
|