mxit-rails 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,28 @@
2
2
  //= require mxit_rails/jquery.cookie
3
3
 
4
4
  Emulator = (function() {
5
+ var keys = {
6
+ BACKSPACE: 8,
7
+ ENTER: 13,
8
+ ESCAPE: 27,
9
+
10
+ SPACE: 32,
11
+
12
+ LEFT: 37,
13
+ UP: 38,
14
+ RIGHT: 39,
15
+ DOWN: 40,
16
+
17
+ ZERO: 48,
18
+ NINE: 57,
19
+
20
+ A: 65,
21
+ Z: 90
22
+ };
23
+
5
24
  return {
25
+ activeLink: 0,
26
+
6
27
  setCookie: function(mxitId, msisdn) {
7
28
  // Create cookies. Use only lowercase cookie names - the server expects this (case insensitivity seems dodgy)
8
29
  $.cookie('x-mxit-login', mxitId, {path: '/'});
@@ -82,15 +103,61 @@ Emulator = (function() {
82
103
  },
83
104
 
84
105
  updateIframe: function() {
85
- if (Emulator.iframeElement('form').length > 0) {
106
+ Emulator.iframeElement('body').on('keydown', $.proxy(Emulator, 'key'));
107
+
108
+ if (this.hasInput()) {
109
+ $('#phone-input').attr('disabled', false);
110
+ this.activeLink = this.numLinks();
111
+ } else {
112
+ $('#phone-input').attr('disabled', 'disabled').blur();
113
+ this.activeLink = 0;
114
+ }
115
+ this.focusLink();
116
+ },
117
+
118
+ key: function(e) {
119
+ if ((e.keyCode == keys.UP) || (e.keyCode == keys.DOWN)) {
120
+ if (e.keyCode == keys.UP) {
121
+ this.activeLink--;
122
+ } else {
123
+ this.activeLink++
124
+ }
125
+ this.focusLink();
126
+ }
127
+ },
128
+
129
+ hasInput: function() {
130
+ return Emulator.iframeElement('form').length > 0;
131
+ },
132
+
133
+ numLinks: function() {
134
+ return Emulator.iframeElement('a').length;
135
+ },
136
+
137
+ focusLink: function() {
138
+ var num = this.numLinks();
139
+ var max = this.hasInput() ? num : num - 1;
140
+
141
+ if (this.activeLink < 0) this.activeLink = max;
142
+ if (this.activeLink > max) this.activeLink = 0;
143
+
144
+ if (this.activeLink == num) {
145
+ this.focusInput();
146
+ } else {
147
+ $(Emulator.iframeElement('a')[this.activeLink]).focus();
148
+ }
149
+ },
150
+
151
+ focusInput: function() {
152
+ if (this.hasInput()) {
86
153
  $('#phone-input').attr('disabled', false).focus();
87
154
  } else {
88
155
  $('#phone-input').attr('disabled', 'disabled').blur();
89
- }
156
+ }
90
157
  },
91
158
 
92
159
  submit: function(e) {
93
- if (e.charCode == 13) {
160
+ if (e.charCode == keys.ENTER) {
94
161
  if (Emulator.iframeElement('form').length > 0) {
95
162
  Emulator.iframeElement('input[type=text]').val($('#phone-input').val());
96
163
  Emulator.iframeElement('input[type=submit]').click();
@@ -115,6 +182,7 @@ $(function() {
115
182
  Emulator.clearCredentials();
116
183
  }
117
184
 
185
+ $('body').on('keydown', $.proxy(Emulator, 'key'));
118
186
  $('#phone-input').on('keypress', $.proxy(Emulator, 'submit'))
119
187
 
120
188
  });
@@ -10,6 +10,9 @@
10
10
  <% if request.headers['x-mxit-login'].nil? %>
11
11
  <!-- Include a CSS file, but only in a browser/emulator, not on mxit -->
12
12
  <%= stylesheet_link_tag "mxit_rails/included" %>
13
+ <style type="text/css">
14
+ a:focus { outline: none; <%= mxit_style :link_hover %> }
15
+ </style>
13
16
  <% end %>
14
17
 
15
18
  <style type="text/css">
@@ -1,3 +1,3 @@
1
1
  module MxitRails
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -4,3 +4,4 @@
4
4
 
5
5
  <p><%= mxit_link '/mxit/welcome', 'Single-page form' %><p>
6
6
  <p><%= mxit_link '/mxit/form', 'Multi-step form' %><p>
7
+ <p><%= mxit_link '/mxit/index', 'An extra link' %><p>
@@ -35677,3 +35677,4423 @@ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
35677
35677
 
35678
35678
  Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 13:54:35 +0200
35679
35679
  Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35680
+
35681
+
35682
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:02:19 +0200
35683
+ Connecting to database specified by database.yml
35684
+ Processing by EmulatorController#index as HTML
35685
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.3ms)
35686
+ Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
35687
+
35688
+
35689
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:19 +0200
35690
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (2ms)
35691
+
35692
+
35693
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:02:19 +0200
35694
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (5ms)
35695
+
35696
+
35697
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:02:19 +0200
35698
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
35699
+
35700
+
35701
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:02:19 +0200
35702
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
35703
+
35704
+
35705
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:02:19 +0200
35706
+ Served asset /mxit_rails/go.png - 304 Not Modified (27ms)
35707
+
35708
+
35709
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:02:20 +0200
35710
+ Processing by IndexController#index as HTML
35711
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
35712
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
35713
+
35714
+
35715
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:02:20 +0200
35716
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
35717
+
35718
+
35719
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:02:20 +0200
35720
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
35721
+
35722
+
35723
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:02:20 +0200
35724
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (3ms)
35725
+
35726
+
35727
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:20 +0200
35728
+ Served asset /mxit_rails/included.css - 304 Not Modified (3ms)
35729
+
35730
+
35731
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:02:20 +0200
35732
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (2ms)
35733
+
35734
+
35735
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:02:21 +0200
35736
+ Processing by WelcomeController#index as HTML
35737
+ Rendered welcome/index.html.erb within layouts/mxit (0.5ms)
35738
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
35739
+
35740
+
35741
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:21 +0200
35742
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35743
+
35744
+
35745
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:02:22 +0200
35746
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35747
+
35748
+
35749
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 15:02:30 +0200
35750
+ Processing by WelcomeController#index as HTML
35751
+ Parameters: {"phone_number"=>"0829267557", "_mxit_rails_submit"=>"Proceed"}
35752
+ Validation: "0829267557"
35753
+ Output: true
35754
+ This won't execute if an error occurred or if error! or redirect! was called
35755
+ Redirected to http://localhost:3000/mxit/index/success
35756
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
35757
+
35758
+
35759
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:02:30 +0200
35760
+ Processing by IndexController#success as HTML
35761
+ Rendered index/success.html.erb within layouts/mxit (0.8ms)
35762
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
35763
+
35764
+
35765
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:30 +0200
35766
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35767
+
35768
+
35769
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:02:30 +0200
35770
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35771
+
35772
+
35773
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:02:32 +0200
35774
+ Processing by IndexController#index as HTML
35775
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
35776
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
35777
+
35778
+
35779
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:32 +0200
35780
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35781
+
35782
+
35783
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:02:32 +0200
35784
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35785
+
35786
+
35787
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:02:34 +0200
35788
+ Processing by FormController#index as HTML
35789
+ Rendered form/index/start.html.erb within layouts/mxit (0.5ms)
35790
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
35791
+
35792
+
35793
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:34 +0200
35794
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35795
+
35796
+
35797
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:02:34 +0200
35798
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35799
+
35800
+
35801
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 15:02:39 +0200
35802
+ Processing by IndexController#index as HTML
35803
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
35804
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
35805
+
35806
+
35807
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:02:39 +0200
35808
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35809
+
35810
+
35811
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:02:39 +0200
35812
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35813
+
35814
+
35815
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35816
+ Processing by EmulatorController#index as HTML
35817
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.3ms)
35818
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
35819
+
35820
+
35821
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35822
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
35823
+
35824
+
35825
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35826
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
35827
+
35828
+
35829
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35830
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
35831
+
35832
+
35833
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35834
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
35835
+
35836
+
35837
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35838
+ Processing by IndexController#index as HTML
35839
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
35840
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
35841
+
35842
+
35843
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35844
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
35845
+
35846
+
35847
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35848
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
35849
+
35850
+
35851
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35852
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
35853
+
35854
+
35855
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35856
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35857
+
35858
+
35859
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:04:53 +0200
35860
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
35861
+
35862
+
35863
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:04:54 +0200
35864
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35865
+
35866
+
35867
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35868
+ Processing by EmulatorController#index as HTML
35869
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.2ms)
35870
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
35871
+
35872
+
35873
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35874
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
35875
+
35876
+
35877
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35878
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (3ms)
35879
+
35880
+
35881
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35882
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
35883
+
35884
+
35885
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35886
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
35887
+
35888
+
35889
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35890
+ Processing by IndexController#index as HTML
35891
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
35892
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
35893
+
35894
+
35895
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35896
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
35897
+
35898
+
35899
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35900
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
35901
+
35902
+
35903
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35904
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
35905
+
35906
+
35907
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35908
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
35909
+
35910
+
35911
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:07:05 +0200
35912
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35913
+
35914
+
35915
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:07:06 +0200
35916
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35917
+
35918
+
35919
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35920
+ Processing by EmulatorController#index as HTML
35921
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.6ms)
35922
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
35923
+
35924
+
35925
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35926
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
35927
+
35928
+
35929
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35930
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
35931
+
35932
+
35933
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35934
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
35935
+
35936
+
35937
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35938
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
35939
+
35940
+
35941
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35942
+ Processing by IndexController#index as HTML
35943
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
35944
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
35945
+
35946
+
35947
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35948
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
35949
+
35950
+
35951
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35952
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
35953
+
35954
+
35955
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35956
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
35957
+
35958
+
35959
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35960
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
35961
+
35962
+
35963
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:07:24 +0200
35964
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
35965
+
35966
+
35967
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:07:25 +0200
35968
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
35969
+
35970
+
35971
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35972
+ Processing by EmulatorController#index as HTML
35973
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
35974
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.0ms)
35975
+ Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms)
35976
+
35977
+
35978
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35979
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
35980
+
35981
+
35982
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35983
+ Served asset /mxit_rails/emulator.js - 200 OK (26ms)
35984
+
35985
+
35986
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35987
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
35988
+
35989
+
35990
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35991
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
35992
+
35993
+
35994
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35995
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
35996
+
35997
+
35998
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
35999
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
36000
+
36001
+
36002
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
36003
+ Processing by IndexController#index as HTML
36004
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
36005
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
36006
+
36007
+
36008
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
36009
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36010
+
36011
+
36012
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
36013
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36014
+
36015
+
36016
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
36017
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36018
+
36019
+
36020
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:08:24 +0200
36021
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36022
+
36023
+
36024
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36025
+ Processing by EmulatorController#index as HTML
36026
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36027
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.7ms)
36028
+ Completed 200 OK in 18ms (Views: 18.2ms | ActiveRecord: 0.0ms)
36029
+
36030
+
36031
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36032
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36033
+
36034
+
36035
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36036
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36037
+
36038
+
36039
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36040
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36041
+
36042
+
36043
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36044
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
36045
+
36046
+
36047
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36048
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36049
+
36050
+
36051
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36052
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36053
+
36054
+
36055
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36056
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
36057
+
36058
+
36059
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36060
+ Processing by IndexController#index as HTML
36061
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36062
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
36063
+
36064
+
36065
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36066
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36067
+
36068
+
36069
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36070
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36071
+
36072
+
36073
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:09:04 +0200
36074
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36075
+
36076
+
36077
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36078
+ Processing by EmulatorController#index as HTML
36079
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36080
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.4ms)
36081
+ Completed 200 OK in 16ms (Views: 16.3ms | ActiveRecord: 0.0ms)
36082
+
36083
+
36084
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36085
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36086
+
36087
+
36088
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36089
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
36090
+
36091
+
36092
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36093
+ Served asset /mxit_rails/emulator.js - 200 OK (43ms)
36094
+
36095
+
36096
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36097
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36098
+
36099
+
36100
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36101
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (8ms)
36102
+
36103
+
36104
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36105
+ Processing by IndexController#index as HTML
36106
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36107
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
36108
+
36109
+
36110
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36111
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36112
+
36113
+
36114
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36115
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36116
+
36117
+
36118
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36119
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36120
+
36121
+
36122
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:09:22 +0200
36123
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36124
+
36125
+
36126
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:09:23 +0200
36127
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36128
+
36129
+
36130
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36131
+ Processing by EmulatorController#index as HTML
36132
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
36133
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.9ms)
36134
+ Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms)
36135
+
36136
+
36137
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36138
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36139
+
36140
+
36141
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36142
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
36143
+
36144
+
36145
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36146
+ Served asset /mxit_rails/emulator.js - 200 OK (4ms)
36147
+
36148
+
36149
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36150
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36151
+
36152
+
36153
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36154
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
36155
+
36156
+
36157
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36158
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
36159
+
36160
+
36161
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36162
+ Processing by IndexController#index as HTML
36163
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36164
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
36165
+
36166
+
36167
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36168
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36169
+
36170
+
36171
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36172
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36173
+
36174
+
36175
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:10:14 +0200
36176
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36177
+
36178
+
36179
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:10:15 +0200
36180
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36181
+
36182
+
36183
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36184
+ Processing by EmulatorController#index as HTML
36185
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36186
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.0ms)
36187
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
36188
+
36189
+
36190
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36191
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36192
+
36193
+
36194
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36195
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36196
+
36197
+
36198
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36199
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36200
+
36201
+
36202
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36203
+ Served asset /mxit_rails/emulator.js - 200 OK (37ms)
36204
+
36205
+
36206
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36207
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36208
+
36209
+
36210
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36211
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
36212
+
36213
+
36214
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36215
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36216
+
36217
+
36218
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36219
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36220
+
36221
+
36222
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36223
+ Processing by IndexController#index as HTML
36224
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36225
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
36226
+
36227
+
36228
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:10:22 +0200
36229
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36230
+
36231
+
36232
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:10:23 +0200
36233
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36234
+
36235
+
36236
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36237
+ Processing by EmulatorController#index as HTML
36238
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36239
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.9ms)
36240
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
36241
+
36242
+
36243
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36244
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36245
+
36246
+
36247
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36248
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
36249
+
36250
+
36251
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36252
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
36253
+
36254
+
36255
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36256
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36257
+
36258
+
36259
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36260
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36261
+
36262
+
36263
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36264
+ Processing by IndexController#index as HTML
36265
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36266
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
36267
+
36268
+
36269
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36270
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36271
+
36272
+
36273
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36274
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36275
+
36276
+
36277
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36278
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36279
+
36280
+
36281
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36282
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36283
+
36284
+
36285
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:10:36 +0200
36286
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36287
+
36288
+
36289
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36290
+ Processing by EmulatorController#index as HTML
36291
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36292
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.9ms)
36293
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
36294
+
36295
+
36296
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36297
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36298
+
36299
+
36300
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36301
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
36302
+
36303
+
36304
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36305
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36306
+
36307
+
36308
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36309
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
36310
+
36311
+
36312
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36313
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
36314
+
36315
+
36316
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36317
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (28ms)
36318
+
36319
+
36320
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36321
+ Processing by IndexController#index as HTML
36322
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
36323
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
36324
+
36325
+
36326
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36327
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36328
+
36329
+
36330
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36331
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36332
+
36333
+
36334
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36335
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36336
+
36337
+
36338
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:12:55 +0200
36339
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36340
+
36341
+
36342
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36343
+ Processing by EmulatorController#index as HTML
36344
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36345
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.7ms)
36346
+ Completed 200 OK in 15ms (Views: 15.0ms | ActiveRecord: 0.0ms)
36347
+
36348
+
36349
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36350
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36351
+
36352
+
36353
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36354
+ Served asset /mxit_rails/emulator.js - 200 OK (11ms)
36355
+
36356
+
36357
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36358
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36359
+
36360
+
36361
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36362
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36363
+
36364
+
36365
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36366
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
36367
+
36368
+
36369
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36370
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36371
+
36372
+
36373
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36374
+ Processing by IndexController#index as HTML
36375
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36376
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
36377
+
36378
+
36379
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36380
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36381
+
36382
+
36383
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36384
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36385
+
36386
+
36387
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36388
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36389
+
36390
+
36391
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:13:28 +0200
36392
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36393
+
36394
+
36395
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36396
+ Processing by EmulatorController#index as HTML
36397
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36398
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.5ms)
36399
+ Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
36400
+
36401
+
36402
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36403
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36404
+
36405
+
36406
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36407
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
36408
+
36409
+
36410
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36411
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36412
+
36413
+
36414
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36415
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36416
+
36417
+
36418
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36419
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36420
+
36421
+
36422
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36423
+ Processing by IndexController#index as HTML
36424
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36425
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
36426
+
36427
+
36428
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36429
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36430
+
36431
+
36432
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36433
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36434
+
36435
+
36436
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36437
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36438
+
36439
+
36440
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36441
+ Served asset /mxit_rails/out.png - 304 Not Modified (24ms)
36442
+
36443
+
36444
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:13:39 +0200
36445
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36446
+
36447
+
36448
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36449
+ Processing by EmulatorController#index as HTML
36450
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
36451
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.9ms)
36452
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
36453
+
36454
+
36455
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36456
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36457
+
36458
+
36459
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36460
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
36461
+
36462
+
36463
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36464
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
36465
+
36466
+
36467
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36468
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
36469
+
36470
+
36471
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36472
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36473
+
36474
+
36475
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36476
+ Processing by IndexController#index as HTML
36477
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36478
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
36479
+
36480
+
36481
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36482
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36483
+
36484
+
36485
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36486
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36487
+
36488
+
36489
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36490
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36491
+
36492
+
36493
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36494
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36495
+
36496
+
36497
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:13:54 +0200
36498
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36499
+
36500
+
36501
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36502
+ Processing by EmulatorController#index as HTML
36503
+ Compiled mxit_rails/emulator.js (15ms) (pid 54184)
36504
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (27.9ms)
36505
+ Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
36506
+
36507
+
36508
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36509
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36510
+
36511
+
36512
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36513
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
36514
+
36515
+
36516
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36517
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36518
+
36519
+
36520
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36521
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
36522
+
36523
+
36524
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36525
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
36526
+
36527
+
36528
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36529
+ Processing by IndexController#index as HTML
36530
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36531
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
36532
+
36533
+
36534
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36535
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
36536
+
36537
+
36538
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36539
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36540
+
36541
+
36542
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36543
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36544
+
36545
+
36546
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:01 +0200
36547
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36548
+
36549
+
36550
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:14:02 +0200
36551
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36552
+
36553
+
36554
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36555
+ Processing by EmulatorController#index as HTML
36556
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
36557
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (36.1ms)
36558
+ Completed 200 OK in 37ms (Views: 37.1ms | ActiveRecord: 0.0ms)
36559
+
36560
+
36561
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36562
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36563
+
36564
+
36565
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36566
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
36567
+
36568
+
36569
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36570
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36571
+
36572
+
36573
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36574
+ Served asset /mxit_rails/emulator.js - 200 OK (4ms)
36575
+
36576
+
36577
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36578
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36579
+
36580
+
36581
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36582
+ Processing by IndexController#index as HTML
36583
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36584
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
36585
+
36586
+
36587
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36588
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36589
+
36590
+
36591
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36592
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36593
+
36594
+
36595
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36596
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36597
+
36598
+
36599
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36600
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36601
+
36602
+
36603
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:14:24 +0200
36604
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36605
+
36606
+
36607
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:14:32 +0200
36608
+ Processing by EmulatorController#index as HTML
36609
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.2ms)
36610
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
36611
+
36612
+
36613
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36614
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36615
+
36616
+
36617
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36618
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36619
+
36620
+
36621
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36622
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36623
+
36624
+
36625
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36626
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
36627
+
36628
+
36629
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36630
+ Processing by IndexController#index as HTML
36631
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36632
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
36633
+
36634
+
36635
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36636
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
36637
+
36638
+
36639
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36640
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36641
+
36642
+
36643
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36644
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36645
+
36646
+
36647
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36648
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36649
+
36650
+
36651
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36652
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36653
+
36654
+
36655
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:14:33 +0200
36656
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36657
+
36658
+
36659
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36660
+ Processing by EmulatorController#index as HTML
36661
+ Compiled mxit_rails/emulator.js (3ms) (pid 54184)
36662
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.3ms)
36663
+ Completed 200 OK in 18ms (Views: 18.2ms | ActiveRecord: 0.0ms)
36664
+
36665
+
36666
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36667
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36668
+
36669
+
36670
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36671
+ Served asset /mxit_rails/emulator.js - 200 OK (31ms)
36672
+
36673
+
36674
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36675
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36676
+
36677
+
36678
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36679
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36680
+
36681
+
36682
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36683
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36684
+
36685
+
36686
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36687
+ Processing by IndexController#index as HTML
36688
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
36689
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
36690
+
36691
+
36692
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36693
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36694
+
36695
+
36696
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36697
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
36698
+
36699
+
36700
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36701
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36702
+
36703
+
36704
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36705
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36706
+
36707
+
36708
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:14:48 +0200
36709
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36710
+
36711
+
36712
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36713
+ Processing by EmulatorController#index as HTML
36714
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36715
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.2ms)
36716
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
36717
+
36718
+
36719
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36720
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36721
+
36722
+
36723
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36724
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
36725
+
36726
+
36727
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36728
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36729
+
36730
+
36731
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36732
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
36733
+
36734
+
36735
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36736
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
36737
+
36738
+
36739
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36740
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (20ms)
36741
+
36742
+
36743
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36744
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36745
+
36746
+
36747
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36748
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36749
+
36750
+
36751
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36752
+ Processing by IndexController#index as HTML
36753
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36754
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
36755
+
36756
+
36757
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36758
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36759
+
36760
+
36761
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:14:57 +0200
36762
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36763
+
36764
+
36765
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36766
+ Processing by EmulatorController#index as HTML
36767
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36768
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.3ms)
36769
+ Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms)
36770
+
36771
+
36772
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36773
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36774
+
36775
+
36776
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36777
+ Served asset /mxit_rails/emulator.js - 200 OK (36ms)
36778
+
36779
+
36780
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36781
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36782
+
36783
+
36784
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36785
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36786
+
36787
+
36788
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36789
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36790
+
36791
+
36792
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36793
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (4ms)
36794
+
36795
+
36796
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36797
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36798
+
36799
+
36800
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36801
+ Processing by IndexController#index as HTML
36802
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
36803
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
36804
+
36805
+
36806
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36807
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36808
+
36809
+
36810
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36811
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36812
+
36813
+
36814
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:15:07 +0200
36815
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36816
+
36817
+
36818
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36819
+ Processing by EmulatorController#index as HTML
36820
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
36821
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.4ms)
36822
+ Completed 200 OK in 14ms (Views: 14.3ms | ActiveRecord: 0.0ms)
36823
+
36824
+
36825
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36826
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36827
+
36828
+
36829
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36830
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
36831
+
36832
+
36833
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36834
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36835
+
36836
+
36837
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36838
+ Served asset /mxit_rails/emulator.js - 200 OK (5ms)
36839
+
36840
+
36841
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36842
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36843
+
36844
+
36845
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36846
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
36847
+
36848
+
36849
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36850
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36851
+
36852
+
36853
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36854
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36855
+
36856
+
36857
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36858
+ Processing by IndexController#index as HTML
36859
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36860
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
36861
+
36862
+
36863
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36864
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36865
+
36866
+
36867
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:15:24 +0200
36868
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36869
+
36870
+
36871
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36872
+ Processing by EmulatorController#index as HTML
36873
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36874
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.7ms)
36875
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
36876
+
36877
+
36878
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36879
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36880
+
36881
+
36882
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36883
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
36884
+
36885
+
36886
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36887
+ Served asset /mxit_rails/emulator.js - 200 OK (35ms)
36888
+
36889
+
36890
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36891
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36892
+
36893
+
36894
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36895
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
36896
+
36897
+
36898
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36899
+ Processing by IndexController#index as HTML
36900
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36901
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
36902
+
36903
+
36904
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36905
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
36906
+
36907
+
36908
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36909
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36910
+
36911
+
36912
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36913
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36914
+
36915
+
36916
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36917
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36918
+
36919
+
36920
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:15:47 +0200
36921
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36922
+
36923
+
36924
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36925
+ Processing by EmulatorController#index as HTML
36926
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
36927
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.5ms)
36928
+ Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
36929
+
36930
+
36931
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36932
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
36933
+
36934
+
36935
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36936
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36937
+
36938
+
36939
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36940
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
36941
+
36942
+
36943
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36944
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
36945
+
36946
+
36947
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36948
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
36949
+
36950
+
36951
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36952
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
36953
+
36954
+
36955
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36956
+ Processing by IndexController#index as HTML
36957
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
36958
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
36959
+
36960
+
36961
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36962
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
36963
+
36964
+
36965
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36966
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
36967
+
36968
+
36969
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36970
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
36971
+
36972
+
36973
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:17:05 +0200
36974
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
36975
+
36976
+
36977
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:17:14 +0200
36978
+ Processing by EmulatorController#index as HTML
36979
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
36980
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.5ms)
36981
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
36982
+
36983
+
36984
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:17:14 +0200
36985
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
36986
+
36987
+
36988
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:14 +0200
36989
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
36990
+
36991
+
36992
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:14 +0200
36993
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
36994
+
36995
+
36996
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:14 +0200
36997
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
36998
+
36999
+
37000
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37001
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37002
+
37003
+
37004
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37005
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37006
+
37007
+
37008
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37009
+ Processing by IndexController#index as HTML
37010
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37011
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
37012
+
37013
+
37014
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37015
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37016
+
37017
+
37018
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37019
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37020
+
37021
+
37022
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37023
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37024
+
37025
+
37026
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:17:15 +0200
37027
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37028
+
37029
+
37030
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37031
+ Processing by EmulatorController#index as HTML
37032
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
37033
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (13.5ms)
37034
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
37035
+
37036
+
37037
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37038
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37039
+
37040
+
37041
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37042
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
37043
+
37044
+
37045
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37046
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37047
+
37048
+
37049
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37050
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37051
+
37052
+
37053
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37054
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37055
+
37056
+
37057
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:17:50 +0200
37058
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37059
+
37060
+
37061
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:17:51 +0200
37062
+ Processing by IndexController#index as HTML
37063
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37064
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
37065
+
37066
+
37067
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:17:51 +0200
37068
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37069
+
37070
+
37071
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:17:51 +0200
37072
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37073
+
37074
+
37075
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:17:51 +0200
37076
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37077
+
37078
+
37079
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:17:51 +0200
37080
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37081
+
37082
+
37083
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37084
+ Processing by EmulatorController#index as HTML
37085
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.5ms)
37086
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
37087
+
37088
+
37089
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37090
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37091
+
37092
+
37093
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37094
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
37095
+
37096
+
37097
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37098
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
37099
+
37100
+
37101
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37102
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37103
+
37104
+
37105
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37106
+ Processing by IndexController#index as HTML
37107
+ Rendered index/index.html.erb within layouts/mxit (0.6ms)
37108
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
37109
+
37110
+
37111
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37112
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37113
+
37114
+
37115
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37116
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37117
+
37118
+
37119
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37120
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
37121
+
37122
+
37123
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37124
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37125
+
37126
+
37127
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37128
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37129
+
37130
+
37131
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:18:19 +0200
37132
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37133
+
37134
+
37135
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:18:30 +0200
37136
+ Processing by WelcomeController#index as HTML
37137
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37138
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
37139
+
37140
+
37141
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:18:30 +0200
37142
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37143
+
37144
+
37145
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:18:30 +0200
37146
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37147
+
37148
+
37149
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37150
+ Processing by EmulatorController#index as HTML
37151
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37152
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (29.1ms)
37153
+ Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
37154
+
37155
+
37156
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37157
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37158
+
37159
+
37160
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37161
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
37162
+
37163
+
37164
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37165
+ Served asset /mxit_rails/emulator.js - 200 OK (4ms)
37166
+
37167
+
37168
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37169
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37170
+
37171
+
37172
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37173
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37174
+
37175
+
37176
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37177
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
37178
+
37179
+
37180
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37181
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37182
+
37183
+
37184
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37185
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37186
+
37187
+
37188
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37189
+ Processing by IndexController#index as HTML
37190
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37191
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
37192
+
37193
+
37194
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37195
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37196
+
37197
+
37198
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:18:49 +0200
37199
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37200
+
37201
+
37202
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37203
+ Processing by EmulatorController#index as HTML
37204
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37205
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (18.0ms)
37206
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
37207
+
37208
+
37209
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37210
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37211
+
37212
+
37213
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37214
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
37215
+
37216
+
37217
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37218
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37219
+
37220
+
37221
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37222
+ Served asset /mxit_rails/emulator.js - 200 OK (9ms)
37223
+
37224
+
37225
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37226
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37227
+
37228
+
37229
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37230
+ Processing by IndexController#index as HTML
37231
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
37232
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
37233
+
37234
+
37235
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37236
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37237
+
37238
+
37239
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37240
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37241
+
37242
+
37243
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37244
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37245
+
37246
+
37247
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37248
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37249
+
37250
+
37251
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:23:05 +0200
37252
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37253
+
37254
+
37255
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37256
+ Processing by EmulatorController#index as HTML
37257
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37258
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.9ms)
37259
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
37260
+
37261
+
37262
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37263
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37264
+
37265
+
37266
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37267
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
37268
+
37269
+
37270
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37271
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37272
+
37273
+
37274
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37275
+ Served asset /mxit_rails/emulator.js - 200 OK (26ms)
37276
+
37277
+
37278
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37279
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
37280
+
37281
+
37282
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37283
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37284
+
37285
+
37286
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37287
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37288
+
37289
+
37290
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37291
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37292
+
37293
+
37294
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37295
+ Processing by IndexController#index as HTML
37296
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37297
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
37298
+
37299
+
37300
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37301
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37302
+
37303
+
37304
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:25:11 +0200
37305
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37306
+
37307
+
37308
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:25:14 +0200
37309
+ Processing by WelcomeController#index as HTML
37310
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37311
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
37312
+
37313
+
37314
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:25:14 +0200
37315
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37316
+
37317
+
37318
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:25:14 +0200
37319
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37320
+
37321
+
37322
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37323
+ Processing by EmulatorController#index as HTML
37324
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37325
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.1ms)
37326
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
37327
+
37328
+
37329
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37330
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37331
+
37332
+
37333
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37334
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
37335
+
37336
+
37337
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37338
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37339
+
37340
+
37341
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37342
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
37343
+
37344
+
37345
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37346
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37347
+
37348
+
37349
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37350
+ Processing by IndexController#index as HTML
37351
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
37352
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
37353
+
37354
+
37355
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37356
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37357
+
37358
+
37359
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37360
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37361
+
37362
+
37363
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37364
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37365
+
37366
+
37367
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37368
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37369
+
37370
+
37371
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:26:02 +0200
37372
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37373
+
37374
+
37375
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:26:05 +0200
37376
+ Processing by WelcomeController#index as HTML
37377
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37378
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
37379
+
37380
+
37381
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:26:05 +0200
37382
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37383
+
37384
+
37385
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:26:05 +0200
37386
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37387
+
37388
+
37389
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37390
+ Processing by EmulatorController#index as HTML
37391
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37392
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.8ms)
37393
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
37394
+
37395
+
37396
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37397
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37398
+
37399
+
37400
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37401
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
37402
+
37403
+
37404
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37405
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
37406
+
37407
+
37408
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37409
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37410
+
37411
+
37412
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37413
+ Served asset /mxit_rails/go.png - 304 Not Modified (17ms)
37414
+
37415
+
37416
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37417
+ Processing by IndexController#index as HTML
37418
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
37419
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
37420
+
37421
+
37422
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37423
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37424
+
37425
+
37426
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37427
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37428
+
37429
+
37430
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37431
+ Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
37432
+
37433
+
37434
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:26:18 +0200
37435
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37436
+
37437
+
37438
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:26:19 +0200
37439
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37440
+
37441
+
37442
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:26:20 +0200
37443
+ Processing by WelcomeController#index as HTML
37444
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37445
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
37446
+
37447
+
37448
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:26:20 +0200
37449
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37450
+
37451
+
37452
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:26:20 +0200
37453
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37454
+
37455
+
37456
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37457
+ Processing by EmulatorController#index as HTML
37458
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
37459
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.2ms)
37460
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
37461
+
37462
+
37463
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37464
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37465
+
37466
+
37467
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37468
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
37469
+
37470
+
37471
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37472
+ Served asset /mxit_rails/emulator.js - 200 OK (4ms)
37473
+
37474
+
37475
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37476
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37477
+
37478
+
37479
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37480
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
37481
+
37482
+
37483
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:27:35 +0200
37484
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
37485
+
37486
+
37487
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:27:36 +0200
37488
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37489
+
37490
+
37491
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:27:36 +0200
37492
+ Processing by IndexController#index as HTML
37493
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37494
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
37495
+
37496
+
37497
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:27:36 +0200
37498
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37499
+
37500
+
37501
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:27:36 +0200
37502
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37503
+
37504
+
37505
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:27:36 +0200
37506
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37507
+
37508
+
37509
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:27:37 +0200
37510
+ Processing by WelcomeController#index as HTML
37511
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37512
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
37513
+
37514
+
37515
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:27:37 +0200
37516
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37517
+
37518
+
37519
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:27:37 +0200
37520
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37521
+
37522
+
37523
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:27:39 +0200
37524
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37525
+
37526
+
37527
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37528
+ Processing by EmulatorController#index as HTML
37529
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37530
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.1ms)
37531
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
37532
+
37533
+
37534
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37535
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37536
+
37537
+
37538
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37539
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
37540
+
37541
+
37542
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37543
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37544
+
37545
+
37546
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37547
+ Served asset /mxit_rails/emulator.js - 200 OK (6ms)
37548
+
37549
+
37550
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37551
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37552
+
37553
+
37554
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37555
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37556
+
37557
+
37558
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37559
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
37560
+
37561
+
37562
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37563
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37564
+
37565
+
37566
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37567
+ Processing by IndexController#index as HTML
37568
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
37569
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
37570
+
37571
+
37572
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:31:34 +0200
37573
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37574
+
37575
+
37576
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37577
+ Processing by EmulatorController#index as HTML
37578
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.5ms)
37579
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
37580
+
37581
+
37582
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37583
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37584
+
37585
+
37586
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37587
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
37588
+
37589
+
37590
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37591
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37592
+
37593
+
37594
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37595
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37596
+
37597
+
37598
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37599
+ Processing by IndexController#index as HTML
37600
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37601
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
37602
+
37603
+
37604
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37605
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37606
+
37607
+
37608
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37609
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37610
+
37611
+
37612
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37613
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37614
+
37615
+
37616
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37617
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37618
+
37619
+
37620
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37621
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37622
+
37623
+
37624
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:31:41 +0200
37625
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37626
+
37627
+
37628
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:31:45 +0200
37629
+ Processing by WelcomeController#index as HTML
37630
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37631
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
37632
+
37633
+
37634
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:31:45 +0200
37635
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37636
+
37637
+
37638
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:31:45 +0200
37639
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37640
+
37641
+
37642
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37643
+ Processing by EmulatorController#index as HTML
37644
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37645
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.8ms)
37646
+ Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
37647
+
37648
+
37649
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37650
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37651
+
37652
+
37653
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37654
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (4ms)
37655
+
37656
+
37657
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37658
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37659
+
37660
+
37661
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37662
+ Served asset /mxit_rails/emulator.js - 200 OK (19ms)
37663
+
37664
+
37665
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37666
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37667
+
37668
+
37669
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37670
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
37671
+
37672
+
37673
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37674
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37675
+
37676
+
37677
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37678
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37679
+
37680
+
37681
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:33:48 +0200
37682
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37683
+
37684
+
37685
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:33:54 +0200
37686
+ Processing by EmulatorController#index as HTML
37687
+ Compiled mxit_rails/emulator.js (3ms) (pid 54184)
37688
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.8ms)
37689
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
37690
+
37691
+
37692
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:33:54 +0200
37693
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37694
+
37695
+
37696
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37697
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
37698
+
37699
+
37700
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37701
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37702
+
37703
+
37704
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37705
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37706
+
37707
+
37708
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37709
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37710
+
37711
+
37712
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37713
+ Processing by IndexController#index as HTML
37714
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37715
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
37716
+
37717
+
37718
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37719
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37720
+
37721
+
37722
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37723
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37724
+
37725
+
37726
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37727
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37728
+
37729
+
37730
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37731
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37732
+
37733
+
37734
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:33:55 +0200
37735
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37736
+
37737
+
37738
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:33:57 +0200
37739
+ Processing by WelcomeController#index as HTML
37740
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37741
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
37742
+
37743
+
37744
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:33:57 +0200
37745
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37746
+
37747
+
37748
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:33:57 +0200
37749
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37750
+
37751
+
37752
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:35:12 +0200
37753
+ Processing by EmulatorController#index as HTML
37754
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37755
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.4ms)
37756
+ Completed 200 OK in 18ms (Views: 18.2ms | ActiveRecord: 0.0ms)
37757
+
37758
+
37759
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37760
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37761
+
37762
+
37763
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37764
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37765
+
37766
+
37767
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37768
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37769
+
37770
+
37771
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37772
+ Served asset /mxit_rails/emulator.js - 200 OK (9ms)
37773
+
37774
+
37775
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37776
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
37777
+
37778
+
37779
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37780
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37781
+
37782
+
37783
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37784
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
37785
+
37786
+
37787
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37788
+ Processing by IndexController#index as HTML
37789
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37790
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
37791
+
37792
+
37793
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37794
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37795
+
37796
+
37797
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37798
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37799
+
37800
+
37801
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:35:13 +0200
37802
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37803
+
37804
+
37805
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:35:16 +0200
37806
+ Processing by WelcomeController#index as HTML
37807
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
37808
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
37809
+
37810
+
37811
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:35:16 +0200
37812
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37813
+
37814
+
37815
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:35:16 +0200
37816
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37817
+
37818
+
37819
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37820
+ Processing by EmulatorController#index as HTML
37821
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37822
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.4ms)
37823
+ Completed 200 OK in 16ms (Views: 16.4ms | ActiveRecord: 0.0ms)
37824
+
37825
+
37826
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37827
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37828
+
37829
+
37830
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37831
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37832
+
37833
+
37834
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37835
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37836
+
37837
+
37838
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37839
+ Served asset /mxit_rails/emulator.js - 200 OK (9ms)
37840
+
37841
+
37842
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37843
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
37844
+
37845
+
37846
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37847
+ Processing by IndexController#index as HTML
37848
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
37849
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
37850
+
37851
+
37852
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37853
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37854
+
37855
+
37856
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37857
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
37858
+
37859
+
37860
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37861
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37862
+
37863
+
37864
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37865
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37866
+
37867
+
37868
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:36:15 +0200
37869
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37870
+
37871
+
37872
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:36:16 +0200
37873
+ Processing by WelcomeController#index as HTML
37874
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
37875
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
37876
+
37877
+
37878
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:36:16 +0200
37879
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37880
+
37881
+
37882
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:36:16 +0200
37883
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37884
+
37885
+
37886
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37887
+ Processing by EmulatorController#index as HTML
37888
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37889
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.6ms)
37890
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
37891
+
37892
+
37893
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37894
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37895
+
37896
+
37897
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37898
+ Served asset /mxit_rails/emulator.js - 200 OK (24ms)
37899
+
37900
+
37901
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37902
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37903
+
37904
+
37905
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37906
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37907
+
37908
+
37909
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37910
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
37911
+
37912
+
37913
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37914
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
37915
+
37916
+
37917
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37918
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37919
+
37920
+
37921
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37922
+ Processing by IndexController#index as HTML
37923
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37924
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
37925
+
37926
+
37927
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37928
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37929
+
37930
+
37931
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:15 +0200
37932
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37933
+
37934
+
37935
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:16 +0200
37936
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37937
+
37938
+
37939
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:37:18 +0200
37940
+ Processing by WelcomeController#index as HTML
37941
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
37942
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
37943
+
37944
+
37945
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:18 +0200
37946
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
37947
+
37948
+
37949
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:18 +0200
37950
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
37951
+
37952
+
37953
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37954
+ Processing by EmulatorController#index as HTML
37955
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
37956
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.9ms)
37957
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
37958
+
37959
+
37960
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37961
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
37962
+
37963
+
37964
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37965
+ Served asset /mxit_rails/emulator.js - 200 OK (25ms)
37966
+
37967
+
37968
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37969
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
37970
+
37971
+
37972
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37973
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
37974
+
37975
+
37976
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37977
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
37978
+
37979
+
37980
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37981
+ Served asset /mxit_rails/go.png - 304 Not Modified (1ms)
37982
+
37983
+
37984
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37985
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
37986
+
37987
+
37988
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37989
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
37990
+
37991
+
37992
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37993
+ Processing by IndexController#index as HTML
37994
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
37995
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
37996
+
37997
+
37998
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
37999
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38000
+
38001
+
38002
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:47 +0200
38003
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38004
+
38005
+
38006
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:37:49 +0200
38007
+ Processing by WelcomeController#index as HTML
38008
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
38009
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38010
+
38011
+
38012
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:49 +0200
38013
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38014
+
38015
+
38016
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:49 +0200
38017
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38018
+
38019
+
38020
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 15:37:54 +0200
38021
+ Processing by IndexController#index as HTML
38022
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38023
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
38024
+
38025
+
38026
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:54 +0200
38027
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38028
+
38029
+
38030
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:54 +0200
38031
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38032
+
38033
+
38034
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:37:55 +0200
38035
+ Processing by FormController#index as HTML
38036
+ Rendered form/index/start.html.erb within layouts/mxit (0.3ms)
38037
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.0ms)
38038
+
38039
+
38040
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:55 +0200
38041
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38042
+
38043
+
38044
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:55 +0200
38045
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38046
+
38047
+
38048
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:37:57 +0200
38049
+ Processing by FormController#index as HTML
38050
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
38051
+ Rendered form/index/name.html.erb within layouts/mxit (0.9ms)
38052
+ Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms)
38053
+
38054
+
38055
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:57 +0200
38056
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38057
+
38058
+
38059
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:57 +0200
38060
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38061
+
38062
+
38063
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 15:37:58 +0200
38064
+ Processing by IndexController#index as HTML
38065
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38066
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
38067
+
38068
+
38069
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:37:58 +0200
38070
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38071
+
38072
+
38073
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:37:58 +0200
38074
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38075
+
38076
+
38077
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:38:03 +0200
38078
+ Processing by WelcomeController#index as HTML
38079
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
38080
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
38081
+
38082
+
38083
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:38:03 +0200
38084
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38085
+
38086
+
38087
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:38:03 +0200
38088
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38089
+
38090
+
38091
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38092
+ Processing by EmulatorController#index as HTML
38093
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38094
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.8ms)
38095
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
38096
+
38097
+
38098
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38099
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38100
+
38101
+
38102
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38103
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
38104
+
38105
+
38106
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38107
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38108
+
38109
+
38110
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38111
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38112
+
38113
+
38114
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38115
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38116
+
38117
+
38118
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38119
+ Served asset /mxit_rails/out.png - 304 Not Modified (1ms)
38120
+
38121
+
38122
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38123
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38124
+
38125
+
38126
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:39:23 +0200
38127
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38128
+
38129
+
38130
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38131
+ Processing by EmulatorController#index as HTML
38132
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38133
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.7ms)
38134
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
38135
+
38136
+
38137
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38138
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38139
+
38140
+
38141
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38142
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38143
+
38144
+
38145
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38146
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38147
+
38148
+
38149
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38150
+ Served asset /mxit_rails/emulator.js - 200 OK (4ms)
38151
+
38152
+
38153
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38154
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
38155
+
38156
+
38157
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38158
+ Processing by IndexController#index as HTML
38159
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
38160
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
38161
+
38162
+
38163
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38164
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38165
+
38166
+
38167
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38168
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38169
+
38170
+
38171
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38172
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38173
+
38174
+
38175
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:39:36 +0200
38176
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38177
+
38178
+
38179
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38180
+ Processing by EmulatorController#index as HTML
38181
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.1ms)
38182
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
38183
+
38184
+
38185
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38186
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38187
+
38188
+
38189
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38190
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (3ms)
38191
+
38192
+
38193
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38194
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38195
+
38196
+
38197
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38198
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
38199
+
38200
+
38201
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38202
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
38203
+
38204
+
38205
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38206
+ Processing by IndexController#index as HTML
38207
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38208
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
38209
+
38210
+
38211
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38212
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38213
+
38214
+
38215
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38216
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38217
+
38218
+
38219
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38220
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38221
+
38222
+
38223
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38224
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38225
+
38226
+
38227
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:39:43 +0200
38228
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38229
+
38230
+
38231
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:40:23 +0200
38232
+ Processing by EmulatorController#index as HTML
38233
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38234
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.7ms)
38235
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
38236
+
38237
+
38238
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:40:23 +0200
38239
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38240
+
38241
+
38242
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:40:23 +0200
38243
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
38244
+
38245
+
38246
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:40:23 +0200
38247
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38248
+
38249
+
38250
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:40:23 +0200
38251
+ Served asset /mxit_rails/emulator.js - 200 OK (5ms)
38252
+
38253
+
38254
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38255
+ Served asset /mxit_rails/go.png - 304 Not Modified (17ms)
38256
+
38257
+
38258
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38259
+ Processing by IndexController#index as HTML
38260
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38261
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
38262
+
38263
+
38264
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38265
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38266
+
38267
+
38268
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38269
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38270
+
38271
+
38272
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38273
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38274
+
38275
+
38276
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38277
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38278
+
38279
+
38280
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:40:24 +0200
38281
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38282
+
38283
+
38284
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:40:25 +0200
38285
+ Processing by WelcomeController#index as HTML
38286
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
38287
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
38288
+
38289
+
38290
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:40:25 +0200
38291
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38292
+
38293
+
38294
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:40:25 +0200
38295
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38296
+
38297
+
38298
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38299
+ Processing by EmulatorController#index as HTML
38300
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38301
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.7ms)
38302
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
38303
+
38304
+
38305
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38306
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38307
+
38308
+
38309
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38310
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
38311
+
38312
+
38313
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38314
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38315
+
38316
+
38317
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38318
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
38319
+
38320
+
38321
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38322
+ Served asset /mxit_rails/go.png - 304 Not Modified (22ms)
38323
+
38324
+
38325
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38326
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38327
+
38328
+
38329
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38330
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38331
+
38332
+
38333
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38334
+ Processing by IndexController#index as HTML
38335
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38336
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
38337
+
38338
+
38339
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38340
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38341
+
38342
+
38343
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:41:19 +0200
38344
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38345
+
38346
+
38347
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:41:20 +0200
38348
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38349
+
38350
+
38351
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:41:21 +0200
38352
+ Processing by WelcomeController#index as HTML
38353
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
38354
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38355
+
38356
+
38357
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:41:21 +0200
38358
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38359
+
38360
+
38361
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:41:22 +0200
38362
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38363
+
38364
+
38365
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38366
+ Processing by EmulatorController#index as HTML
38367
+ Compiled mxit_rails/emulator.js (1ms) (pid 54184)
38368
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.7ms)
38369
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
38370
+
38371
+
38372
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38373
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38374
+
38375
+
38376
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38377
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
38378
+
38379
+
38380
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38381
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
38382
+
38383
+
38384
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38385
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38386
+
38387
+
38388
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38389
+ Served asset /mxit_rails/go.png - 304 Not Modified (4ms)
38390
+
38391
+
38392
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38393
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38394
+
38395
+
38396
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38397
+ Processing by IndexController#index as HTML
38398
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38399
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38400
+
38401
+
38402
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38403
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38404
+
38405
+
38406
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38407
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38408
+
38409
+
38410
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38411
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38412
+
38413
+
38414
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:41:52 +0200
38415
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38416
+
38417
+
38418
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38419
+ Processing by EmulatorController#index as HTML
38420
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38421
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.6ms)
38422
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
38423
+
38424
+
38425
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38426
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38427
+
38428
+
38429
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38430
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
38431
+
38432
+
38433
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38434
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38435
+
38436
+
38437
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38438
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38439
+
38440
+
38441
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38442
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
38443
+
38444
+
38445
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38446
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38447
+
38448
+
38449
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38450
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38451
+
38452
+
38453
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38454
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38455
+
38456
+
38457
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38458
+ Processing by IndexController#index as HTML
38459
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38460
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
38461
+
38462
+
38463
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:03 +0200
38464
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38465
+
38466
+
38467
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38468
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38469
+
38470
+
38471
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38472
+ Processing by EmulatorController#index as HTML
38473
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.4ms)
38474
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
38475
+
38476
+
38477
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38478
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38479
+
38480
+
38481
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38482
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
38483
+
38484
+
38485
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38486
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
38487
+
38488
+
38489
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38490
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38491
+
38492
+
38493
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38494
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38495
+
38496
+
38497
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38498
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38499
+
38500
+
38501
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38502
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38503
+
38504
+
38505
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38506
+ Processing by IndexController#index as HTML
38507
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38508
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
38509
+
38510
+
38511
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38512
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38513
+
38514
+
38515
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:42:04 +0200
38516
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38517
+
38518
+
38519
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38520
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38521
+
38522
+
38523
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38524
+ Processing by EmulatorController#index as HTML
38525
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.8ms)
38526
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
38527
+
38528
+
38529
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38530
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38531
+
38532
+
38533
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38534
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
38535
+
38536
+
38537
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38538
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
38539
+
38540
+
38541
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38542
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38543
+
38544
+
38545
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38546
+ Processing by IndexController#index as HTML
38547
+ Rendered index/index.html.erb within layouts/mxit (14.8ms)
38548
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
38549
+
38550
+
38551
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38552
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38553
+
38554
+
38555
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38556
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38557
+
38558
+
38559
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38560
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38561
+
38562
+
38563
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38564
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38565
+
38566
+
38567
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38568
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38569
+
38570
+
38571
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:05 +0200
38572
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38573
+
38574
+
38575
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:42:07 +0200
38576
+ Processing by FormController#index as HTML
38577
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
38578
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38579
+
38580
+
38581
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:07 +0200
38582
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38583
+
38584
+
38585
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:08 +0200
38586
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38587
+
38588
+
38589
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:42:10 +0200
38590
+ Processing by FormController#index as HTML
38591
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
38592
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
38593
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38594
+
38595
+
38596
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:10 +0200
38597
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38598
+
38599
+
38600
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:10 +0200
38601
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38602
+
38603
+
38604
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38605
+ Processing by EmulatorController#index as HTML
38606
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38607
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.5ms)
38608
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
38609
+
38610
+
38611
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38612
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38613
+
38614
+
38615
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38616
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
38617
+
38618
+
38619
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38620
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38621
+
38622
+
38623
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38624
+ Served asset /mxit_rails/emulator.js - 200 OK (27ms)
38625
+
38626
+
38627
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38628
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
38629
+
38630
+
38631
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38632
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38633
+
38634
+
38635
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38636
+ Processing by IndexController#index as HTML
38637
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38638
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
38639
+
38640
+
38641
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38642
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38643
+
38644
+
38645
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38646
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38647
+
38648
+
38649
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38650
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38651
+
38652
+
38653
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:23 +0200
38654
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38655
+
38656
+
38657
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:42:25 +0200
38658
+ Processing by WelcomeController#index as HTML
38659
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
38660
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
38661
+
38662
+
38663
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:42:25 +0200
38664
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38665
+
38666
+
38667
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:42:25 +0200
38668
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38669
+
38670
+
38671
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38672
+ Processing by EmulatorController#index as HTML
38673
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.5ms)
38674
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
38675
+
38676
+
38677
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38678
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38679
+
38680
+
38681
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38682
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
38683
+
38684
+
38685
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38686
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
38687
+
38688
+
38689
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38690
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38691
+
38692
+
38693
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38694
+ Processing by IndexController#index as HTML
38695
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38696
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
38697
+
38698
+
38699
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38700
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38701
+
38702
+
38703
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38704
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38705
+
38706
+
38707
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38708
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38709
+
38710
+
38711
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38712
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38713
+
38714
+
38715
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38716
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38717
+
38718
+
38719
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:43:00 +0200
38720
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38721
+
38722
+
38723
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:43:02 +0200
38724
+ Processing by WelcomeController#index as HTML
38725
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
38726
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
38727
+
38728
+
38729
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:43:02 +0200
38730
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38731
+
38732
+
38733
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:43:02 +0200
38734
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38735
+
38736
+
38737
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38738
+ Processing by EmulatorController#index as HTML
38739
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38740
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (17.3ms)
38741
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
38742
+
38743
+
38744
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38745
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38746
+
38747
+
38748
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38749
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (4ms)
38750
+
38751
+
38752
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38753
+ Served asset /mxit_rails/emulator.js - 200 OK (4ms)
38754
+
38755
+
38756
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38757
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38758
+
38759
+
38760
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38761
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
38762
+
38763
+
38764
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38765
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38766
+
38767
+
38768
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38769
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38770
+
38771
+
38772
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38773
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38774
+
38775
+
38776
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38777
+ Processing by IndexController#index as HTML
38778
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
38779
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
38780
+
38781
+
38782
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38783
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38784
+
38785
+
38786
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:45:25 +0200
38787
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38788
+
38789
+
38790
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38791
+ Processing by EmulatorController#index as HTML
38792
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.4ms)
38793
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
38794
+
38795
+
38796
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38797
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38798
+
38799
+
38800
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38801
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
38802
+
38803
+
38804
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38805
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
38806
+
38807
+
38808
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38809
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38810
+
38811
+
38812
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38813
+ Processing by IndexController#index as HTML
38814
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
38815
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
38816
+
38817
+
38818
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38819
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38820
+
38821
+
38822
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38823
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38824
+
38825
+
38826
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38827
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38828
+
38829
+
38830
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38831
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38832
+
38833
+
38834
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38835
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38836
+
38837
+
38838
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:45:26 +0200
38839
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38840
+
38841
+
38842
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38843
+ Processing by EmulatorController#index as HTML
38844
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.5ms)
38845
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
38846
+
38847
+
38848
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38849
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38850
+
38851
+
38852
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38853
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
38854
+
38855
+
38856
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38857
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38858
+
38859
+
38860
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38861
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38862
+
38863
+
38864
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38865
+ Processing by IndexController#index as HTML
38866
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38867
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
38868
+
38869
+
38870
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38871
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38872
+
38873
+
38874
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38875
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38876
+
38877
+
38878
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38879
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
38880
+
38881
+
38882
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38883
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38884
+
38885
+
38886
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38887
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38888
+
38889
+
38890
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38891
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38892
+
38893
+
38894
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38895
+ Processing by EmulatorController#index as HTML
38896
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.4ms)
38897
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
38898
+
38899
+
38900
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:27 +0200
38901
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38902
+
38903
+
38904
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38905
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
38906
+
38907
+
38908
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38909
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38910
+
38911
+
38912
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38913
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (1ms)
38914
+
38915
+
38916
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38917
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
38918
+
38919
+
38920
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38921
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
38922
+
38923
+
38924
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38925
+ Processing by IndexController#index as HTML
38926
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38927
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
38928
+
38929
+
38930
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38931
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38932
+
38933
+
38934
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38935
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38936
+
38937
+
38938
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38939
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38940
+
38941
+
38942
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:45:28 +0200
38943
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38944
+
38945
+
38946
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38947
+ Processing by EmulatorController#index as HTML
38948
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
38949
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (15.1ms)
38950
+ Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
38951
+
38952
+
38953
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38954
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
38955
+
38956
+
38957
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38958
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
38959
+
38960
+
38961
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38962
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
38963
+
38964
+
38965
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38966
+ Served asset /mxit_rails/emulator.js - 200 OK (5ms)
38967
+
38968
+
38969
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38970
+ Served asset /mxit_rails/go.png - 304 Not Modified (2ms)
38971
+
38972
+
38973
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38974
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (5ms)
38975
+
38976
+
38977
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38978
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
38979
+
38980
+
38981
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38982
+ Processing by IndexController#index as HTML
38983
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
38984
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
38985
+
38986
+
38987
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38988
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
38989
+
38990
+
38991
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38992
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
38993
+
38994
+
38995
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:45:36 +0200
38996
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
38997
+
38998
+
38999
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:45:39 +0200
39000
+ Processing by WelcomeController#index as HTML
39001
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
39002
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
39003
+
39004
+
39005
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:45:39 +0200
39006
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39007
+
39008
+
39009
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:45:39 +0200
39010
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39011
+
39012
+
39013
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39014
+ Processing by EmulatorController#index as HTML
39015
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
39016
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (29.8ms)
39017
+ Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.0ms)
39018
+
39019
+
39020
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39021
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39022
+
39023
+
39024
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39025
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (3ms)
39026
+
39027
+
39028
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39029
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
39030
+
39031
+
39032
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39033
+ Served asset /mxit_rails/emulator.js - 200 OK (5ms)
39034
+
39035
+
39036
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39037
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39038
+
39039
+
39040
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39041
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
39042
+
39043
+
39044
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:47:02 +0200
39045
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39046
+
39047
+
39048
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:47:03 +0200
39049
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39050
+
39051
+
39052
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:47:03 +0200
39053
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39054
+
39055
+
39056
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:47:11 +0200
39057
+ Processing by EmulatorController#index as HTML
39058
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
39059
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (14.8ms)
39060
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
39061
+
39062
+
39063
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:11 +0200
39064
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39065
+
39066
+
39067
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39068
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
39069
+
39070
+
39071
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39072
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (19ms)
39073
+
39074
+
39075
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39076
+ Served asset /mxit_rails/emulator.js - 200 OK (8ms)
39077
+
39078
+
39079
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39080
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39081
+
39082
+
39083
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39084
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
39085
+
39086
+
39087
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39088
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39089
+
39090
+
39091
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39092
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39093
+
39094
+
39095
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:47:12 +0200
39096
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39097
+
39098
+
39099
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39100
+ Processing by EmulatorController#index as HTML
39101
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
39102
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (16.6ms)
39103
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
39104
+
39105
+
39106
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39107
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39108
+
39109
+
39110
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39111
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (5ms)
39112
+
39113
+
39114
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39115
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
39116
+
39117
+
39118
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39119
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
39120
+
39121
+
39122
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39123
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39124
+
39125
+
39126
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39127
+ Processing by IndexController#index as HTML
39128
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39129
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
39130
+
39131
+
39132
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39133
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39134
+
39135
+
39136
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39137
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
39138
+
39139
+
39140
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39141
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
39142
+
39143
+
39144
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39145
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39146
+
39147
+
39148
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:47:24 +0200
39149
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39150
+
39151
+
39152
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:47:28 +0200
39153
+ Processing by EmulatorController#index as HTML
39154
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.6ms)
39155
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
39156
+
39157
+
39158
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:28 +0200
39159
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39160
+
39161
+
39162
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:28 +0200
39163
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (2ms)
39164
+
39165
+
39166
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:28 +0200
39167
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
39168
+
39169
+
39170
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:28 +0200
39171
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
39172
+
39173
+
39174
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39175
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (6ms)
39176
+
39177
+
39178
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39179
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39180
+
39181
+
39182
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39183
+ Processing by IndexController#index as HTML
39184
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39185
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
39186
+
39187
+
39188
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39189
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39190
+
39191
+
39192
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39193
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39194
+
39195
+
39196
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39197
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39198
+
39199
+
39200
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:47:29 +0200
39201
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39202
+
39203
+
39204
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39205
+ Processing by EmulatorController#index as HTML
39206
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.3ms)
39207
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
39208
+
39209
+
39210
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39211
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39212
+
39213
+
39214
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39215
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (3ms)
39216
+
39217
+
39218
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39219
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
39220
+
39221
+
39222
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39223
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (20ms)
39224
+
39225
+
39226
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39227
+ Processing by IndexController#index as HTML
39228
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39229
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
39230
+
39231
+
39232
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39233
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39234
+
39235
+
39236
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39237
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
39238
+
39239
+
39240
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39241
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39242
+
39243
+
39244
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39245
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39246
+
39247
+
39248
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:47:30 +0200
39249
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39250
+
39251
+
39252
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39253
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39254
+
39255
+
39256
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39257
+ Processing by EmulatorController#index as HTML
39258
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (3.2ms)
39259
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
39260
+
39261
+
39262
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39263
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39264
+
39265
+
39266
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39267
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (2ms)
39268
+
39269
+
39270
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39271
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
39272
+
39273
+
39274
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39275
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
39276
+
39277
+
39278
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39279
+ Served asset /mxit_rails/go.png - 304 Not Modified (3ms)
39280
+
39281
+
39282
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39283
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39284
+
39285
+
39286
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39287
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
39288
+
39289
+
39290
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39291
+ Processing by IndexController#index as HTML
39292
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39293
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
39294
+
39295
+
39296
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39297
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39298
+
39299
+
39300
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39301
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39302
+
39303
+
39304
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:47:31 +0200
39305
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39306
+
39307
+
39308
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:48:29 +0200
39309
+ Processing by EmulatorController#index as HTML
39310
+ Compiled mxit_rails/emulator.js (2ms) (pid 54184)
39311
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (29.1ms)
39312
+ Completed 200 OK in 30ms (Views: 30.1ms | ActiveRecord: 0.0ms)
39313
+
39314
+
39315
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:29 +0200
39316
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39317
+
39318
+
39319
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:48:29 +0200
39320
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
39321
+
39322
+
39323
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:48:29 +0200
39324
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
39325
+
39326
+
39327
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:48:29 +0200
39328
+ Served asset /mxit_rails/emulator.js - 200 OK (7ms)
39329
+
39330
+
39331
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39332
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39333
+
39334
+
39335
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39336
+ Processing by IndexController#index as HTML
39337
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39338
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
39339
+
39340
+
39341
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39342
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39343
+
39344
+
39345
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39346
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
39347
+
39348
+
39349
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39350
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39351
+
39352
+
39353
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39354
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39355
+
39356
+
39357
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:30 +0200
39358
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39359
+
39360
+
39361
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 15:48:32 +0200
39362
+ Processing by IndexController#index as HTML
39363
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39364
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
39365
+
39366
+
39367
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:32 +0200
39368
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39369
+
39370
+
39371
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:32 +0200
39372
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39373
+
39374
+
39375
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:48:33 +0200
39376
+ Processing by WelcomeController#index as HTML
39377
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
39378
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
39379
+
39380
+
39381
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:33 +0200
39382
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39383
+
39384
+
39385
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:33 +0200
39386
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39387
+
39388
+
39389
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 15:48:42 +0200
39390
+ Processing by WelcomeController#index as HTML
39391
+ Parameters: {"phone_number"=>"0829267557", "_mxit_rails_submit"=>"Proceed"}
39392
+ Validation: "0829267557"
39393
+ Output: true
39394
+ This won't execute if an error occurred or if error! or redirect! was called
39395
+ Redirected to http://localhost:3000/mxit/index/success
39396
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
39397
+
39398
+
39399
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:48:42 +0200
39400
+ Processing by IndexController#success as HTML
39401
+ Rendered index/success.html.erb within layouts/mxit (0.2ms)
39402
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
39403
+
39404
+
39405
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:42 +0200
39406
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39407
+
39408
+
39409
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:42 +0200
39410
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39411
+
39412
+
39413
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:48:43 +0200
39414
+ Processing by IndexController#index as HTML
39415
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39416
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
39417
+
39418
+
39419
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:43 +0200
39420
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39421
+
39422
+
39423
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:43 +0200
39424
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39425
+
39426
+
39427
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:48:44 +0200
39428
+ Processing by FormController#index as HTML
39429
+ Rendered form/index/start.html.erb within layouts/mxit (0.2ms)
39430
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
39431
+
39432
+
39433
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:44 +0200
39434
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39435
+
39436
+
39437
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:44 +0200
39438
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39439
+
39440
+
39441
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:48:46 +0200
39442
+ Processing by FormController#index as HTML
39443
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
39444
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
39445
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
39446
+
39447
+
39448
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:46 +0200
39449
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39450
+
39451
+
39452
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:47 +0200
39453
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39454
+
39455
+
39456
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:48:49 +0200
39457
+ Processing by FormController#index as HTML
39458
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
39459
+ Output: true
39460
+ Rendered form/index/surname.html.erb within layouts/mxit (0.6ms)
39461
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
39462
+
39463
+
39464
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:49 +0200
39465
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39466
+
39467
+
39468
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:49 +0200
39469
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39470
+
39471
+
39472
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:48:50 +0200
39473
+ Processing by FormController#index as HTML
39474
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
39475
+ Output: true
39476
+ Rendered form/index/age.html.erb within layouts/mxit (16.8ms)
39477
+ Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.0ms)
39478
+
39479
+
39480
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:50 +0200
39481
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39482
+
39483
+
39484
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:50 +0200
39485
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39486
+
39487
+
39488
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:48:52 +0200
39489
+ Processing by FormController#index as HTML
39490
+ Parameters: {"age"=>"26", "_mxit_rails_submit"=>"Proceed"}
39491
+ Output: true
39492
+ Rendered form/index/done.html.erb within layouts/mxit (0.6ms)
39493
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39494
+
39495
+
39496
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:52 +0200
39497
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39498
+
39499
+
39500
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:53 +0200
39501
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39502
+
39503
+
39504
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:48:55 +0200
39505
+ Processing by FormController#index as HTML
39506
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
39507
+ Output: true
39508
+ Form Completed!
39509
+ name: Linsen; surname: Loots; age: 26
39510
+ ******
39511
+
39512
+
39513
+ Redirected to http://localhost:3000/mxit/index/success
39514
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
39515
+
39516
+
39517
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:48:55 +0200
39518
+ Processing by IndexController#success as HTML
39519
+ Rendered index/success.html.erb within layouts/mxit (0.2ms)
39520
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39521
+
39522
+
39523
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:55 +0200
39524
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39525
+
39526
+
39527
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:55 +0200
39528
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39529
+
39530
+
39531
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:48:56 +0200
39532
+ Processing by IndexController#index as HTML
39533
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
39534
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
39535
+
39536
+
39537
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:48:56 +0200
39538
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39539
+
39540
+
39541
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:48:56 +0200
39542
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39543
+
39544
+
39545
+ Started GET "/assets/mxit_rails/in.png" for 127.0.0.1 at 2012-09-14 15:49:15 +0200
39546
+ Served asset /mxit_rails/in.png - 304 Not Modified (3ms)
39547
+
39548
+
39549
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:49:22 +0200
39550
+ Processing by WelcomeController#index as HTML
39551
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
39552
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39553
+
39554
+
39555
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:49:22 +0200
39556
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39557
+
39558
+
39559
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:49:22 +0200
39560
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39561
+
39562
+
39563
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:49:47 +0200
39564
+ Processing by EmulatorController#index as HTML
39565
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.4ms)
39566
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
39567
+
39568
+
39569
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39570
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39571
+
39572
+
39573
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39574
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (1ms)
39575
+
39576
+
39577
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39578
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
39579
+
39580
+
39581
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39582
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
39583
+
39584
+
39585
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39586
+ Processing by IndexController#index as HTML
39587
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
39588
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
39589
+
39590
+
39591
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39592
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39593
+
39594
+
39595
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39596
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39597
+
39598
+
39599
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39600
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (2ms)
39601
+
39602
+
39603
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39604
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39605
+
39606
+
39607
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39608
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39609
+
39610
+
39611
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:49:48 +0200
39612
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39613
+
39614
+
39615
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39616
+ Processing by EmulatorController#index as HTML
39617
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.3ms)
39618
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
39619
+
39620
+
39621
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39622
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39623
+
39624
+
39625
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39626
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (4ms)
39627
+
39628
+
39629
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39630
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
39631
+
39632
+
39633
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39634
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (0ms)
39635
+
39636
+
39637
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39638
+ Processing by IndexController#index as HTML
39639
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
39640
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
39641
+
39642
+
39643
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39644
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39645
+
39646
+
39647
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39648
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39649
+
39650
+
39651
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39652
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (3ms)
39653
+
39654
+
39655
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39656
+ Served asset /mxit_rails/included.css - 304 Not Modified (18ms)
39657
+
39658
+
39659
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39660
+ Served asset /mxit_rails/out.png - 304 Not Modified (0ms)
39661
+
39662
+
39663
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:23 +0200
39664
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39665
+
39666
+
39667
+ Started GET "/emulator" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39668
+ Processing by EmulatorController#index as HTML
39669
+ Rendered /Users/linsenloots/Dev/payments/mxit-rails/app/views/emulator/index.html.erb (2.3ms)
39670
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
39671
+
39672
+
39673
+ Started GET "/assets/mxit_rails/emulator.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39674
+ Served asset /mxit_rails/emulator.css - 304 Not Modified (0ms)
39675
+
39676
+
39677
+ Started GET "/assets/mxit_rails/jquery.cookie.js?body=1" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39678
+ Served asset /mxit_rails/jquery.cookie.js - 304 Not Modified (1ms)
39679
+
39680
+
39681
+ Started GET "/assets/mxit_rails/jquery-1.8.0.min.js?body=1" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39682
+ Served asset /mxit_rails/jquery-1.8.0.min.js - 304 Not Modified (0ms)
39683
+
39684
+
39685
+ Started GET "/assets/mxit_rails/emulator.js?body=1" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39686
+ Served asset /mxit_rails/emulator.js - 304 Not Modified (0ms)
39687
+
39688
+
39689
+ Started GET "/assets/mxit_rails/go.png" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39690
+ Served asset /mxit_rails/go.png - 304 Not Modified (0ms)
39691
+
39692
+
39693
+ Started GET "/assets/mxit_rails/out.png" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39694
+ Served asset /mxit_rails/out.png - 304 Not Modified (2ms)
39695
+
39696
+
39697
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39698
+ Processing by IndexController#index as HTML
39699
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39700
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39701
+
39702
+
39703
+ Started GET "/assets/mxit_rails/nokia-5310-frame.png" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39704
+ Served asset /mxit_rails/nokia-5310-frame.png - 304 Not Modified (1ms)
39705
+
39706
+
39707
+ Started GET "/assets/mxit_rails/refresh.png" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39708
+ Served asset /mxit_rails/refresh.png - 304 Not Modified (0ms)
39709
+
39710
+
39711
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39712
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39713
+
39714
+
39715
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:27 +0200
39716
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39717
+
39718
+
39719
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:52:31 +0200
39720
+ Processing by WelcomeController#index as HTML
39721
+ Rendered welcome/index.html.erb within layouts/mxit (0.1ms)
39722
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
39723
+
39724
+
39725
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:31 +0200
39726
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39727
+
39728
+
39729
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:31 +0200
39730
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39731
+
39732
+
39733
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 15:52:36 +0200
39734
+ Processing by WelcomeController#index as HTML
39735
+ Parameters: {"phone_number"=>"0829267557", "_mxit_rails_submit"=>"Proceed"}
39736
+ Validation: "0829267557"
39737
+ Output: true
39738
+ This won't execute if an error occurred or if error! or redirect! was called
39739
+ Redirected to http://localhost:3000/mxit/index/success
39740
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
39741
+
39742
+
39743
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:52:36 +0200
39744
+ Processing by IndexController#success as HTML
39745
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
39746
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
39747
+
39748
+
39749
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:36 +0200
39750
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39751
+
39752
+
39753
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:37 +0200
39754
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39755
+
39756
+
39757
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:52:37 +0200
39758
+ Processing by IndexController#index as HTML
39759
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39760
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39761
+
39762
+
39763
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:37 +0200
39764
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39765
+
39766
+
39767
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:37 +0200
39768
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39769
+
39770
+
39771
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:52:38 +0200
39772
+ Processing by FormController#index as HTML
39773
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
39774
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
39775
+
39776
+
39777
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:38 +0200
39778
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39779
+
39780
+
39781
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:38 +0200
39782
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39783
+
39784
+
39785
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:52:40 +0200
39786
+ Processing by FormController#index as HTML
39787
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
39788
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
39789
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
39790
+
39791
+
39792
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:40 +0200
39793
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39794
+
39795
+
39796
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:40 +0200
39797
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39798
+
39799
+
39800
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:52:41 +0200
39801
+ Processing by FormController#index as HTML
39802
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
39803
+ Output: true
39804
+ Rendered form/index/surname.html.erb within layouts/mxit (0.1ms)
39805
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
39806
+
39807
+
39808
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:41 +0200
39809
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39810
+
39811
+
39812
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:41 +0200
39813
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39814
+
39815
+
39816
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:52:44 +0200
39817
+ Processing by FormController#index as HTML
39818
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
39819
+ Output: true
39820
+ Rendered form/index/age.html.erb within layouts/mxit (0.2ms)
39821
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
39822
+
39823
+
39824
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:44 +0200
39825
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39826
+
39827
+
39828
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:44 +0200
39829
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39830
+
39831
+
39832
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:52:46 +0200
39833
+ Processing by FormController#index as HTML
39834
+ Parameters: {"age"=>"26", "_mxit_rails_submit"=>"Proceed"}
39835
+ Output: true
39836
+ Rendered form/index/done.html.erb within layouts/mxit (0.2ms)
39837
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
39838
+
39839
+
39840
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:46 +0200
39841
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39842
+
39843
+
39844
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:46 +0200
39845
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39846
+
39847
+
39848
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:52:49 +0200
39849
+ Processing by FormController#index as HTML
39850
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
39851
+ Output: true
39852
+ Form Completed!
39853
+ name: Linsen; surname: Loots; age: 26
39854
+ ******
39855
+
39856
+
39857
+ Redirected to http://localhost:3000/mxit/index/success
39858
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
39859
+
39860
+
39861
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:52:49 +0200
39862
+ Processing by IndexController#success as HTML
39863
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
39864
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
39865
+
39866
+
39867
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:49 +0200
39868
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39869
+
39870
+
39871
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:49 +0200
39872
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39873
+
39874
+
39875
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:52:50 +0200
39876
+ Processing by IndexController#index as HTML
39877
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
39878
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
39879
+
39880
+
39881
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:50 +0200
39882
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39883
+
39884
+
39885
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:50 +0200
39886
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39887
+
39888
+
39889
+ Started GET "/mxit/index" for 127.0.0.1 at 2012-09-14 15:52:58 +0200
39890
+ Processing by IndexController#index as HTML
39891
+ Rendered index/index.html.erb within layouts/mxit (0.2ms)
39892
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
39893
+
39894
+
39895
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:58 +0200
39896
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39897
+
39898
+
39899
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:58 +0200
39900
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39901
+
39902
+
39903
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:52:59 +0200
39904
+ Processing by FormController#index as HTML
39905
+ Rendered form/index/start.html.erb within layouts/mxit (0.3ms)
39906
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
39907
+
39908
+
39909
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:52:59 +0200
39910
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39911
+
39912
+
39913
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:52:59 +0200
39914
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39915
+
39916
+
39917
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:53:00 +0200
39918
+ Processing by FormController#index as HTML
39919
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
39920
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
39921
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39922
+
39923
+
39924
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:53:00 +0200
39925
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39926
+
39927
+
39928
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:53:01 +0200
39929
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39930
+
39931
+
39932
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:53:02 +0200
39933
+ Processing by FormController#index as HTML
39934
+ Parameters: {"name"=>"Linsen", "_mxit_rails_submit"=>"Proceed"}
39935
+ Output: true
39936
+ Rendered form/index/surname.html.erb within layouts/mxit (0.2ms)
39937
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
39938
+
39939
+
39940
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:53:02 +0200
39941
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39942
+
39943
+
39944
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:53:02 +0200
39945
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39946
+
39947
+
39948
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:53:03 +0200
39949
+ Processing by FormController#index as HTML
39950
+ Parameters: {"surname"=>"Loots", "_mxit_rails_submit"=>"Proceed"}
39951
+ Output: true
39952
+ Rendered form/index/age.html.erb within layouts/mxit (0.1ms)
39953
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
39954
+
39955
+
39956
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:53:03 +0200
39957
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39958
+
39959
+
39960
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:53:03 +0200
39961
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39962
+
39963
+
39964
+ Started POST "/mxit/form/index" for 127.0.0.1 at 2012-09-14 15:53:05 +0200
39965
+ Processing by FormController#index as HTML
39966
+ Parameters: {"age"=>"26", "_mxit_rails_submit"=>"Proceed"}
39967
+ Output: true
39968
+ Rendered form/index/done.html.erb within layouts/mxit (0.2ms)
39969
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
39970
+
39971
+
39972
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:53:05 +0200
39973
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
39974
+
39975
+
39976
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:53:05 +0200
39977
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
39978
+
39979
+
39980
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:53:07 +0200
39981
+ Processing by FormController#index as HTML
39982
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
39983
+ Output: true
39984
+ Form Completed!
39985
+ name: Linsen; surname: Loots; age: 26
39986
+ ******
39987
+
39988
+
39989
+ Redirected to http://localhost:3000/mxit/index/success
39990
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
39991
+
39992
+
39993
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:53:07 +0200
39994
+ Processing by IndexController#success as HTML
39995
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
39996
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
39997
+
39998
+
39999
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:53:07 +0200
40000
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40001
+
40002
+
40003
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:53:07 +0200
40004
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
40005
+
40006
+
40007
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:53:08 +0200
40008
+ Processing by IndexController#index as HTML
40009
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
40010
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
40011
+
40012
+
40013
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:53:08 +0200
40014
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40015
+
40016
+
40017
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:53:08 +0200
40018
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
40019
+
40020
+
40021
+ Started GET "/mxit/welcome" for 127.0.0.1 at 2012-09-14 15:56:44 +0200
40022
+ Processing by WelcomeController#index as HTML
40023
+ Rendered welcome/index.html.erb within layouts/mxit (0.2ms)
40024
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
40025
+
40026
+
40027
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:56:44 +0200
40028
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40029
+
40030
+
40031
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:56:44 +0200
40032
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
40033
+
40034
+
40035
+ Started POST "/mxit/welcome/index" for 127.0.0.1 at 2012-09-14 15:56:54 +0200
40036
+ Processing by WelcomeController#index as HTML
40037
+ Parameters: {"phone_number"=>"0829267557", "_mxit_rails_submit"=>"Proceed"}
40038
+ Validation: "0829267557"
40039
+ Output: true
40040
+ This won't execute if an error occurred or if error! or redirect! was called
40041
+ Redirected to http://localhost:3000/mxit/index/success
40042
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
40043
+
40044
+
40045
+ Started GET "/mxit/index/success" for 127.0.0.1 at 2012-09-14 15:56:54 +0200
40046
+ Processing by IndexController#success as HTML
40047
+ Rendered index/success.html.erb within layouts/mxit (0.1ms)
40048
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
40049
+
40050
+
40051
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:56:54 +0200
40052
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40053
+
40054
+
40055
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:56:54 +0200
40056
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
40057
+
40058
+
40059
+ Started GET "/mxit" for 127.0.0.1 at 2012-09-14 15:56:55 +0200
40060
+ Processing by IndexController#index as HTML
40061
+ Rendered index/index.html.erb within layouts/mxit (0.1ms)
40062
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
40063
+
40064
+
40065
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:56:55 +0200
40066
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40067
+
40068
+
40069
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:56:55 +0200
40070
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
40071
+
40072
+
40073
+ Started GET "/mxit/form" for 127.0.0.1 at 2012-09-14 15:56:57 +0200
40074
+ Processing by FormController#index as HTML
40075
+ Rendered form/index/start.html.erb within layouts/mxit (0.1ms)
40076
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
40077
+
40078
+
40079
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:56:57 +0200
40080
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40081
+
40082
+
40083
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:56:57 +0200
40084
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)
40085
+
40086
+
40087
+ Started GET "/mxit/form/index?_mxit_rails_submit=Proceed" for 127.0.0.1 at 2012-09-14 15:56:58 +0200
40088
+ Processing by FormController#index as HTML
40089
+ Parameters: {"_mxit_rails_submit"=>"Proceed"}
40090
+ Rendered form/index/name.html.erb within layouts/mxit (0.1ms)
40091
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
40092
+
40093
+
40094
+ Started GET "/assets/mxit_rails/included.css?body=1" for 127.0.0.1 at 2012-09-14 15:56:58 +0200
40095
+ Served asset /mxit_rails/included.css - 304 Not Modified (0ms)
40096
+
40097
+
40098
+ Started GET "/assets/mxit_rails/favicon.ico" for 127.0.0.1 at 2012-09-14 15:56:58 +0200
40099
+ Served asset /mxit_rails/favicon.ico - 304 Not Modified (0ms)