evercookie 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/views/evercookie/evercookie/get.js.erb +12 -2
- data/app/views/evercookie/evercookie/set.js.erb +12 -2
- data/lib/evercookie/version.rb +1 -1
- data/test/dummy/config/environments/development.rb +2 -2
- data/test/dummy/log/development.log +1587 -0
- data/test/dummy/tmp/cache/assets/D2F/760/sprockets%2F3b464ead21d28d0a1298357a3a7cbc18 +0 -0
- data/test/dummy/tmp/cache/assets/D45/C10/sprockets%2Fac34f7046872aba24b7375de608d8fe6 +0 -0
- data/test/dummy/tmp/cache/assets/D99/2F0/sprockets%2Fa2cf2651c63ecb32c21ea94fa84cd498 +0 -0
- data/test/dummy/tmp/cache/assets/DAA/C00/sprockets%2F9bddc9410e086be5f5efa982c5247c7b +0 -0
- data/test/dummy/tmp/cache/assets/DFF/960/sprockets%2Fe73aa53de71d957ef04bdfd2fba2e915 +0 -0
- data/test/dummy/tmp/cache/assets/E83/750/sprockets%2Fe0a4c2b9c4acf9bcfedbb42a8bd45e80 +0 -0
- metadata +8 -8
@@ -1,2 +1,12 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
(function(){
|
2
|
+
function getCookie(){
|
3
|
+
var ec = new <%= Evercookie.js_class %>();
|
4
|
+
ec.get('<%= @data[:key] -%>');
|
5
|
+
};
|
6
|
+
if(typeof jQuery != 'undefined') {
|
7
|
+
jQuery(document).ready(getCookie);
|
8
|
+
}
|
9
|
+
else {
|
10
|
+
getCookie();
|
11
|
+
};
|
12
|
+
})();
|
@@ -1,2 +1,12 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
(function(){
|
2
|
+
function setCookie(){
|
3
|
+
var ec = new <%= Evercookie.js_class %>();
|
4
|
+
ec.set('<%= @data[:key] -%>', '<%= @data[:value] -%>')
|
5
|
+
};
|
6
|
+
if(typeof jQuery != 'undefined') {
|
7
|
+
jQuery(document).ready(setCookie);
|
8
|
+
}
|
9
|
+
else {
|
10
|
+
setCookie();
|
11
|
+
};
|
12
|
+
})();
|
data/lib/evercookie/version.rb
CHANGED
@@ -23,11 +23,11 @@ Dummy::Application.configure do
|
|
23
23
|
config.action_dispatch.best_standards_support = :builtin
|
24
24
|
|
25
25
|
# Raise exception on mass assignment protection for Active Record models
|
26
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
26
|
+
# config.active_record.mass_assignment_sanitizer = :strict
|
27
27
|
|
28
28
|
# Log the query plan for queries taking more than this (works
|
29
29
|
# with SQLite, MySQL, and PostgreSQL)
|
30
|
-
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
30
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
31
31
|
|
32
32
|
# Do not compress assets
|
33
33
|
config.assets.compress = false
|
@@ -30552,3 +30552,1590 @@ Processing by IndexController#get_defined as HTML
|
|
30552
30552
|
Parameters: {"ec_name"=>"foo"}
|
30553
30553
|
Rendered text template (0.0ms)
|
30554
30554
|
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
30555
|
+
|
30556
|
+
|
30557
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 12:52:34 +0200
|
30558
|
+
Processing by IndexController#index as HTML
|
30559
|
+
Rendered index/index.html.erb within layouts/application (2.3ms)
|
30560
|
+
Completed 200 OK in 25ms (Views: 24.5ms)
|
30561
|
+
|
30562
|
+
|
30563
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:52:34 +0200
|
30564
|
+
Served asset /application.css - 200 OK (16ms)
|
30565
|
+
|
30566
|
+
|
30567
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:52:34 +0200
|
30568
|
+
Served asset /index.css - 200 OK (1ms)
|
30569
|
+
|
30570
|
+
|
30571
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:34 +0200
|
30572
|
+
Served asset /application.js - 200 OK (3ms)
|
30573
|
+
|
30574
|
+
|
30575
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:34 +0200
|
30576
|
+
Served asset /index.js - 200 OK (1ms)
|
30577
|
+
|
30578
|
+
|
30579
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=ccccc&ec_value=123&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30580
|
+
Processing by IndexController#set as HTML
|
30581
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "ec_value"=>"123", "commit"=>"Set Cookie Value"}
|
30582
|
+
Compiled evercookie/evercookie.js (9ms) (pid 29291)
|
30583
|
+
Compiled ec.js (1ms) (pid 29291)
|
30584
|
+
Rendered inline template (22.3ms)
|
30585
|
+
Rendered index/set.html.erb within layouts/application (22.8ms)
|
30586
|
+
Completed 200 OK in 26ms (Views: 25.4ms)
|
30587
|
+
|
30588
|
+
|
30589
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30590
|
+
Served asset /application.css - 304 Not Modified (19ms)
|
30591
|
+
|
30592
|
+
|
30593
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30594
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30595
|
+
|
30596
|
+
|
30597
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30598
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
30599
|
+
|
30600
|
+
|
30601
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30602
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
30603
|
+
|
30604
|
+
|
30605
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30606
|
+
Served asset /evercookie/swfobject-2.2.min.js - 200 OK (1ms)
|
30607
|
+
|
30608
|
+
|
30609
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30610
|
+
Served asset /evercookie/evercookie.js - 200 OK (2ms)
|
30611
|
+
|
30612
|
+
|
30613
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30614
|
+
Served asset /ec.js - 200 OK (2ms)
|
30615
|
+
|
30616
|
+
|
30617
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 12:52:46 +0200
|
30618
|
+
Processing by Evercookie::EvercookieController#set as JS
|
30619
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.4ms)
|
30620
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
30621
|
+
|
30622
|
+
|
30623
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 12:53:15 +0200
|
30624
|
+
Processing by IndexController#index as HTML
|
30625
|
+
Rendered index/index.html.erb within layouts/application (1.8ms)
|
30626
|
+
Completed 200 OK in 6ms (Views: 6.2ms)
|
30627
|
+
|
30628
|
+
|
30629
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:53:15 +0200
|
30630
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30631
|
+
|
30632
|
+
|
30633
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:53:15 +0200
|
30634
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30635
|
+
|
30636
|
+
|
30637
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:15 +0200
|
30638
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
30639
|
+
|
30640
|
+
|
30641
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:15 +0200
|
30642
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
30643
|
+
|
30644
|
+
|
30645
|
+
Started GET "/index/get?utf8=%E2%9C%93&ec_name=ccccc&commit=Get+Cookie+Value" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30646
|
+
Processing by IndexController#get as HTML
|
30647
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "commit"=>"Get Cookie Value"}
|
30648
|
+
Rendered inline template (2.0ms)
|
30649
|
+
Rendered index/get.html.erb within layouts/application (3.2ms)
|
30650
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
30651
|
+
|
30652
|
+
|
30653
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30654
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30655
|
+
|
30656
|
+
|
30657
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30658
|
+
Served asset /index.js - 304 Not Modified (1ms)
|
30659
|
+
|
30660
|
+
|
30661
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30662
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30663
|
+
|
30664
|
+
|
30665
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30666
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
30667
|
+
|
30668
|
+
|
30669
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30670
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
30671
|
+
|
30672
|
+
|
30673
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30674
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
30675
|
+
|
30676
|
+
|
30677
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30678
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
30679
|
+
|
30680
|
+
|
30681
|
+
Started GET "/evercookie/get.js" for 127.0.0.1 at 2013-03-05 12:53:18 +0200
|
30682
|
+
Processing by Evercookie::EvercookieController#get as JS
|
30683
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/get.js.erb (0.3ms)
|
30684
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
30685
|
+
|
30686
|
+
|
30687
|
+
Started GET "/index/get_controller?ec_name=ccccc" for 127.0.0.1 at 2013-03-05 12:53:29 +0200
|
30688
|
+
Processing by IndexController#get_controller as HTML
|
30689
|
+
Parameters: {"ec_name"=>"ccccc"}
|
30690
|
+
Rendered text template (0.0ms)
|
30691
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
30692
|
+
|
30693
|
+
|
30694
|
+
Started GET "/index/get_defined?ec_name=ccccc" for 127.0.0.1 at 2013-03-05 12:53:31 +0200
|
30695
|
+
Processing by IndexController#get_defined as HTML
|
30696
|
+
Parameters: {"ec_name"=>"ccccc"}
|
30697
|
+
Completed 500 Internal Server Error in 1ms
|
30698
|
+
|
30699
|
+
NoMethodError (undefined method `[]' for nil:NilClass):
|
30700
|
+
app/controllers/index_controller.rb:21:in `get_defined'
|
30701
|
+
|
30702
|
+
|
30703
|
+
Rendered /home/daddy/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
30704
|
+
Rendered /home/daddy/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
30705
|
+
Rendered /home/daddy/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
|
30706
|
+
|
30707
|
+
|
30708
|
+
Started GET "/index/get_detailed?utf8=%E2%9C%93&ec_name=ccccc&commit=Get+Cookie+Data" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30709
|
+
Processing by IndexController#get_detailed as HTML
|
30710
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "commit"=>"Get Cookie Data"}
|
30711
|
+
Rendered index/get_detailed.html.erb within layouts/application (2.6ms)
|
30712
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
30713
|
+
|
30714
|
+
|
30715
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30716
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30717
|
+
|
30718
|
+
|
30719
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30720
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30721
|
+
|
30722
|
+
|
30723
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30724
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
30725
|
+
|
30726
|
+
|
30727
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30728
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
30729
|
+
|
30730
|
+
|
30731
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30732
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
30733
|
+
|
30734
|
+
|
30735
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30736
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
30737
|
+
|
30738
|
+
|
30739
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30740
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
30741
|
+
|
30742
|
+
|
30743
|
+
Started GET "/evercookie/ec_png?name=ccccc" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30744
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
30745
|
+
Parameters: {"name"=>"ccccc"}
|
30746
|
+
Rendered text template (0.0ms)
|
30747
|
+
Completed 304 Not Modified in 1ms (Views: 0.4ms)
|
30748
|
+
|
30749
|
+
|
30750
|
+
Started GET "/evercookie/ec_etag?name=ccccc" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30751
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
30752
|
+
Parameters: {"name"=>"ccccc"}
|
30753
|
+
Rendered text template (0.0ms)
|
30754
|
+
Completed 304 Not Modified in 1ms (Views: 0.4ms)
|
30755
|
+
|
30756
|
+
|
30757
|
+
Started GET "/evercookie/ec_cache?name=ccccc" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30758
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
30759
|
+
Parameters: {"name"=>"ccccc"}
|
30760
|
+
Rendered text template (0.0ms)
|
30761
|
+
Completed 304 Not Modified in 1ms (Views: 0.3ms)
|
30762
|
+
|
30763
|
+
|
30764
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 12:53:38 +0200
|
30765
|
+
Served asset /ec.swf - 200 OK (1ms)
|
30766
|
+
|
30767
|
+
|
30768
|
+
Started GET "/evercookie/save?name=ccccc" for 127.0.0.1 at 2013-03-05 12:53:41 +0200
|
30769
|
+
Processing by Evercookie::EvercookieController#save as JS
|
30770
|
+
Parameters: {"name"=>"ccccc"}
|
30771
|
+
Rendered text template (0.0ms)
|
30772
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
30773
|
+
|
30774
|
+
|
30775
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=ccccc&ec_value=123&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30776
|
+
Processing by IndexController#set as HTML
|
30777
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "ec_value"=>"123", "commit"=>"Set Cookie Value"}
|
30778
|
+
Rendered inline template (5.7ms)
|
30779
|
+
Rendered index/set.html.erb within layouts/application (7.1ms)
|
30780
|
+
Completed 200 OK in 27ms (Views: 26.7ms)
|
30781
|
+
|
30782
|
+
|
30783
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30784
|
+
Served asset /application.css - 304 Not Modified (18ms)
|
30785
|
+
|
30786
|
+
|
30787
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30788
|
+
Served asset /index.css - 304 Not Modified (3ms)
|
30789
|
+
|
30790
|
+
|
30791
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30792
|
+
Served asset /index.js - 304 Not Modified (1ms)
|
30793
|
+
|
30794
|
+
|
30795
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30796
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (1ms)
|
30797
|
+
|
30798
|
+
|
30799
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30800
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
30801
|
+
|
30802
|
+
|
30803
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30804
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (1ms)
|
30805
|
+
|
30806
|
+
|
30807
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30808
|
+
Served asset /ec.js - 304 Not Modified (2ms)
|
30809
|
+
|
30810
|
+
|
30811
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 12:54:15 +0200
|
30812
|
+
Processing by Evercookie::EvercookieController#set as JS
|
30813
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.4ms)
|
30814
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
30815
|
+
|
30816
|
+
|
30817
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=ccccc&ec_value=123&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30818
|
+
Processing by IndexController#set as HTML
|
30819
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "ec_value"=>"123", "commit"=>"Set Cookie Value"}
|
30820
|
+
Rendered inline template (3.5ms)
|
30821
|
+
Rendered index/set.html.erb within layouts/application (4.0ms)
|
30822
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
30823
|
+
|
30824
|
+
|
30825
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30826
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30827
|
+
|
30828
|
+
|
30829
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30830
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
30831
|
+
|
30832
|
+
|
30833
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30834
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (2ms)
|
30835
|
+
|
30836
|
+
|
30837
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30838
|
+
Served asset /index.css - 304 Not Modified (1ms)
|
30839
|
+
|
30840
|
+
|
30841
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30842
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (12ms)
|
30843
|
+
|
30844
|
+
|
30845
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30846
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
30847
|
+
|
30848
|
+
|
30849
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30850
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
30851
|
+
|
30852
|
+
|
30853
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 12:54:22 +0200
|
30854
|
+
Processing by Evercookie::EvercookieController#set as JS
|
30855
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.1ms)
|
30856
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
30857
|
+
|
30858
|
+
|
30859
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=ccccc&ec_value=123&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30860
|
+
Processing by IndexController#set as HTML
|
30861
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "ec_value"=>"123", "commit"=>"Set Cookie Value"}
|
30862
|
+
Rendered inline template (3.4ms)
|
30863
|
+
Rendered index/set.html.erb within layouts/application (3.7ms)
|
30864
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
30865
|
+
|
30866
|
+
|
30867
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30868
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30869
|
+
|
30870
|
+
|
30871
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30872
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
30873
|
+
|
30874
|
+
|
30875
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30876
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
30877
|
+
|
30878
|
+
|
30879
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30880
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
30881
|
+
|
30882
|
+
|
30883
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30884
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30885
|
+
|
30886
|
+
|
30887
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30888
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
30889
|
+
|
30890
|
+
|
30891
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 12:54:38 +0200
|
30892
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
30893
|
+
|
30894
|
+
|
30895
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 12:54:40 +0200
|
30896
|
+
Processing by Evercookie::EvercookieController#set as JS
|
30897
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.1ms)
|
30898
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
30899
|
+
|
30900
|
+
|
30901
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:06:12 +0200
|
30902
|
+
Processing by IndexController#index as HTML
|
30903
|
+
Rendered index/index.html.erb within layouts/application (2.3ms)
|
30904
|
+
Completed 200 OK in 23ms (Views: 22.5ms)
|
30905
|
+
|
30906
|
+
|
30907
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:12 +0200
|
30908
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
30909
|
+
|
30910
|
+
|
30911
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:12 +0200
|
30912
|
+
Served asset /index.js - 304 Not Modified (3ms)
|
30913
|
+
|
30914
|
+
|
30915
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:12 +0200
|
30916
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
30917
|
+
|
30918
|
+
|
30919
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:12 +0200
|
30920
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30921
|
+
|
30922
|
+
|
30923
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=ccccc&ec_value=123&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:06:17 +0200
|
30924
|
+
Processing by IndexController#set as HTML
|
30925
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "ec_value"=>"123", "commit"=>"Set Cookie Value"}
|
30926
|
+
Rendered inline template (5.4ms)
|
30927
|
+
Rendered index/set.html.erb within layouts/application (5.8ms)
|
30928
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
30929
|
+
|
30930
|
+
|
30931
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30932
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30933
|
+
|
30934
|
+
|
30935
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30936
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
30937
|
+
|
30938
|
+
|
30939
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30940
|
+
Served asset /ec.js - 304 Not Modified (2ms)
|
30941
|
+
|
30942
|
+
|
30943
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30944
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (1ms)
|
30945
|
+
|
30946
|
+
|
30947
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30948
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
30949
|
+
|
30950
|
+
|
30951
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30952
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
30953
|
+
|
30954
|
+
|
30955
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30956
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (2ms)
|
30957
|
+
|
30958
|
+
|
30959
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 13:06:18 +0200
|
30960
|
+
Processing by Evercookie::EvercookieController#set as JS
|
30961
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.3ms)
|
30962
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
30963
|
+
|
30964
|
+
|
30965
|
+
Started GET "/evercookie/ec_png?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:25 +0200
|
30966
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
30967
|
+
Parameters: {"name"=>"ccccc"}
|
30968
|
+
Rendered text template (0.0ms)
|
30969
|
+
Completed 200 OK in 6ms (Views: 2.1ms)
|
30970
|
+
|
30971
|
+
|
30972
|
+
Started GET "/evercookie/ec_etag?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:25 +0200
|
30973
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
30974
|
+
Parameters: {"name"=>"ccccc"}
|
30975
|
+
Rendered text template (0.0ms)
|
30976
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
30977
|
+
|
30978
|
+
|
30979
|
+
Started GET "/evercookie/ec_cache?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:25 +0200
|
30980
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
30981
|
+
Parameters: {"name"=>"ccccc"}
|
30982
|
+
Rendered text template (0.0ms)
|
30983
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
30984
|
+
|
30985
|
+
|
30986
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:06:29 +0200
|
30987
|
+
Processing by IndexController#index as HTML
|
30988
|
+
Rendered index/index.html.erb within layouts/application (1.8ms)
|
30989
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
30990
|
+
|
30991
|
+
|
30992
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:29 +0200
|
30993
|
+
Served asset /index.css - 304 Not Modified (2ms)
|
30994
|
+
|
30995
|
+
|
30996
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:29 +0200
|
30997
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
30998
|
+
|
30999
|
+
|
31000
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:29 +0200
|
31001
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31002
|
+
|
31003
|
+
|
31004
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:29 +0200
|
31005
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31006
|
+
|
31007
|
+
|
31008
|
+
Started GET "/index/get?utf8=%E2%9C%93&ec_name=ccccc&commit=Get+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31009
|
+
Processing by IndexController#get as HTML
|
31010
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"ccccc", "commit"=>"Get Cookie Value"}
|
31011
|
+
Rendered inline template (4.1ms)
|
31012
|
+
Rendered index/get.html.erb within layouts/application (5.8ms)
|
31013
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
31014
|
+
|
31015
|
+
|
31016
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31017
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31018
|
+
|
31019
|
+
|
31020
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31021
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31022
|
+
|
31023
|
+
|
31024
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31025
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31026
|
+
|
31027
|
+
|
31028
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31029
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31030
|
+
|
31031
|
+
|
31032
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31033
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31034
|
+
|
31035
|
+
|
31036
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31037
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31038
|
+
|
31039
|
+
|
31040
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:06:31 +0200
|
31041
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31042
|
+
|
31043
|
+
|
31044
|
+
Started GET "/evercookie/get.js" for 127.0.0.1 at 2013-03-05 13:06:32 +0200
|
31045
|
+
Processing by Evercookie::EvercookieController#get as JS
|
31046
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/get.js.erb (0.3ms)
|
31047
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
31048
|
+
|
31049
|
+
|
31050
|
+
Started GET "/evercookie/ec_etag?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:32 +0200
|
31051
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31052
|
+
Parameters: {"name"=>"ccccc"}
|
31053
|
+
Rendered text template (0.0ms)
|
31054
|
+
Completed 304 Not Modified in 1ms (Views: 0.3ms)
|
31055
|
+
|
31056
|
+
|
31057
|
+
Started GET "/evercookie/ec_cache?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:32 +0200
|
31058
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31059
|
+
Parameters: {"name"=>"ccccc"}
|
31060
|
+
Rendered text template (0.0ms)
|
31061
|
+
Completed 304 Not Modified in 0ms (Views: 0.1ms)
|
31062
|
+
|
31063
|
+
|
31064
|
+
Started GET "/evercookie/ec_etag?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:32 +0200
|
31065
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31066
|
+
Parameters: {"name"=>"ccccc"}
|
31067
|
+
Rendered text template (0.0ms)
|
31068
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31069
|
+
|
31070
|
+
|
31071
|
+
Started GET "/evercookie/ec_cache?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:32 +0200
|
31072
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31073
|
+
Parameters: {"name"=>"ccccc"}
|
31074
|
+
Rendered text template (0.0ms)
|
31075
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31076
|
+
|
31077
|
+
|
31078
|
+
Started GET "/evercookie/save?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:32 +0200
|
31079
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31080
|
+
Parameters: {"name"=>"ccccc"}
|
31081
|
+
Rendered text template (0.0ms)
|
31082
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
31083
|
+
|
31084
|
+
|
31085
|
+
Started GET "/index/get_controller?ec_name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:33 +0200
|
31086
|
+
Processing by IndexController#get_controller as HTML
|
31087
|
+
Parameters: {"ec_name"=>"ccccc"}
|
31088
|
+
Rendered text template (0.0ms)
|
31089
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
31090
|
+
|
31091
|
+
|
31092
|
+
Started GET "/evercookie/ec_cache?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:35 +0200
|
31093
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31094
|
+
Parameters: {"name"=>"ccccc"}
|
31095
|
+
Rendered text template (0.0ms)
|
31096
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31097
|
+
|
31098
|
+
|
31099
|
+
Started GET "/evercookie/ec_etag?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:35 +0200
|
31100
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31101
|
+
Parameters: {"name"=>"ccccc"}
|
31102
|
+
Rendered text template (0.0ms)
|
31103
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31104
|
+
|
31105
|
+
|
31106
|
+
Started GET "/evercookie/ec_etag?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:35 +0200
|
31107
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31108
|
+
Parameters: {"name"=>"ccccc"}
|
31109
|
+
Rendered text template (0.0ms)
|
31110
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31111
|
+
|
31112
|
+
|
31113
|
+
Started GET "/evercookie/ec_cache?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:35 +0200
|
31114
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31115
|
+
Parameters: {"name"=>"ccccc"}
|
31116
|
+
Rendered text template (0.0ms)
|
31117
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31118
|
+
|
31119
|
+
|
31120
|
+
Started GET "/evercookie/save?name=ccccc" for 127.0.0.1 at 2013-03-05 13:06:35 +0200
|
31121
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31122
|
+
Parameters: {"name"=>"ccccc"}
|
31123
|
+
Rendered text template (0.0ms)
|
31124
|
+
Completed 200 OK in 20ms (Views: 19.5ms)
|
31125
|
+
|
31126
|
+
|
31127
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:18:01 +0200
|
31128
|
+
Processing by IndexController#index as HTML
|
31129
|
+
Rendered index/index.html.erb within layouts/application (2.3ms)
|
31130
|
+
Completed 200 OK in 23ms (Views: 22.6ms)
|
31131
|
+
|
31132
|
+
|
31133
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:01 +0200
|
31134
|
+
Served asset /application.css - 304 Not Modified (3ms)
|
31135
|
+
|
31136
|
+
|
31137
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:01 +0200
|
31138
|
+
Served asset /index.js - 304 Not Modified (2ms)
|
31139
|
+
|
31140
|
+
|
31141
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:01 +0200
|
31142
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31143
|
+
|
31144
|
+
|
31145
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:01 +0200
|
31146
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
31147
|
+
|
31148
|
+
|
31149
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=zxczxc&ec_value=123456&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31150
|
+
Processing by IndexController#set as HTML
|
31151
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"zxczxc", "ec_value"=>"123456", "commit"=>"Set Cookie Value"}
|
31152
|
+
Rendered inline template (5.1ms)
|
31153
|
+
Rendered index/set.html.erb within layouts/application (5.5ms)
|
31154
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
31155
|
+
|
31156
|
+
|
31157
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31158
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31159
|
+
|
31160
|
+
|
31161
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31162
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31163
|
+
|
31164
|
+
|
31165
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31166
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31167
|
+
|
31168
|
+
|
31169
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31170
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (1ms)
|
31171
|
+
|
31172
|
+
|
31173
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31174
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
31175
|
+
|
31176
|
+
|
31177
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31178
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (1ms)
|
31179
|
+
|
31180
|
+
|
31181
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:08 +0200
|
31182
|
+
Served asset /ec.js - 304 Not Modified (2ms)
|
31183
|
+
|
31184
|
+
|
31185
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 13:18:09 +0200
|
31186
|
+
Processing by Evercookie::EvercookieController#set as JS
|
31187
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.7ms)
|
31188
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
31189
|
+
|
31190
|
+
|
31191
|
+
Started GET "/evercookie/ec_png?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:09 +0200
|
31192
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
31193
|
+
Parameters: {"name"=>"zxczxc"}
|
31194
|
+
Rendered text template (0.0ms)
|
31195
|
+
Completed 200 OK in 4ms (Views: 1.8ms)
|
31196
|
+
|
31197
|
+
|
31198
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:09 +0200
|
31199
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31200
|
+
Parameters: {"name"=>"zxczxc"}
|
31201
|
+
Rendered text template (0.0ms)
|
31202
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
31203
|
+
|
31204
|
+
|
31205
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:09 +0200
|
31206
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31207
|
+
Parameters: {"name"=>"zxczxc"}
|
31208
|
+
Rendered text template (0.0ms)
|
31209
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
31210
|
+
|
31211
|
+
|
31212
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:18:11 +0200
|
31213
|
+
Processing by IndexController#index as HTML
|
31214
|
+
Rendered index/index.html.erb within layouts/application (1.3ms)
|
31215
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
31216
|
+
|
31217
|
+
|
31218
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:11 +0200
|
31219
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
31220
|
+
|
31221
|
+
|
31222
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:11 +0200
|
31223
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31224
|
+
|
31225
|
+
|
31226
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:11 +0200
|
31227
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31228
|
+
|
31229
|
+
|
31230
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:11 +0200
|
31231
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31232
|
+
|
31233
|
+
|
31234
|
+
Started GET "/index/get?utf8=%E2%9C%93&ec_name=zxczxc&commit=Get+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31235
|
+
Processing by IndexController#get as HTML
|
31236
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"zxczxc", "commit"=>"Get Cookie Value"}
|
31237
|
+
Rendered inline template (1.9ms)
|
31238
|
+
Rendered index/get.html.erb within layouts/application (2.7ms)
|
31239
|
+
Completed 200 OK in 18ms (Views: 4.8ms)
|
31240
|
+
|
31241
|
+
|
31242
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31243
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31244
|
+
|
31245
|
+
|
31246
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31247
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31248
|
+
|
31249
|
+
|
31250
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31251
|
+
Served asset /index.js - 304 Not Modified (1ms)
|
31252
|
+
|
31253
|
+
|
31254
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31255
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31256
|
+
|
31257
|
+
|
31258
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31259
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31260
|
+
|
31261
|
+
|
31262
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31263
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31264
|
+
|
31265
|
+
|
31266
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:13 +0200
|
31267
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31268
|
+
|
31269
|
+
|
31270
|
+
Started GET "/evercookie/get.js" for 127.0.0.1 at 2013-03-05 13:18:15 +0200
|
31271
|
+
Processing by Evercookie::EvercookieController#get as JS
|
31272
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/get.js.erb (0.6ms)
|
31273
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
31274
|
+
|
31275
|
+
|
31276
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:15 +0200
|
31277
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31278
|
+
Parameters: {"name"=>"zxczxc"}
|
31279
|
+
Rendered text template (0.0ms)
|
31280
|
+
Completed 304 Not Modified in 0ms (Views: 0.3ms)
|
31281
|
+
|
31282
|
+
|
31283
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:15 +0200
|
31284
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31285
|
+
Parameters: {"name"=>"zxczxc"}
|
31286
|
+
Rendered text template (0.0ms)
|
31287
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31288
|
+
|
31289
|
+
|
31290
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:15 +0200
|
31291
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31292
|
+
Parameters: {"name"=>"zxczxc"}
|
31293
|
+
Rendered text template (0.0ms)
|
31294
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
31295
|
+
|
31296
|
+
|
31297
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:15 +0200
|
31298
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31299
|
+
Parameters: {"name"=>"zxczxc"}
|
31300
|
+
Rendered text template (0.0ms)
|
31301
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
31302
|
+
|
31303
|
+
|
31304
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:15 +0200
|
31305
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31306
|
+
Parameters: {"name"=>"zxczxc"}
|
31307
|
+
Rendered text template (0.0ms)
|
31308
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
31309
|
+
|
31310
|
+
|
31311
|
+
Started GET "/index/get_controller?ec_name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:16 +0200
|
31312
|
+
Processing by IndexController#get_controller as HTML
|
31313
|
+
Parameters: {"ec_name"=>"zxczxc"}
|
31314
|
+
Rendered text template (0.0ms)
|
31315
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
31316
|
+
|
31317
|
+
|
31318
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:18 +0200
|
31319
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31320
|
+
Parameters: {"name"=>"zxczxc"}
|
31321
|
+
Rendered text template (0.0ms)
|
31322
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31323
|
+
|
31324
|
+
|
31325
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:18 +0200
|
31326
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31327
|
+
Parameters: {"name"=>"zxczxc"}
|
31328
|
+
Rendered text template (0.0ms)
|
31329
|
+
Completed 304 Not Modified in 0ms (Views: 0.1ms)
|
31330
|
+
|
31331
|
+
|
31332
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:19 +0200
|
31333
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31334
|
+
Parameters: {"name"=>"zxczxc"}
|
31335
|
+
Rendered text template (0.0ms)
|
31336
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31337
|
+
|
31338
|
+
|
31339
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:19 +0200
|
31340
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31341
|
+
Parameters: {"name"=>"zxczxc"}
|
31342
|
+
Rendered text template (0.0ms)
|
31343
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
31344
|
+
|
31345
|
+
|
31346
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:19 +0200
|
31347
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31348
|
+
Parameters: {"name"=>"zxczxc"}
|
31349
|
+
Rendered text template (0.0ms)
|
31350
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
31351
|
+
|
31352
|
+
|
31353
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=zxczxc&ec_value=123456&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31354
|
+
Processing by IndexController#set as HTML
|
31355
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"zxczxc", "ec_value"=>"123456", "commit"=>"Set Cookie Value"}
|
31356
|
+
Rendered inline template (3.9ms)
|
31357
|
+
Rendered index/set.html.erb within layouts/application (4.3ms)
|
31358
|
+
Completed 200 OK in 8ms (Views: 8.3ms)
|
31359
|
+
|
31360
|
+
|
31361
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31362
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31363
|
+
|
31364
|
+
|
31365
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31366
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31367
|
+
|
31368
|
+
|
31369
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31370
|
+
Served asset /index.js - 304 Not Modified (2ms)
|
31371
|
+
|
31372
|
+
|
31373
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31374
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31375
|
+
|
31376
|
+
|
31377
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31378
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31379
|
+
|
31380
|
+
|
31381
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31382
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31383
|
+
|
31384
|
+
|
31385
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:30 +0200
|
31386
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31387
|
+
|
31388
|
+
|
31389
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 13:18:32 +0200
|
31390
|
+
Processing by Evercookie::EvercookieController#set as JS
|
31391
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.0ms)
|
31392
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
31393
|
+
|
31394
|
+
|
31395
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:32 +0200
|
31396
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31397
|
+
Parameters: {"name"=>"zxczxc"}
|
31398
|
+
Rendered text template (0.0ms)
|
31399
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31400
|
+
|
31401
|
+
|
31402
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:32 +0200
|
31403
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31404
|
+
Parameters: {"name"=>"zxczxc"}
|
31405
|
+
Rendered text template (0.0ms)
|
31406
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31407
|
+
|
31408
|
+
|
31409
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=zxczxc&ec_value=123456&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31410
|
+
Processing by IndexController#set as HTML
|
31411
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"zxczxc", "ec_value"=>"123456", "commit"=>"Set Cookie Value"}
|
31412
|
+
Rendered inline template (2.0ms)
|
31413
|
+
Rendered index/set.html.erb within layouts/application (2.2ms)
|
31414
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
31415
|
+
|
31416
|
+
|
31417
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31418
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31419
|
+
|
31420
|
+
|
31421
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31422
|
+
Served asset /index.js - 304 Not Modified (1ms)
|
31423
|
+
|
31424
|
+
|
31425
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31426
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31427
|
+
|
31428
|
+
|
31429
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31430
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31431
|
+
|
31432
|
+
|
31433
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31434
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31435
|
+
|
31436
|
+
|
31437
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31438
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31439
|
+
|
31440
|
+
|
31441
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:43 +0200
|
31442
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31443
|
+
|
31444
|
+
|
31445
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 13:18:46 +0200
|
31446
|
+
Processing by Evercookie::EvercookieController#set as JS
|
31447
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.1ms)
|
31448
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
31449
|
+
|
31450
|
+
|
31451
|
+
Started GET "/evercookie/ec_png?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:50 +0200
|
31452
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
31453
|
+
Parameters: {"name"=>"zxczxc"}
|
31454
|
+
Rendered text template (0.0ms)
|
31455
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
31456
|
+
|
31457
|
+
|
31458
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:50 +0200
|
31459
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31460
|
+
Parameters: {"name"=>"zxczxc"}
|
31461
|
+
Rendered text template (0.0ms)
|
31462
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31463
|
+
|
31464
|
+
|
31465
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:50 +0200
|
31466
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31467
|
+
Parameters: {"name"=>"zxczxc"}
|
31468
|
+
Rendered text template (0.0ms)
|
31469
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31470
|
+
|
31471
|
+
|
31472
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:18:50 +0200
|
31473
|
+
Served asset /ec.swf - 304 Not Modified (1ms)
|
31474
|
+
|
31475
|
+
|
31476
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:18:51 +0200
|
31477
|
+
Processing by IndexController#index as HTML
|
31478
|
+
Rendered index/index.html.erb within layouts/application (0.9ms)
|
31479
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
31480
|
+
|
31481
|
+
|
31482
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:51 +0200
|
31483
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31484
|
+
|
31485
|
+
|
31486
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:51 +0200
|
31487
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31488
|
+
|
31489
|
+
|
31490
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:51 +0200
|
31491
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31492
|
+
|
31493
|
+
|
31494
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:51 +0200
|
31495
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31496
|
+
|
31497
|
+
|
31498
|
+
Started GET "/index/get?utf8=%E2%9C%93&ec_name=zxczxc&commit=Get+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31499
|
+
Processing by IndexController#get as HTML
|
31500
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"zxczxc", "commit"=>"Get Cookie Value"}
|
31501
|
+
Rendered inline template (2.1ms)
|
31502
|
+
Rendered index/get.html.erb within layouts/application (2.5ms)
|
31503
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
31504
|
+
|
31505
|
+
|
31506
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31507
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31508
|
+
|
31509
|
+
|
31510
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31511
|
+
Served asset /index.css - 304 Not Modified (2ms)
|
31512
|
+
|
31513
|
+
|
31514
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31515
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31516
|
+
|
31517
|
+
|
31518
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31519
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31520
|
+
|
31521
|
+
|
31522
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31523
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31524
|
+
|
31525
|
+
|
31526
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31527
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31528
|
+
|
31529
|
+
|
31530
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:18:54 +0200
|
31531
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31532
|
+
|
31533
|
+
|
31534
|
+
Started GET "/evercookie/get.js" for 127.0.0.1 at 2013-03-05 13:18:56 +0200
|
31535
|
+
Processing by Evercookie::EvercookieController#get as JS
|
31536
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/get.js.erb (0.0ms)
|
31537
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
31538
|
+
|
31539
|
+
|
31540
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:56 +0200
|
31541
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31542
|
+
Parameters: {"name"=>"zxczxc"}
|
31543
|
+
Rendered text template (0.0ms)
|
31544
|
+
Completed 304 Not Modified in 0ms (Views: 0.3ms)
|
31545
|
+
|
31546
|
+
|
31547
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:56 +0200
|
31548
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31549
|
+
Parameters: {"name"=>"zxczxc"}
|
31550
|
+
Rendered text template (0.0ms)
|
31551
|
+
Completed 304 Not Modified in 0ms (Views: 0.3ms)
|
31552
|
+
|
31553
|
+
|
31554
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:18:56 +0200
|
31555
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31556
|
+
|
31557
|
+
|
31558
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:57 +0200
|
31559
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31560
|
+
Parameters: {"name"=>"zxczxc"}
|
31561
|
+
Rendered text template (0.0ms)
|
31562
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31563
|
+
|
31564
|
+
|
31565
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:57 +0200
|
31566
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31567
|
+
Parameters: {"name"=>"zxczxc"}
|
31568
|
+
Rendered text template (0.0ms)
|
31569
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31570
|
+
|
31571
|
+
|
31572
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:18:57 +0200
|
31573
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31574
|
+
|
31575
|
+
|
31576
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:18:57 +0200
|
31577
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31578
|
+
Parameters: {"name"=>"zxczxc"}
|
31579
|
+
Rendered text template (0.0ms)
|
31580
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
31581
|
+
|
31582
|
+
|
31583
|
+
Started GET "/index/get_controller?ec_name=zxczxc" for 127.0.0.1 at 2013-03-05 13:19:11 +0200
|
31584
|
+
Processing by IndexController#get_controller as HTML
|
31585
|
+
Parameters: {"ec_name"=>"zxczxc"}
|
31586
|
+
Rendered text template (0.0ms)
|
31587
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
31588
|
+
|
31589
|
+
|
31590
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:19:43 +0200
|
31591
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31592
|
+
Parameters: {"name"=>"zxczxc"}
|
31593
|
+
Rendered text template (0.0ms)
|
31594
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31595
|
+
|
31596
|
+
|
31597
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:19:43 +0200
|
31598
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31599
|
+
Parameters: {"name"=>"zxczxc"}
|
31600
|
+
Rendered text template (0.0ms)
|
31601
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31602
|
+
|
31603
|
+
|
31604
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:19:43 +0200
|
31605
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31606
|
+
Parameters: {"name"=>"zxczxc"}
|
31607
|
+
Rendered text template (0.0ms)
|
31608
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
31609
|
+
|
31610
|
+
|
31611
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:19:43 +0200
|
31612
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31613
|
+
|
31614
|
+
|
31615
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:19:43 +0200
|
31616
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31617
|
+
Parameters: {"name"=>"zxczxc"}
|
31618
|
+
Rendered text template (0.0ms)
|
31619
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31620
|
+
|
31621
|
+
|
31622
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:19:43 +0200
|
31623
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31624
|
+
Parameters: {"name"=>"zxczxc"}
|
31625
|
+
Rendered text template (0.0ms)
|
31626
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
31627
|
+
|
31628
|
+
|
31629
|
+
Started GET "/index/get?utf8=%E2%9C%93&ec_name=zxczxc&commit=Get+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31630
|
+
Processing by IndexController#get as HTML
|
31631
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"zxczxc", "commit"=>"Get Cookie Value"}
|
31632
|
+
Rendered inline template (4.0ms)
|
31633
|
+
Rendered index/get.html.erb within layouts/application (4.9ms)
|
31634
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
31635
|
+
|
31636
|
+
|
31637
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31638
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31639
|
+
|
31640
|
+
|
31641
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31642
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31643
|
+
|
31644
|
+
|
31645
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31646
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31647
|
+
|
31648
|
+
|
31649
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31650
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (1ms)
|
31651
|
+
|
31652
|
+
|
31653
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31654
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31655
|
+
|
31656
|
+
|
31657
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31658
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31659
|
+
|
31660
|
+
|
31661
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:20:20 +0200
|
31662
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31663
|
+
|
31664
|
+
|
31665
|
+
Started GET "/evercookie/get.js" for 127.0.0.1 at 2013-03-05 13:20:22 +0200
|
31666
|
+
Processing by Evercookie::EvercookieController#get as JS
|
31667
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/get.js.erb (0.1ms)
|
31668
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
31669
|
+
|
31670
|
+
|
31671
|
+
Started GET "/evercookie/ec_png?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31672
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
31673
|
+
Parameters: {"name"=>"zxczxc"}
|
31674
|
+
Rendered text template (0.0ms)
|
31675
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31676
|
+
|
31677
|
+
|
31678
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31679
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31680
|
+
Parameters: {"name"=>"zxczxc"}
|
31681
|
+
Rendered text template (0.0ms)
|
31682
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31683
|
+
|
31684
|
+
|
31685
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31686
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31687
|
+
Parameters: {"name"=>"zxczxc"}
|
31688
|
+
Rendered text template (0.0ms)
|
31689
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31690
|
+
|
31691
|
+
|
31692
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31693
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31694
|
+
|
31695
|
+
|
31696
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31697
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31698
|
+
Parameters: {"name"=>"zxczxc"}
|
31699
|
+
Rendered text template (0.0ms)
|
31700
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31701
|
+
|
31702
|
+
|
31703
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31704
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31705
|
+
|
31706
|
+
|
31707
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31708
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31709
|
+
Parameters: {"name"=>"zxczxc"}
|
31710
|
+
Rendered text template (0.0ms)
|
31711
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31712
|
+
|
31713
|
+
|
31714
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:57 +0200
|
31715
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31716
|
+
Parameters: {"name"=>"zxczxc"}
|
31717
|
+
Rendered text template (0.0ms)
|
31718
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31719
|
+
|
31720
|
+
|
31721
|
+
Started GET "/index/get_defined?ec_name=zxczxc" for 127.0.0.1 at 2013-03-05 13:20:58 +0200
|
31722
|
+
Processing by IndexController#get_defined as HTML
|
31723
|
+
Parameters: {"ec_name"=>"zxczxc"}
|
31724
|
+
Rendered text template (0.0ms)
|
31725
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
31726
|
+
|
31727
|
+
|
31728
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:03 +0200
|
31729
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31730
|
+
Parameters: {"name"=>"zxczxc"}
|
31731
|
+
Rendered text template (0.0ms)
|
31732
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31733
|
+
|
31734
|
+
|
31735
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:03 +0200
|
31736
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31737
|
+
Parameters: {"name"=>"zxczxc"}
|
31738
|
+
Rendered text template (0.0ms)
|
31739
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
31740
|
+
|
31741
|
+
|
31742
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:03 +0200
|
31743
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31744
|
+
Parameters: {"name"=>"zxczxc"}
|
31745
|
+
Rendered text template (0.0ms)
|
31746
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31747
|
+
|
31748
|
+
|
31749
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:03 +0200
|
31750
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31751
|
+
|
31752
|
+
|
31753
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:03 +0200
|
31754
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31755
|
+
Parameters: {"name"=>"zxczxc"}
|
31756
|
+
Rendered text template (0.0ms)
|
31757
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31758
|
+
|
31759
|
+
|
31760
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:03 +0200
|
31761
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31762
|
+
Parameters: {"name"=>"zxczxc"}
|
31763
|
+
Rendered text template (0.0ms)
|
31764
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31765
|
+
|
31766
|
+
|
31767
|
+
Started GET "/index/get_controller?ec_name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:04 +0200
|
31768
|
+
Processing by IndexController#get_controller as HTML
|
31769
|
+
Parameters: {"ec_name"=>"zxczxc"}
|
31770
|
+
Rendered text template (0.0ms)
|
31771
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31772
|
+
|
31773
|
+
|
31774
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:14 +0200
|
31775
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
31776
|
+
Parameters: {"name"=>"zxczxc"}
|
31777
|
+
Rendered text template (0.0ms)
|
31778
|
+
Completed 304 Not Modified in 1ms (Views: 0.4ms)
|
31779
|
+
|
31780
|
+
|
31781
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:14 +0200
|
31782
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
31783
|
+
Parameters: {"name"=>"zxczxc"}
|
31784
|
+
Rendered text template (0.0ms)
|
31785
|
+
Completed 304 Not Modified in 1ms (Views: 0.5ms)
|
31786
|
+
|
31787
|
+
|
31788
|
+
Started GET "/evercookie/ec_etag?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:14 +0200
|
31789
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31790
|
+
Parameters: {"name"=>"zxczxc"}
|
31791
|
+
Rendered text template (0.0ms)
|
31792
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31793
|
+
|
31794
|
+
|
31795
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:14 +0200
|
31796
|
+
Served asset /ec.swf - 304 Not Modified (2ms)
|
31797
|
+
|
31798
|
+
|
31799
|
+
Started GET "/evercookie/save?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:14 +0200
|
31800
|
+
Processing by Evercookie::EvercookieController#save as JS
|
31801
|
+
Parameters: {"name"=>"zxczxc"}
|
31802
|
+
Rendered text template (0.0ms)
|
31803
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31804
|
+
|
31805
|
+
|
31806
|
+
Started GET "/evercookie/ec_cache?name=zxczxc" for 127.0.0.1 at 2013-03-05 13:21:14 +0200
|
31807
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31808
|
+
Parameters: {"name"=>"zxczxc"}
|
31809
|
+
Rendered text template (0.0ms)
|
31810
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
31811
|
+
|
31812
|
+
|
31813
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:21:17 +0200
|
31814
|
+
Processing by IndexController#index as HTML
|
31815
|
+
Rendered index/index.html.erb within layouts/application (1.9ms)
|
31816
|
+
Completed 200 OK in 6ms (Views: 6.3ms)
|
31817
|
+
|
31818
|
+
|
31819
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:17 +0200
|
31820
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31821
|
+
|
31822
|
+
|
31823
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:17 +0200
|
31824
|
+
Served asset /index.js - 304 Not Modified (1ms)
|
31825
|
+
|
31826
|
+
|
31827
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:17 +0200
|
31828
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31829
|
+
|
31830
|
+
|
31831
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:17 +0200
|
31832
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31833
|
+
|
31834
|
+
|
31835
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=xxxxxx&ec_value=1234&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31836
|
+
Processing by IndexController#set as HTML
|
31837
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"xxxxxx", "ec_value"=>"1234", "commit"=>"Set Cookie Value"}
|
31838
|
+
Rendered inline template (18.4ms)
|
31839
|
+
Rendered index/set.html.erb within layouts/application (18.7ms)
|
31840
|
+
Completed 200 OK in 21ms (Views: 20.7ms)
|
31841
|
+
|
31842
|
+
|
31843
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31844
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
31845
|
+
|
31846
|
+
|
31847
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31848
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31849
|
+
|
31850
|
+
|
31851
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31852
|
+
Served asset /index.css - 304 Not Modified (2ms)
|
31853
|
+
|
31854
|
+
|
31855
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31856
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31857
|
+
|
31858
|
+
|
31859
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31860
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31861
|
+
|
31862
|
+
|
31863
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31864
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31865
|
+
|
31866
|
+
|
31867
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31868
|
+
Processing by Evercookie::EvercookieController#set as JS
|
31869
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.0ms)
|
31870
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
31871
|
+
|
31872
|
+
|
31873
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:25 +0200
|
31874
|
+
Served asset /ec.js - 304 Not Modified (1ms)
|
31875
|
+
|
31876
|
+
|
31877
|
+
Started GET "/evercookie/ec_png?name=xxxxxx" for 127.0.0.1 at 2013-03-05 13:21:29 +0200
|
31878
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
31879
|
+
Parameters: {"name"=>"xxxxxx"}
|
31880
|
+
Rendered text template (0.0ms)
|
31881
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
31882
|
+
|
31883
|
+
|
31884
|
+
Started GET "/evercookie/ec_etag?name=xxxxxx" for 127.0.0.1 at 2013-03-05 13:21:29 +0200
|
31885
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31886
|
+
Parameters: {"name"=>"xxxxxx"}
|
31887
|
+
Rendered text template (0.0ms)
|
31888
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31889
|
+
|
31890
|
+
|
31891
|
+
Started GET "/evercookie/ec_cache?name=xxxxxx" for 127.0.0.1 at 2013-03-05 13:21:29 +0200
|
31892
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31893
|
+
Parameters: {"name"=>"xxxxxx"}
|
31894
|
+
Rendered text template (0.0ms)
|
31895
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31896
|
+
|
31897
|
+
|
31898
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:29 +0200
|
31899
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31900
|
+
|
31901
|
+
|
31902
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:21:33 +0200
|
31903
|
+
Processing by IndexController#index as HTML
|
31904
|
+
Rendered index/index.html.erb within layouts/application (0.9ms)
|
31905
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
31906
|
+
|
31907
|
+
|
31908
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:33 +0200
|
31909
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31910
|
+
|
31911
|
+
|
31912
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:33 +0200
|
31913
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
31914
|
+
|
31915
|
+
|
31916
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:33 +0200
|
31917
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31918
|
+
|
31919
|
+
|
31920
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:33 +0200
|
31921
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31922
|
+
|
31923
|
+
|
31924
|
+
Started GET "/index/set?utf8=%E2%9C%93&ec_name=bnmbnm&ec_value=123444&commit=Set+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31925
|
+
Processing by IndexController#set as HTML
|
31926
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"bnmbnm", "ec_value"=>"123444", "commit"=>"Set Cookie Value"}
|
31927
|
+
Rendered inline template (3.5ms)
|
31928
|
+
Rendered index/set.html.erb within layouts/application (3.9ms)
|
31929
|
+
Completed 200 OK in 7ms (Views: 7.3ms)
|
31930
|
+
|
31931
|
+
|
31932
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31933
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31934
|
+
|
31935
|
+
|
31936
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31937
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
31938
|
+
|
31939
|
+
|
31940
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31941
|
+
Served asset /index.js - 304 Not Modified (2ms)
|
31942
|
+
|
31943
|
+
|
31944
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31945
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
31946
|
+
|
31947
|
+
|
31948
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31949
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
31950
|
+
|
31951
|
+
|
31952
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31953
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
31954
|
+
|
31955
|
+
|
31956
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31957
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
31958
|
+
|
31959
|
+
|
31960
|
+
Started GET "/evercookie/set.js" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31961
|
+
Processing by Evercookie::EvercookieController#set as JS
|
31962
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/set.js.erb (0.1ms)
|
31963
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
31964
|
+
|
31965
|
+
|
31966
|
+
Started GET "/evercookie/ec_png?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31967
|
+
Processing by Evercookie::EvercookieController#ec_png as HTML
|
31968
|
+
Parameters: {"name"=>"bnmbnm"}
|
31969
|
+
Rendered text template (0.0ms)
|
31970
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
31971
|
+
|
31972
|
+
|
31973
|
+
Started GET "/evercookie/ec_etag?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31974
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
31975
|
+
Parameters: {"name"=>"bnmbnm"}
|
31976
|
+
Rendered text template (0.0ms)
|
31977
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
31978
|
+
|
31979
|
+
|
31980
|
+
Started GET "/evercookie/ec_cache?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31981
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
31982
|
+
Parameters: {"name"=>"bnmbnm"}
|
31983
|
+
Rendered text template (0.0ms)
|
31984
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
31985
|
+
|
31986
|
+
|
31987
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:38 +0200
|
31988
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
31989
|
+
|
31990
|
+
|
31991
|
+
Started GET "/" for 127.0.0.1 at 2013-03-05 13:21:40 +0200
|
31992
|
+
Processing by IndexController#index as HTML
|
31993
|
+
Rendered index/index.html.erb within layouts/application (1.8ms)
|
31994
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
31995
|
+
|
31996
|
+
|
31997
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:40 +0200
|
31998
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
31999
|
+
|
32000
|
+
|
32001
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:40 +0200
|
32002
|
+
Served asset /index.css - 304 Not Modified (0ms)
|
32003
|
+
|
32004
|
+
|
32005
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:40 +0200
|
32006
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
32007
|
+
|
32008
|
+
|
32009
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:40 +0200
|
32010
|
+
Served asset /application.js - 304 Not Modified (21ms)
|
32011
|
+
|
32012
|
+
|
32013
|
+
Started GET "/index/get?utf8=%E2%9C%93&ec_name=bnmbnm&commit=Get+Cookie+Value" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32014
|
+
Processing by IndexController#get as HTML
|
32015
|
+
Parameters: {"utf8"=>"✓", "ec_name"=>"bnmbnm", "commit"=>"Get Cookie Value"}
|
32016
|
+
Rendered inline template (2.0ms)
|
32017
|
+
Rendered index/get.html.erb within layouts/application (2.5ms)
|
32018
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
32019
|
+
|
32020
|
+
|
32021
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32022
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
32023
|
+
|
32024
|
+
|
32025
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32026
|
+
Served asset /index.css - 304 Not Modified (1ms)
|
32027
|
+
|
32028
|
+
|
32029
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32030
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
32031
|
+
|
32032
|
+
|
32033
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32034
|
+
Served asset /index.js - 304 Not Modified (0ms)
|
32035
|
+
|
32036
|
+
|
32037
|
+
Started GET "/assets/evercookie/swfobject-2.2.min.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32038
|
+
Served asset /evercookie/swfobject-2.2.min.js - 304 Not Modified (0ms)
|
32039
|
+
|
32040
|
+
|
32041
|
+
Started GET "/assets/evercookie/evercookie.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32042
|
+
Served asset /evercookie/evercookie.js - 304 Not Modified (0ms)
|
32043
|
+
|
32044
|
+
|
32045
|
+
Started GET "/assets/ec.js?body=1" for 127.0.0.1 at 2013-03-05 13:21:42 +0200
|
32046
|
+
Served asset /ec.js - 304 Not Modified (0ms)
|
32047
|
+
|
32048
|
+
|
32049
|
+
Started GET "/evercookie/get.js" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32050
|
+
Processing by Evercookie::EvercookieController#get as JS
|
32051
|
+
Rendered /home/daddy/www/evercookie/evercookie_gem/app/views/evercookie/evercookie/get.js.erb (0.1ms)
|
32052
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
32053
|
+
|
32054
|
+
|
32055
|
+
Started GET "/evercookie/ec_etag?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32056
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
32057
|
+
Parameters: {"name"=>"bnmbnm"}
|
32058
|
+
Rendered text template (0.0ms)
|
32059
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
32060
|
+
|
32061
|
+
|
32062
|
+
Started GET "/evercookie/ec_cache?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32063
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
32064
|
+
Parameters: {"name"=>"bnmbnm"}
|
32065
|
+
Rendered text template (0.0ms)
|
32066
|
+
Completed 304 Not Modified in 0ms (Views: 0.2ms)
|
32067
|
+
|
32068
|
+
|
32069
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32070
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
32071
|
+
|
32072
|
+
|
32073
|
+
Started GET "/evercookie/ec_etag?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32074
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
32075
|
+
Parameters: {"name"=>"bnmbnm"}
|
32076
|
+
Rendered text template (0.0ms)
|
32077
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
32078
|
+
|
32079
|
+
|
32080
|
+
Started GET "/evercookie/ec_cache?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32081
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
32082
|
+
Parameters: {"name"=>"bnmbnm"}
|
32083
|
+
Rendered text template (0.0ms)
|
32084
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
32085
|
+
|
32086
|
+
|
32087
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32088
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
32089
|
+
|
32090
|
+
|
32091
|
+
Started GET "/evercookie/save?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:43 +0200
|
32092
|
+
Processing by Evercookie::EvercookieController#save as JS
|
32093
|
+
Parameters: {"name"=>"bnmbnm"}
|
32094
|
+
Rendered text template (0.0ms)
|
32095
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
32096
|
+
|
32097
|
+
|
32098
|
+
Started GET "/index/get_controller?ec_name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:46 +0200
|
32099
|
+
Processing by IndexController#get_controller as HTML
|
32100
|
+
Parameters: {"ec_name"=>"bnmbnm"}
|
32101
|
+
Rendered text template (0.0ms)
|
32102
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
32103
|
+
|
32104
|
+
|
32105
|
+
Started GET "/evercookie/ec_etag?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:47 +0200
|
32106
|
+
Processing by Evercookie::EvercookieController#ec_etag as JS
|
32107
|
+
Parameters: {"name"=>"bnmbnm"}
|
32108
|
+
Rendered text template (0.0ms)
|
32109
|
+
Completed 304 Not Modified in 1ms (Views: 0.4ms)
|
32110
|
+
|
32111
|
+
|
32112
|
+
Started GET "/evercookie/ec_cache?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:47 +0200
|
32113
|
+
Processing by Evercookie::EvercookieController#ec_cache as JS
|
32114
|
+
Parameters: {"name"=>"bnmbnm"}
|
32115
|
+
Rendered text template (0.0ms)
|
32116
|
+
Completed 304 Not Modified in 0ms (Views: 0.3ms)
|
32117
|
+
|
32118
|
+
|
32119
|
+
Started GET "/evercookie/ec_etag?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:47 +0200
|
32120
|
+
Processing by Evercookie::EvercookieController#ec_etag as HTML
|
32121
|
+
Parameters: {"name"=>"bnmbnm"}
|
32122
|
+
Rendered text template (0.0ms)
|
32123
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
32124
|
+
|
32125
|
+
|
32126
|
+
Started GET "/evercookie/ec_cache?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:47 +0200
|
32127
|
+
Processing by Evercookie::EvercookieController#ec_cache as HTML
|
32128
|
+
Parameters: {"name"=>"bnmbnm"}
|
32129
|
+
Rendered text template (0.0ms)
|
32130
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
32131
|
+
|
32132
|
+
|
32133
|
+
Started GET "/assets/ec.swf" for 127.0.0.1 at 2013-03-05 13:21:47 +0200
|
32134
|
+
Served asset /ec.swf - 304 Not Modified (0ms)
|
32135
|
+
|
32136
|
+
|
32137
|
+
Started GET "/evercookie/save?name=bnmbnm" for 127.0.0.1 at 2013-03-05 13:21:47 +0200
|
32138
|
+
Processing by Evercookie::EvercookieController#save as JS
|
32139
|
+
Parameters: {"name"=>"bnmbnm"}
|
32140
|
+
Rendered text template (0.0ms)
|
32141
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|