paginated_table 0.0.5 → 0.0.6
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/lib/paginated_table/version.rb +1 -1
- data/lib/paginated_table/view_helpers.rb +13 -1
- data/test/dummy/app/views/data/_data.html.erb +2 -2
- data/test/dummy/log/test.log +3847 -0
- data/test/integration/paginated_table_integration_test.rb +6 -0
- data/test/units/view_helpers_test.rb +19 -1
- metadata +3 -3
@@ -44,6 +44,18 @@ module PaginatedTable
|
|
44
44
|
def sortable?
|
45
45
|
@options.fetch(:sortable, true)
|
46
46
|
end
|
47
|
+
|
48
|
+
def html_attributes
|
49
|
+
html_attributes = {}
|
50
|
+
if @options[:class]
|
51
|
+
html_attributes[:class] = Array(@options[:class]).join(' ')
|
52
|
+
end
|
53
|
+
if @options[:style]
|
54
|
+
html_attributes[:style] = @options[:style]
|
55
|
+
end
|
56
|
+
html_attributes
|
57
|
+
end
|
58
|
+
|
47
59
|
end
|
48
60
|
end
|
49
61
|
|
@@ -129,7 +141,7 @@ module PaginatedTable
|
|
129
141
|
end
|
130
142
|
|
131
143
|
def render_table_body_cell(datum, column)
|
132
|
-
@view.content_tag('td', column.render_cell(datum))
|
144
|
+
@view.content_tag('td', column.render_cell(datum), column.html_attributes)
|
133
145
|
end
|
134
146
|
end
|
135
147
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%= paginated_table(@data) do |t|
|
2
|
-
t.column :name
|
2
|
+
t.column :name, :class => 'centered'
|
3
3
|
t.column :link, :sortable => false do |datum|
|
4
4
|
link_to(datum.id.to_s, "/data/#{datum.id}")
|
5
5
|
end
|
6
|
-
t.column :inspect, :title => 'Raw'
|
6
|
+
t.column :inspect, :title => 'Raw', :style => 'text-format: smallcaps'
|
7
7
|
end %>
|
data/test/dummy/log/test.log
CHANGED
@@ -75370,3 +75370,3850 @@ Processing by DataController#index as HTML
|
|
75370
75370
|
Rendered data/_data.html.erb (6.0ms)
|
75371
75371
|
Rendered data/index.html.erb within layouts/application (6.2ms)
|
75372
75372
|
Completed 200 OK in 8ms (Views: 7.2ms)
|
75373
|
+
|
75374
|
+
|
75375
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75376
|
+
Processing by DataController#index as HTML
|
75377
|
+
Rendered data/_data.html.erb (66.9ms)
|
75378
|
+
Rendered data/index.html.erb within layouts/application (69.9ms)
|
75379
|
+
Completed 200 OK in 78ms (Views: 76.7ms)
|
75380
|
+
|
75381
|
+
|
75382
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75383
|
+
Served asset /application.css - 200 OK (3ms)
|
75384
|
+
|
75385
|
+
|
75386
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75387
|
+
Served asset /application.js - 200 OK (6ms)
|
75388
|
+
|
75389
|
+
|
75390
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75391
|
+
Processing by DataController#index as JS
|
75392
|
+
Parameters: {"sort_column"=>"id", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"2"}
|
75393
|
+
Rendered data/_data.html.erb (6.7ms)
|
75394
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
75395
|
+
|
75396
|
+
|
75397
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75398
|
+
Processing by DataController#index as HTML
|
75399
|
+
Rendered data/_data.html.erb (7.5ms)
|
75400
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
75401
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
75402
|
+
|
75403
|
+
|
75404
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75405
|
+
Processing by DataController#index as HTML
|
75406
|
+
Rendered data/_data.html.erb (43.4ms)
|
75407
|
+
Rendered data/index.html.erb within layouts/application (43.7ms)
|
75408
|
+
Completed 200 OK in 45ms (Views: 44.8ms)
|
75409
|
+
|
75410
|
+
|
75411
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75412
|
+
Processing by DataController#index as JS
|
75413
|
+
Parameters: {"sort_column"=>"id", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"4"}
|
75414
|
+
Rendered data/_data.html.erb (7.1ms)
|
75415
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
75416
|
+
|
75417
|
+
|
75418
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75419
|
+
Processing by DataController#index as JS
|
75420
|
+
Parameters: {"sort_column"=>"id", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"3"}
|
75421
|
+
Rendered data/_data.html.erb (6.5ms)
|
75422
|
+
Completed 200 OK in 8ms (Views: 7.0ms)
|
75423
|
+
|
75424
|
+
|
75425
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75426
|
+
Processing by DataController#index as HTML
|
75427
|
+
Rendered data/_data.html.erb (6.0ms)
|
75428
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
75429
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
75430
|
+
|
75431
|
+
|
75432
|
+
Started GET "/data?sort_column=id&per_page=10&page=2&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75433
|
+
Processing by DataController#index as HTML
|
75434
|
+
Parameters: {"sort_column"=>"id", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"2"}
|
75435
|
+
Rendered data/_data.html.erb (6.2ms)
|
75436
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
75437
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
75438
|
+
|
75439
|
+
|
75440
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75441
|
+
Processing by DataController#index as HTML
|
75442
|
+
Rendered data/_data.html.erb (6.1ms)
|
75443
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
75444
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
75445
|
+
|
75446
|
+
|
75447
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75448
|
+
Processing by DataController#index as HTML
|
75449
|
+
Rendered data/_data.html.erb (6.0ms)
|
75450
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75451
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
75452
|
+
|
75453
|
+
|
75454
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75455
|
+
Processing by DataController#index as HTML
|
75456
|
+
Rendered data/_data.html.erb (48.5ms)
|
75457
|
+
Rendered data/index.html.erb within layouts/application (48.8ms)
|
75458
|
+
Completed 200 OK in 51ms (Views: 50.3ms)
|
75459
|
+
|
75460
|
+
|
75461
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:11 -0400 2012
|
75462
|
+
Processing by DataController#index as HTML
|
75463
|
+
Rendered data/_data.html.erb (6.0ms)
|
75464
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75465
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
75466
|
+
|
75467
|
+
|
75468
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:12 -0400 2012
|
75469
|
+
Processing by DataController#index as HTML
|
75470
|
+
Rendered data/_data.html.erb (6.1ms)
|
75471
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
75472
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
75473
|
+
|
75474
|
+
|
75475
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:12 -0400 2012
|
75476
|
+
Processing by DataController#index as HTML
|
75477
|
+
Rendered data/_data.html.erb (6.1ms)
|
75478
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75479
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
75480
|
+
|
75481
|
+
|
75482
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:12 -0400 2012
|
75483
|
+
Processing by DataController#index as HTML
|
75484
|
+
Rendered data/_data.html.erb (8.3ms)
|
75485
|
+
Rendered data/index.html.erb within layouts/application (8.6ms)
|
75486
|
+
Completed 200 OK in 11ms (Views: 9.7ms)
|
75487
|
+
|
75488
|
+
|
75489
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:12 -0400 2012
|
75490
|
+
Processing by DataController#index as HTML
|
75491
|
+
Rendered data/_data.html.erb (49.6ms)
|
75492
|
+
Rendered data/index.html.erb within layouts/application (49.9ms)
|
75493
|
+
Completed 200 OK in 51ms (Views: 51.0ms)
|
75494
|
+
|
75495
|
+
|
75496
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:12 -0400 2012
|
75497
|
+
Processing by DataController#index as HTML
|
75498
|
+
Rendered data/_data.html.erb (6.2ms)
|
75499
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
75500
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
75501
|
+
|
75502
|
+
|
75503
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:12 -0400 2012
|
75504
|
+
Processing by DataController#index as JS
|
75505
|
+
Parameters: {"sort_column"=>"id", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"2"}
|
75506
|
+
Rendered data/_data.html.erb (6.9ms)
|
75507
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
75508
|
+
|
75509
|
+
|
75510
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75511
|
+
Processing by DataController#index as HTML
|
75512
|
+
Parameters: {"search"=>"secondhalf"}
|
75513
|
+
Rendered data/_data.html.erb (5.2ms)
|
75514
|
+
Rendered data/index.html.erb within layouts/application (5.4ms)
|
75515
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
75516
|
+
|
75517
|
+
|
75518
|
+
Started GET "/data?sort_column=name&per_page=10&search=secondhalf&page=1&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75519
|
+
Processing by DataController#index as HTML
|
75520
|
+
Parameters: {"sort_column"=>"name", "search"=>"secondhalf", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75521
|
+
Rendered data/_data.html.erb (5.5ms)
|
75522
|
+
Rendered data/index.html.erb within layouts/application (5.8ms)
|
75523
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
75524
|
+
|
75525
|
+
|
75526
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75527
|
+
Processing by DataController#index as HTML
|
75528
|
+
Parameters: {"search"=>"secondhalf"}
|
75529
|
+
Rendered data/_data.html.erb (48.0ms)
|
75530
|
+
Rendered data/index.html.erb within layouts/application (48.3ms)
|
75531
|
+
Completed 200 OK in 50ms (Views: 49.4ms)
|
75532
|
+
|
75533
|
+
|
75534
|
+
Started GET "/data?sort_column=id&per_page=10&search=secondhalf&page=2&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75535
|
+
Processing by DataController#index as HTML
|
75536
|
+
Parameters: {"sort_column"=>"id", "search"=>"secondhalf", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"2"}
|
75537
|
+
Rendered data/_data.html.erb (5.0ms)
|
75538
|
+
Rendered data/index.html.erb within layouts/application (5.2ms)
|
75539
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
75540
|
+
|
75541
|
+
|
75542
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75543
|
+
Processing by DataController#index as HTML
|
75544
|
+
Parameters: {"search"=>"secondhalf"}
|
75545
|
+
Rendered data/_data.html.erb (5.0ms)
|
75546
|
+
Rendered data/index.html.erb within layouts/application (5.2ms)
|
75547
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
75548
|
+
|
75549
|
+
|
75550
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75551
|
+
Processing by DataController#index as HTML
|
75552
|
+
Rendered data/_data.html.erb (7.3ms)
|
75553
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
75554
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
75555
|
+
|
75556
|
+
|
75557
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75558
|
+
Processing by DataController#index as HTML
|
75559
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75560
|
+
Rendered data/_data.html.erb (5.9ms)
|
75561
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
75562
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
75563
|
+
|
75564
|
+
|
75565
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75566
|
+
Processing by DataController#index as HTML
|
75567
|
+
Rendered data/_data.html.erb (6.0ms)
|
75568
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75569
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
75570
|
+
|
75571
|
+
|
75572
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75573
|
+
Processing by DataController#index as HTML
|
75574
|
+
Rendered data/_data.html.erb (5.8ms)
|
75575
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
75576
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
75577
|
+
|
75578
|
+
|
75579
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75580
|
+
Processing by DataController#index as HTML
|
75581
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75582
|
+
Rendered data/_data.html.erb (6.7ms)
|
75583
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
75584
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
75585
|
+
|
75586
|
+
|
75587
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=desc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75588
|
+
Processing by DataController#index as HTML
|
75589
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"desc", "page"=>"1"}
|
75590
|
+
Rendered data/_data.html.erb (6.2ms)
|
75591
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
75592
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
75593
|
+
|
75594
|
+
|
75595
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75596
|
+
Processing by DataController#index as HTML
|
75597
|
+
Rendered data/_data.html.erb (47.4ms)
|
75598
|
+
Rendered data/index.html.erb within layouts/application (47.7ms)
|
75599
|
+
Completed 200 OK in 49ms (Views: 48.8ms)
|
75600
|
+
|
75601
|
+
|
75602
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75603
|
+
Processing by DataController#index as JS
|
75604
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75605
|
+
Rendered data/_data.html.erb (6.3ms)
|
75606
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
75607
|
+
|
75608
|
+
|
75609
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75610
|
+
Processing by DataController#index as JS
|
75611
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"2"}
|
75612
|
+
Rendered data/_data.html.erb (6.6ms)
|
75613
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
75614
|
+
|
75615
|
+
|
75616
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75617
|
+
Processing by DataController#index as HTML
|
75618
|
+
Rendered data/_data.html.erb (6.3ms)
|
75619
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
75620
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
75621
|
+
|
75622
|
+
|
75623
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75624
|
+
Processing by DataController#index as JS
|
75625
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75626
|
+
Rendered data/_data.html.erb (6.9ms)
|
75627
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
75628
|
+
|
75629
|
+
|
75630
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75631
|
+
Processing by DataController#index as JS
|
75632
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"desc", "page"=>"1"}
|
75633
|
+
Rendered data/_data.html.erb (6.6ms)
|
75634
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
75635
|
+
|
75636
|
+
|
75637
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75638
|
+
Processing by DataController#index as HTML
|
75639
|
+
Rendered data/_data.html.erb (48.8ms)
|
75640
|
+
Rendered data/index.html.erb within layouts/application (49.1ms)
|
75641
|
+
Completed 200 OK in 51ms (Views: 50.2ms)
|
75642
|
+
|
75643
|
+
|
75644
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75645
|
+
Processing by DataController#index as JS
|
75646
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75647
|
+
Rendered data/_data.html.erb (6.3ms)
|
75648
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
75649
|
+
|
75650
|
+
|
75651
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75652
|
+
Processing by DataController#index as HTML
|
75653
|
+
Rendered data/_data.html.erb (5.8ms)
|
75654
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
75655
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
75656
|
+
|
75657
|
+
|
75658
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75659
|
+
Processing by DataController#index as HTML
|
75660
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75661
|
+
Rendered data/_data.html.erb (6.1ms)
|
75662
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75663
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
75664
|
+
|
75665
|
+
|
75666
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75667
|
+
Processing by DataController#index as HTML
|
75668
|
+
Rendered data/_data.html.erb (6.3ms)
|
75669
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
75670
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
75671
|
+
|
75672
|
+
|
75673
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:14 -0400 2012
|
75674
|
+
Processing by DataController#index as HTML
|
75675
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75676
|
+
Rendered data/_data.html.erb (48.7ms)
|
75677
|
+
Rendered data/index.html.erb within layouts/application (49.0ms)
|
75678
|
+
Completed 200 OK in 51ms (Views: 50.1ms)
|
75679
|
+
|
75680
|
+
|
75681
|
+
Started GET "/data?sort_column=name&per_page=10&page=2&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:15 -0400 2012
|
75682
|
+
Processing by DataController#index as HTML
|
75683
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"2"}
|
75684
|
+
Rendered data/_data.html.erb (6.5ms)
|
75685
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
75686
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
75687
|
+
|
75688
|
+
|
75689
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:15 -0400 2012
|
75690
|
+
Processing by DataController#index as HTML
|
75691
|
+
Rendered data/_data.html.erb (5.7ms)
|
75692
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
75693
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
75694
|
+
|
75695
|
+
|
75696
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 10:52:15 -0400 2012
|
75697
|
+
Processing by DataController#index as HTML
|
75698
|
+
Rendered data/_data.html.erb (6.7ms)
|
75699
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
75700
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
75701
|
+
|
75702
|
+
|
75703
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=asc" for 127.0.0.1 at Fri May 04 10:52:15 -0400 2012
|
75704
|
+
Processing by DataController#index as HTML
|
75705
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"asc", "page"=>"1"}
|
75706
|
+
Rendered data/_data.html.erb (6.2ms)
|
75707
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
75708
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
75709
|
+
|
75710
|
+
|
75711
|
+
Started GET "/data?sort_column=name&per_page=10&page=1&sort_direction=desc" for 127.0.0.1 at Fri May 04 10:52:15 -0400 2012
|
75712
|
+
Processing by DataController#index as HTML
|
75713
|
+
Parameters: {"sort_column"=>"name", "per_page"=>"10", "sort_direction"=>"desc", "page"=>"1"}
|
75714
|
+
Rendered data/_data.html.erb (6.1ms)
|
75715
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75716
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
75717
|
+
|
75718
|
+
|
75719
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75720
|
+
Processing by DataController#index as HTML
|
75721
|
+
Rendered data/_data.html.erb (62.9ms)
|
75722
|
+
Rendered data/index.html.erb within layouts/application (66.3ms)
|
75723
|
+
Completed 200 OK in 74ms (Views: 72.2ms)
|
75724
|
+
|
75725
|
+
|
75726
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75727
|
+
Served asset /application.css - 200 OK (2ms)
|
75728
|
+
|
75729
|
+
|
75730
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75731
|
+
Served asset /application.js - 200 OK (7ms)
|
75732
|
+
|
75733
|
+
|
75734
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75735
|
+
Processing by DataController#index as HTML
|
75736
|
+
Rendered data/_data.html.erb (6.8ms)
|
75737
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
75738
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
75739
|
+
|
75740
|
+
|
75741
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75742
|
+
Processing by DataController#index as JS
|
75743
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"id", "page"=>"2"}
|
75744
|
+
Rendered data/_data.html.erb (7.1ms)
|
75745
|
+
Completed 200 OK in 10ms (Views: 9.8ms)
|
75746
|
+
|
75747
|
+
|
75748
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75749
|
+
Processing by DataController#index as HTML
|
75750
|
+
Rendered data/_data.html.erb (42.5ms)
|
75751
|
+
Rendered data/index.html.erb within layouts/application (42.8ms)
|
75752
|
+
Completed 200 OK in 44ms (Views: 44.0ms)
|
75753
|
+
|
75754
|
+
|
75755
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75756
|
+
Processing by DataController#index as JS
|
75757
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"id", "page"=>"4"}
|
75758
|
+
Rendered data/_data.html.erb (6.7ms)
|
75759
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
75760
|
+
|
75761
|
+
|
75762
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75763
|
+
Processing by DataController#index as JS
|
75764
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"id", "page"=>"3"}
|
75765
|
+
Rendered data/_data.html.erb (7.5ms)
|
75766
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
75767
|
+
|
75768
|
+
|
75769
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75770
|
+
Processing by DataController#index as HTML
|
75771
|
+
Rendered data/_data.html.erb (6.1ms)
|
75772
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
75773
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
75774
|
+
|
75775
|
+
|
75776
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75777
|
+
Processing by DataController#index as HTML
|
75778
|
+
Rendered data/_data.html.erb (6.9ms)
|
75779
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
75780
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
75781
|
+
|
75782
|
+
|
75783
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=id&page=2" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75784
|
+
Processing by DataController#index as HTML
|
75785
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"id", "page"=>"2"}
|
75786
|
+
Rendered data/_data.html.erb (7.5ms)
|
75787
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
75788
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
75789
|
+
|
75790
|
+
|
75791
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75792
|
+
Processing by DataController#index as HTML
|
75793
|
+
Rendered data/_data.html.erb (6.0ms)
|
75794
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75795
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
75796
|
+
|
75797
|
+
|
75798
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:17 -0400 2012
|
75799
|
+
Processing by DataController#index as HTML
|
75800
|
+
Rendered data/_data.html.erb (51.3ms)
|
75801
|
+
Rendered data/index.html.erb within layouts/application (51.6ms)
|
75802
|
+
Completed 200 OK in 53ms (Views: 52.8ms)
|
75803
|
+
|
75804
|
+
|
75805
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75806
|
+
Processing by DataController#index as HTML
|
75807
|
+
Rendered data/_data.html.erb (6.3ms)
|
75808
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
75809
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
75810
|
+
|
75811
|
+
|
75812
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75813
|
+
Processing by DataController#index as HTML
|
75814
|
+
Rendered data/_data.html.erb (6.1ms)
|
75815
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
75816
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
75817
|
+
|
75818
|
+
|
75819
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75820
|
+
Processing by DataController#index as HTML
|
75821
|
+
Rendered data/_data.html.erb (6.7ms)
|
75822
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
75823
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
75824
|
+
|
75825
|
+
|
75826
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75827
|
+
Processing by DataController#index as HTML
|
75828
|
+
Rendered data/_data.html.erb (7.0ms)
|
75829
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
75830
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
75831
|
+
|
75832
|
+
|
75833
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75834
|
+
Processing by DataController#index as HTML
|
75835
|
+
Rendered data/_data.html.erb (47.6ms)
|
75836
|
+
Rendered data/index.html.erb within layouts/application (48.3ms)
|
75837
|
+
Completed 200 OK in 50ms (Views: 49.4ms)
|
75838
|
+
|
75839
|
+
|
75840
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75841
|
+
Processing by DataController#index as HTML
|
75842
|
+
Rendered data/_data.html.erb (6.4ms)
|
75843
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
75844
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
75845
|
+
|
75846
|
+
|
75847
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:18 -0400 2012
|
75848
|
+
Processing by DataController#index as JS
|
75849
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"id", "page"=>"2"}
|
75850
|
+
Rendered data/_data.html.erb (6.8ms)
|
75851
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
75852
|
+
|
75853
|
+
|
75854
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75855
|
+
Processing by DataController#index as HTML
|
75856
|
+
Parameters: {"search"=>"secondhalf"}
|
75857
|
+
Rendered data/_data.html.erb (5.1ms)
|
75858
|
+
Rendered data/index.html.erb within layouts/application (5.4ms)
|
75859
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
75860
|
+
|
75861
|
+
|
75862
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75863
|
+
Processing by DataController#index as HTML
|
75864
|
+
Parameters: {"search"=>"secondhalf"}
|
75865
|
+
Rendered data/_data.html.erb (5.8ms)
|
75866
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
75867
|
+
Completed 200 OK in 7ms (Views: 7.1ms)
|
75868
|
+
|
75869
|
+
|
75870
|
+
Started GET "/data?search=secondhalf&sort_direction=asc&per_page=10&sort_column=id&page=2" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75871
|
+
Processing by DataController#index as HTML
|
75872
|
+
Parameters: {"search"=>"secondhalf", "sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"id", "page"=>"2"}
|
75873
|
+
Rendered data/_data.html.erb (48.4ms)
|
75874
|
+
Rendered data/index.html.erb within layouts/application (48.7ms)
|
75875
|
+
Completed 200 OK in 50ms (Views: 49.8ms)
|
75876
|
+
|
75877
|
+
|
75878
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75879
|
+
Processing by DataController#index as HTML
|
75880
|
+
Parameters: {"search"=>"secondhalf"}
|
75881
|
+
Rendered data/_data.html.erb (4.9ms)
|
75882
|
+
Rendered data/index.html.erb within layouts/application (5.1ms)
|
75883
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
75884
|
+
|
75885
|
+
|
75886
|
+
Started GET "/data?search=secondhalf&sort_direction=asc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75887
|
+
Processing by DataController#index as HTML
|
75888
|
+
Parameters: {"search"=>"secondhalf", "sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75889
|
+
Rendered data/_data.html.erb (4.6ms)
|
75890
|
+
Rendered data/index.html.erb within layouts/application (4.9ms)
|
75891
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
75892
|
+
|
75893
|
+
|
75894
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75895
|
+
Processing by DataController#index as HTML
|
75896
|
+
Rendered data/_data.html.erb (6.2ms)
|
75897
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
75898
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
75899
|
+
|
75900
|
+
|
75901
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75902
|
+
Processing by DataController#index as HTML
|
75903
|
+
Rendered data/_data.html.erb (6.9ms)
|
75904
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
75905
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
75906
|
+
|
75907
|
+
|
75908
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75909
|
+
Processing by DataController#index as HTML
|
75910
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75911
|
+
Rendered data/_data.html.erb (6.1ms)
|
75912
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
75913
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
75914
|
+
|
75915
|
+
|
75916
|
+
Started GET "/data?sort_direction=desc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75917
|
+
Processing by DataController#index as HTML
|
75918
|
+
Parameters: {"sort_direction"=>"desc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75919
|
+
Rendered data/_data.html.erb (5.9ms)
|
75920
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
75921
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
75922
|
+
|
75923
|
+
|
75924
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75925
|
+
Processing by DataController#index as HTML
|
75926
|
+
Rendered data/_data.html.erb (6.4ms)
|
75927
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
75928
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
75929
|
+
|
75930
|
+
|
75931
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75932
|
+
Processing by DataController#index as HTML
|
75933
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75934
|
+
Rendered data/_data.html.erb (6.8ms)
|
75935
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
75936
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
75937
|
+
|
75938
|
+
|
75939
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75940
|
+
Processing by DataController#index as HTML
|
75941
|
+
Rendered data/_data.html.erb (47.9ms)
|
75942
|
+
Rendered data/index.html.erb within layouts/application (48.2ms)
|
75943
|
+
Completed 200 OK in 50ms (Views: 49.3ms)
|
75944
|
+
|
75945
|
+
|
75946
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75947
|
+
Processing by DataController#index as JS
|
75948
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75949
|
+
Rendered data/_data.html.erb (6.6ms)
|
75950
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
75951
|
+
|
75952
|
+
|
75953
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75954
|
+
Processing by DataController#index as HTML
|
75955
|
+
Rendered data/_data.html.erb (6.5ms)
|
75956
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
75957
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
75958
|
+
|
75959
|
+
|
75960
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75961
|
+
Processing by DataController#index as JS
|
75962
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75963
|
+
Rendered data/_data.html.erb (6.7ms)
|
75964
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
75965
|
+
|
75966
|
+
|
75967
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75968
|
+
Processing by DataController#index as JS
|
75969
|
+
Parameters: {"sort_direction"=>"desc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75970
|
+
Rendered data/_data.html.erb (7.8ms)
|
75971
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
75972
|
+
|
75973
|
+
|
75974
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75975
|
+
Processing by DataController#index as HTML
|
75976
|
+
Rendered data/_data.html.erb (6.8ms)
|
75977
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
75978
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
75979
|
+
|
75980
|
+
|
75981
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75982
|
+
Processing by DataController#index as JS
|
75983
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
75984
|
+
Rendered data/_data.html.erb (50.7ms)
|
75985
|
+
Completed 200 OK in 52ms (Views: 51.4ms)
|
75986
|
+
|
75987
|
+
|
75988
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75989
|
+
Processing by DataController#index as JS
|
75990
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"2"}
|
75991
|
+
Rendered data/_data.html.erb (7.2ms)
|
75992
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
75993
|
+
|
75994
|
+
|
75995
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
75996
|
+
Processing by DataController#index as HTML
|
75997
|
+
Rendered data/_data.html.erb (6.1ms)
|
75998
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
75999
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
76000
|
+
|
76001
|
+
|
76002
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
76003
|
+
Processing by DataController#index as HTML
|
76004
|
+
Rendered data/_data.html.erb (6.1ms)
|
76005
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
76006
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76007
|
+
|
76008
|
+
|
76009
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
76010
|
+
Processing by DataController#index as HTML
|
76011
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
76012
|
+
Rendered data/_data.html.erb (6.9ms)
|
76013
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
76014
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76015
|
+
|
76016
|
+
|
76017
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=name&page=2" for 127.0.0.1 at Fri May 04 11:06:20 -0400 2012
|
76018
|
+
Processing by DataController#index as HTML
|
76019
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"2"}
|
76020
|
+
Rendered data/_data.html.erb (49.6ms)
|
76021
|
+
Rendered data/index.html.erb within layouts/application (49.9ms)
|
76022
|
+
Completed 200 OK in 51ms (Views: 51.0ms)
|
76023
|
+
|
76024
|
+
|
76025
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:21 -0400 2012
|
76026
|
+
Processing by DataController#index as HTML
|
76027
|
+
Rendered data/_data.html.erb (6.4ms)
|
76028
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76029
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76030
|
+
|
76031
|
+
|
76032
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:21 -0400 2012
|
76033
|
+
Processing by DataController#index as HTML
|
76034
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
76035
|
+
Rendered data/_data.html.erb (6.3ms)
|
76036
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
76037
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76038
|
+
|
76039
|
+
|
76040
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:06:21 -0400 2012
|
76041
|
+
Processing by DataController#index as HTML
|
76042
|
+
Rendered data/_data.html.erb (7.6ms)
|
76043
|
+
Rendered data/index.html.erb within layouts/application (7.9ms)
|
76044
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
76045
|
+
|
76046
|
+
|
76047
|
+
Started GET "/data?sort_direction=asc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:21 -0400 2012
|
76048
|
+
Processing by DataController#index as HTML
|
76049
|
+
Parameters: {"sort_direction"=>"asc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
76050
|
+
Rendered data/_data.html.erb (6.4ms)
|
76051
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76052
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76053
|
+
|
76054
|
+
|
76055
|
+
Started GET "/data?sort_direction=desc&per_page=10&sort_column=name&page=1" for 127.0.0.1 at Fri May 04 11:06:21 -0400 2012
|
76056
|
+
Processing by DataController#index as HTML
|
76057
|
+
Parameters: {"sort_direction"=>"desc", "per_page"=>"10", "sort_column"=>"name", "page"=>"1"}
|
76058
|
+
Rendered data/_data.html.erb (6.2ms)
|
76059
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
76060
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76061
|
+
|
76062
|
+
|
76063
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:14 -0400 2012
|
76064
|
+
Processing by DataController#index as HTML
|
76065
|
+
Rendered data/_data.html.erb (64.3ms)
|
76066
|
+
Rendered data/index.html.erb within layouts/application (67.2ms)
|
76067
|
+
Completed 200 OK in 74ms (Views: 73.4ms)
|
76068
|
+
|
76069
|
+
|
76070
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:08:14 -0400 2012
|
76071
|
+
Served asset /application.css - 200 OK (3ms)
|
76072
|
+
|
76073
|
+
|
76074
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:08:14 -0400 2012
|
76075
|
+
Served asset /application.js - 200 OK (7ms)
|
76076
|
+
|
76077
|
+
|
76078
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76079
|
+
Processing by DataController#index as HTML
|
76080
|
+
Rendered data/_data.html.erb (7.5ms)
|
76081
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
76082
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
76083
|
+
|
76084
|
+
|
76085
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76086
|
+
Processing by DataController#index as JS
|
76087
|
+
Parameters: {"sort_column"=>"id", "sort_direction"=>"asc", "page"=>"2", "per_page"=>"10"}
|
76088
|
+
Rendered data/_data.html.erb (6.8ms)
|
76089
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
76090
|
+
|
76091
|
+
|
76092
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76093
|
+
Processing by DataController#index as HTML
|
76094
|
+
Rendered data/_data.html.erb (42.9ms)
|
76095
|
+
Rendered data/index.html.erb within layouts/application (43.2ms)
|
76096
|
+
Completed 200 OK in 45ms (Views: 44.3ms)
|
76097
|
+
|
76098
|
+
|
76099
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76100
|
+
Processing by DataController#index as JS
|
76101
|
+
Parameters: {"sort_column"=>"id", "sort_direction"=>"asc", "page"=>"4", "per_page"=>"10"}
|
76102
|
+
Rendered data/_data.html.erb (6.7ms)
|
76103
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
76104
|
+
|
76105
|
+
|
76106
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76107
|
+
Processing by DataController#index as JS
|
76108
|
+
Parameters: {"sort_column"=>"id", "sort_direction"=>"asc", "page"=>"3", "per_page"=>"10"}
|
76109
|
+
Rendered data/_data.html.erb (7.1ms)
|
76110
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
76111
|
+
|
76112
|
+
|
76113
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76114
|
+
Processing by DataController#index as HTML
|
76115
|
+
Rendered data/_data.html.erb (6.1ms)
|
76116
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
76117
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
76118
|
+
|
76119
|
+
|
76120
|
+
Started GET "/data?sort_column=id&page=2&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76121
|
+
Processing by DataController#index as HTML
|
76122
|
+
Parameters: {"sort_column"=>"id", "sort_direction"=>"asc", "page"=>"2", "per_page"=>"10"}
|
76123
|
+
Rendered data/_data.html.erb (7.0ms)
|
76124
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
76125
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76126
|
+
|
76127
|
+
|
76128
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76129
|
+
Processing by DataController#index as HTML
|
76130
|
+
Rendered data/_data.html.erb (7.0ms)
|
76131
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
76132
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76133
|
+
|
76134
|
+
|
76135
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76136
|
+
Processing by DataController#index as HTML
|
76137
|
+
Rendered data/_data.html.erb (6.4ms)
|
76138
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76139
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
76140
|
+
|
76141
|
+
|
76142
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76143
|
+
Processing by DataController#index as HTML
|
76144
|
+
Rendered data/_data.html.erb (47.4ms)
|
76145
|
+
Rendered data/index.html.erb within layouts/application (47.7ms)
|
76146
|
+
Completed 200 OK in 49ms (Views: 48.8ms)
|
76147
|
+
|
76148
|
+
|
76149
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76150
|
+
Processing by DataController#index as HTML
|
76151
|
+
Rendered data/_data.html.erb (6.1ms)
|
76152
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
76153
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
76154
|
+
|
76155
|
+
|
76156
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76157
|
+
Processing by DataController#index as HTML
|
76158
|
+
Rendered data/_data.html.erb (6.3ms)
|
76159
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
76160
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76161
|
+
|
76162
|
+
|
76163
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76164
|
+
Processing by DataController#index as HTML
|
76165
|
+
Rendered data/_data.html.erb (6.9ms)
|
76166
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
76167
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76168
|
+
|
76169
|
+
|
76170
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76171
|
+
Processing by DataController#index as HTML
|
76172
|
+
Rendered data/_data.html.erb (6.4ms)
|
76173
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76174
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76175
|
+
|
76176
|
+
|
76177
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76178
|
+
Processing by DataController#index as HTML
|
76179
|
+
Rendered data/_data.html.erb (50.2ms)
|
76180
|
+
Rendered data/index.html.erb within layouts/application (50.5ms)
|
76181
|
+
Completed 200 OK in 52ms (Views: 51.6ms)
|
76182
|
+
|
76183
|
+
|
76184
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76185
|
+
Processing by DataController#index as HTML
|
76186
|
+
Rendered data/_data.html.erb (9.8ms)
|
76187
|
+
Rendered data/index.html.erb within layouts/application (10.3ms)
|
76188
|
+
Completed 200 OK in 13ms (Views: 12.2ms)
|
76189
|
+
|
76190
|
+
|
76191
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76192
|
+
Processing by DataController#index as HTML
|
76193
|
+
Rendered data/_data.html.erb (8.2ms)
|
76194
|
+
Rendered data/index.html.erb within layouts/application (8.6ms)
|
76195
|
+
Completed 200 OK in 11ms (Views: 9.9ms)
|
76196
|
+
|
76197
|
+
|
76198
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:15 -0400 2012
|
76199
|
+
Processing by DataController#index as JS
|
76200
|
+
Parameters: {"sort_column"=>"id", "sort_direction"=>"asc", "page"=>"2", "per_page"=>"10"}
|
76201
|
+
Rendered data/_data.html.erb (9.3ms)
|
76202
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
76203
|
+
|
76204
|
+
|
76205
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:08:17 -0400 2012
|
76206
|
+
Processing by DataController#index as HTML
|
76207
|
+
Parameters: {"search"=>"secondhalf"}
|
76208
|
+
Rendered data/_data.html.erb (6.9ms)
|
76209
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
76210
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
76211
|
+
|
76212
|
+
|
76213
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:08:17 -0400 2012
|
76214
|
+
Processing by DataController#index as HTML
|
76215
|
+
Parameters: {"search"=>"secondhalf"}
|
76216
|
+
Rendered data/_data.html.erb (61.9ms)
|
76217
|
+
Rendered data/index.html.erb within layouts/application (62.2ms)
|
76218
|
+
Completed 200 OK in 64ms (Views: 63.4ms)
|
76219
|
+
|
76220
|
+
|
76221
|
+
Started GET "/data?sort_column=id&page=2&sort_direction=asc&search=secondhalf&per_page=10" for 127.0.0.1 at Fri May 04 11:08:17 -0400 2012
|
76222
|
+
Processing by DataController#index as HTML
|
76223
|
+
Parameters: {"sort_column"=>"id", "sort_direction"=>"asc", "page"=>"2", "search"=>"secondhalf", "per_page"=>"10"}
|
76224
|
+
Rendered data/_data.html.erb (5.1ms)
|
76225
|
+
Rendered data/index.html.erb within layouts/application (5.4ms)
|
76226
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
76227
|
+
|
76228
|
+
|
76229
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:08:17 -0400 2012
|
76230
|
+
Processing by DataController#index as HTML
|
76231
|
+
Parameters: {"search"=>"secondhalf"}
|
76232
|
+
Rendered data/_data.html.erb (4.9ms)
|
76233
|
+
Rendered data/index.html.erb within layouts/application (5.2ms)
|
76234
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
76235
|
+
|
76236
|
+
|
76237
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&search=secondhalf&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76238
|
+
Processing by DataController#index as HTML
|
76239
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "search"=>"secondhalf", "per_page"=>"10"}
|
76240
|
+
Rendered data/_data.html.erb (5.5ms)
|
76241
|
+
Rendered data/index.html.erb within layouts/application (5.8ms)
|
76242
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
76243
|
+
|
76244
|
+
|
76245
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76246
|
+
Processing by DataController#index as HTML
|
76247
|
+
Rendered data/_data.html.erb (6.4ms)
|
76248
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76249
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76250
|
+
|
76251
|
+
|
76252
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76253
|
+
Processing by DataController#index as HTML
|
76254
|
+
Rendered data/_data.html.erb (6.1ms)
|
76255
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
76256
|
+
Completed 200 OK in 49ms (Views: 7.5ms)
|
76257
|
+
|
76258
|
+
|
76259
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76260
|
+
Processing by DataController#index as HTML
|
76261
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76262
|
+
Rendered data/_data.html.erb (5.8ms)
|
76263
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
76264
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
76265
|
+
|
76266
|
+
|
76267
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=desc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76268
|
+
Processing by DataController#index as HTML
|
76269
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"desc", "page"=>"1", "per_page"=>"10"}
|
76270
|
+
Rendered data/_data.html.erb (6.6ms)
|
76271
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
76272
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76273
|
+
|
76274
|
+
|
76275
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76276
|
+
Processing by DataController#index as HTML
|
76277
|
+
Rendered data/_data.html.erb (7.1ms)
|
76278
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
76279
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
76280
|
+
|
76281
|
+
|
76282
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76283
|
+
Processing by DataController#index as HTML
|
76284
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76285
|
+
Rendered data/_data.html.erb (6.3ms)
|
76286
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76287
|
+
Completed 200 OK in 50ms (Views: 49.7ms)
|
76288
|
+
|
76289
|
+
|
76290
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76291
|
+
Processing by DataController#index as HTML
|
76292
|
+
Rendered data/_data.html.erb (6.6ms)
|
76293
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
76294
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
76295
|
+
|
76296
|
+
|
76297
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76298
|
+
Processing by DataController#index as JS
|
76299
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76300
|
+
Rendered data/_data.html.erb (6.3ms)
|
76301
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
76302
|
+
|
76303
|
+
|
76304
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76305
|
+
Processing by DataController#index as HTML
|
76306
|
+
Rendered data/_data.html.erb (6.7ms)
|
76307
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
76308
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
76309
|
+
|
76310
|
+
|
76311
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76312
|
+
Processing by DataController#index as JS
|
76313
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76314
|
+
Rendered data/_data.html.erb (6.1ms)
|
76315
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
76316
|
+
|
76317
|
+
|
76318
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76319
|
+
Processing by DataController#index as JS
|
76320
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"desc", "page"=>"1", "per_page"=>"10"}
|
76321
|
+
Rendered data/_data.html.erb (6.8ms)
|
76322
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
76323
|
+
|
76324
|
+
|
76325
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76326
|
+
Processing by DataController#index as HTML
|
76327
|
+
Rendered data/_data.html.erb (49.4ms)
|
76328
|
+
Rendered data/index.html.erb within layouts/application (49.8ms)
|
76329
|
+
Completed 200 OK in 51ms (Views: 50.9ms)
|
76330
|
+
|
76331
|
+
|
76332
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76333
|
+
Processing by DataController#index as JS
|
76334
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76335
|
+
Rendered data/_data.html.erb (6.4ms)
|
76336
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
76337
|
+
|
76338
|
+
|
76339
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76340
|
+
Processing by DataController#index as JS
|
76341
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"2", "per_page"=>"10"}
|
76342
|
+
Rendered data/_data.html.erb (6.6ms)
|
76343
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
76344
|
+
|
76345
|
+
|
76346
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76347
|
+
Processing by DataController#index as HTML
|
76348
|
+
Rendered data/_data.html.erb (6.7ms)
|
76349
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
76350
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
76351
|
+
|
76352
|
+
|
76353
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76354
|
+
Processing by DataController#index as HTML
|
76355
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76356
|
+
Rendered data/_data.html.erb (6.7ms)
|
76357
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
76358
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
76359
|
+
|
76360
|
+
|
76361
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76362
|
+
Processing by DataController#index as HTML
|
76363
|
+
Rendered data/_data.html.erb (48.4ms)
|
76364
|
+
Rendered data/index.html.erb within layouts/application (48.7ms)
|
76365
|
+
Completed 200 OK in 50ms (Views: 49.8ms)
|
76366
|
+
|
76367
|
+
|
76368
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76369
|
+
Processing by DataController#index as HTML
|
76370
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76371
|
+
Rendered data/_data.html.erb (6.1ms)
|
76372
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
76373
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
76374
|
+
|
76375
|
+
|
76376
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=desc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76377
|
+
Processing by DataController#index as HTML
|
76378
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"desc", "page"=>"1", "per_page"=>"10"}
|
76379
|
+
Rendered data/_data.html.erb (5.9ms)
|
76380
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76381
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
76382
|
+
|
76383
|
+
|
76384
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76385
|
+
Processing by DataController#index as HTML
|
76386
|
+
Rendered data/_data.html.erb (6.4ms)
|
76387
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76388
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76389
|
+
|
76390
|
+
|
76391
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76392
|
+
Processing by DataController#index as HTML
|
76393
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"1", "per_page"=>"10"}
|
76394
|
+
Rendered data/_data.html.erb (6.6ms)
|
76395
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
76396
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
76397
|
+
|
76398
|
+
|
76399
|
+
Started GET "/data?sort_column=name&page=2&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76400
|
+
Processing by DataController#index as HTML
|
76401
|
+
Parameters: {"sort_column"=>"name", "sort_direction"=>"asc", "page"=>"2", "per_page"=>"10"}
|
76402
|
+
Rendered data/_data.html.erb (6.4ms)
|
76403
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76404
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76405
|
+
|
76406
|
+
|
76407
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:08:18 -0400 2012
|
76408
|
+
Processing by DataController#index as HTML
|
76409
|
+
Rendered data/_data.html.erb (6.0ms)
|
76410
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
76411
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
76412
|
+
|
76413
|
+
|
76414
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76415
|
+
Processing by DataController#index as HTML
|
76416
|
+
Rendered data/_data.html.erb (65.3ms)
|
76417
|
+
Rendered data/index.html.erb within layouts/application (68.2ms)
|
76418
|
+
Completed 200 OK in 76ms (Views: 75.3ms)
|
76419
|
+
|
76420
|
+
|
76421
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76422
|
+
Served asset /application.css - 200 OK (2ms)
|
76423
|
+
|
76424
|
+
|
76425
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76426
|
+
Served asset /application.js - 200 OK (7ms)
|
76427
|
+
|
76428
|
+
|
76429
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76430
|
+
Processing by DataController#index as HTML
|
76431
|
+
Rendered data/_data.html.erb (7.5ms)
|
76432
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
76433
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
76434
|
+
|
76435
|
+
|
76436
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76437
|
+
Processing by DataController#index as JS
|
76438
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
76439
|
+
Rendered data/_data.html.erb (6.7ms)
|
76440
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
76441
|
+
|
76442
|
+
|
76443
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76444
|
+
Processing by DataController#index as HTML
|
76445
|
+
Rendered data/_data.html.erb (41.6ms)
|
76446
|
+
Rendered data/index.html.erb within layouts/application (41.9ms)
|
76447
|
+
Completed 200 OK in 44ms (Views: 43.0ms)
|
76448
|
+
|
76449
|
+
|
76450
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76451
|
+
Processing by DataController#index as JS
|
76452
|
+
Parameters: {"page"=>"4", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
76453
|
+
Rendered data/_data.html.erb (6.5ms)
|
76454
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
76455
|
+
|
76456
|
+
|
76457
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:08 -0400 2012
|
76458
|
+
Processing by DataController#index as JS
|
76459
|
+
Parameters: {"page"=>"3", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
76460
|
+
Rendered data/_data.html.erb (6.7ms)
|
76461
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
76462
|
+
|
76463
|
+
|
76464
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76465
|
+
Processing by DataController#index as HTML
|
76466
|
+
Rendered data/_data.html.erb (6.0ms)
|
76467
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76468
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
76469
|
+
|
76470
|
+
|
76471
|
+
Started GET "/data?page=2&per_page=10&sort_direction=asc&sort_column=id" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76472
|
+
Processing by DataController#index as HTML
|
76473
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
76474
|
+
Rendered data/_data.html.erb (7.8ms)
|
76475
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
76476
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
76477
|
+
|
76478
|
+
|
76479
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76480
|
+
Processing by DataController#index as HTML
|
76481
|
+
Rendered data/_data.html.erb (5.8ms)
|
76482
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
76483
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76484
|
+
|
76485
|
+
|
76486
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76487
|
+
Processing by DataController#index as HTML
|
76488
|
+
Rendered data/_data.html.erb (6.6ms)
|
76489
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
76490
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
76491
|
+
|
76492
|
+
|
76493
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76494
|
+
Processing by DataController#index as HTML
|
76495
|
+
Rendered data/_data.html.erb (51.6ms)
|
76496
|
+
Rendered data/index.html.erb within layouts/application (51.9ms)
|
76497
|
+
Completed 200 OK in 54ms (Views: 53.0ms)
|
76498
|
+
|
76499
|
+
|
76500
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76501
|
+
Processing by DataController#index as HTML
|
76502
|
+
Rendered data/_data.html.erb (6.3ms)
|
76503
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
76504
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76505
|
+
|
76506
|
+
|
76507
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76508
|
+
Processing by DataController#index as HTML
|
76509
|
+
Rendered data/_data.html.erb (7.5ms)
|
76510
|
+
Rendered data/index.html.erb within layouts/application (7.9ms)
|
76511
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
76512
|
+
|
76513
|
+
|
76514
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76515
|
+
Processing by DataController#index as HTML
|
76516
|
+
Rendered data/_data.html.erb (6.9ms)
|
76517
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
76518
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76519
|
+
|
76520
|
+
|
76521
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76522
|
+
Processing by DataController#index as HTML
|
76523
|
+
Rendered data/_data.html.erb (9.5ms)
|
76524
|
+
Rendered data/index.html.erb within layouts/application (9.9ms)
|
76525
|
+
Completed 200 OK in 13ms (Views: 11.8ms)
|
76526
|
+
|
76527
|
+
|
76528
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76529
|
+
Processing by DataController#index as HTML
|
76530
|
+
Rendered data/_data.html.erb (73.6ms)
|
76531
|
+
Rendered data/index.html.erb within layouts/application (73.9ms)
|
76532
|
+
Completed 200 OK in 76ms (Views: 75.1ms)
|
76533
|
+
|
76534
|
+
|
76535
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76536
|
+
Processing by DataController#index as HTML
|
76537
|
+
Rendered data/_data.html.erb (6.5ms)
|
76538
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
76539
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
76540
|
+
|
76541
|
+
|
76542
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76543
|
+
Processing by DataController#index as HTML
|
76544
|
+
Rendered data/_data.html.erb (6.6ms)
|
76545
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
76546
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
76547
|
+
|
76548
|
+
|
76549
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:09 -0400 2012
|
76550
|
+
Processing by DataController#index as JS
|
76551
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
76552
|
+
Rendered data/_data.html.erb (7.7ms)
|
76553
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
76554
|
+
|
76555
|
+
|
76556
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76557
|
+
Processing by DataController#index as HTML
|
76558
|
+
Parameters: {"search"=>"secondhalf"}
|
76559
|
+
Rendered data/_data.html.erb (6.2ms)
|
76560
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
76561
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76562
|
+
|
76563
|
+
|
76564
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76565
|
+
Processing by DataController#index as HTML
|
76566
|
+
Parameters: {"search"=>"secondhalf"}
|
76567
|
+
Rendered data/_data.html.erb (47.5ms)
|
76568
|
+
Rendered data/index.html.erb within layouts/application (47.8ms)
|
76569
|
+
Completed 200 OK in 49ms (Views: 48.9ms)
|
76570
|
+
|
76571
|
+
|
76572
|
+
Started GET "/data?page=2&per_page=10&search=secondhalf&sort_direction=asc&sort_column=id" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76573
|
+
Processing by DataController#index as HTML
|
76574
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "search"=>"secondhalf", "sort_direction"=>"asc", "sort_column"=>"id"}
|
76575
|
+
Rendered data/_data.html.erb (5.1ms)
|
76576
|
+
Rendered data/index.html.erb within layouts/application (5.4ms)
|
76577
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
76578
|
+
|
76579
|
+
|
76580
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76581
|
+
Processing by DataController#index as HTML
|
76582
|
+
Parameters: {"search"=>"secondhalf"}
|
76583
|
+
Rendered data/_data.html.erb (4.7ms)
|
76584
|
+
Rendered data/index.html.erb within layouts/application (5.0ms)
|
76585
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
76586
|
+
|
76587
|
+
|
76588
|
+
Started GET "/data?page=1&per_page=10&search=secondhalf&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76589
|
+
Processing by DataController#index as HTML
|
76590
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "search"=>"secondhalf", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76591
|
+
Rendered data/_data.html.erb (5.3ms)
|
76592
|
+
Rendered data/index.html.erb within layouts/application (5.5ms)
|
76593
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
76594
|
+
|
76595
|
+
|
76596
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76597
|
+
Processing by DataController#index as HTML
|
76598
|
+
Rendered data/_data.html.erb (6.4ms)
|
76599
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76600
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
76601
|
+
|
76602
|
+
|
76603
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76604
|
+
Processing by DataController#index as HTML
|
76605
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76606
|
+
Rendered data/_data.html.erb (6.0ms)
|
76607
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
76608
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
76609
|
+
|
76610
|
+
|
76611
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76612
|
+
Processing by DataController#index as HTML
|
76613
|
+
Rendered data/_data.html.erb (5.9ms)
|
76614
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76615
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
76616
|
+
|
76617
|
+
|
76618
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76619
|
+
Processing by DataController#index as HTML
|
76620
|
+
Rendered data/_data.html.erb (6.4ms)
|
76621
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76622
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76623
|
+
|
76624
|
+
|
76625
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76626
|
+
Processing by DataController#index as HTML
|
76627
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76628
|
+
Rendered data/_data.html.erb (6.3ms)
|
76629
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76630
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
76631
|
+
|
76632
|
+
|
76633
|
+
Started GET "/data?page=1&per_page=10&sort_direction=desc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76634
|
+
Processing by DataController#index as HTML
|
76635
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
76636
|
+
Rendered data/_data.html.erb (45.7ms)
|
76637
|
+
Rendered data/index.html.erb within layouts/application (46.0ms)
|
76638
|
+
Completed 200 OK in 48ms (Views: 47.1ms)
|
76639
|
+
|
76640
|
+
|
76641
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76642
|
+
Processing by DataController#index as HTML
|
76643
|
+
Rendered data/_data.html.erb (6.5ms)
|
76644
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
76645
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76646
|
+
|
76647
|
+
|
76648
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:11 -0400 2012
|
76649
|
+
Processing by DataController#index as JS
|
76650
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76651
|
+
Rendered data/_data.html.erb (6.4ms)
|
76652
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
76653
|
+
|
76654
|
+
|
76655
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76656
|
+
Processing by DataController#index as JS
|
76657
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76658
|
+
Rendered data/_data.html.erb (6.4ms)
|
76659
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
76660
|
+
|
76661
|
+
|
76662
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76663
|
+
Processing by DataController#index as HTML
|
76664
|
+
Rendered data/_data.html.erb (6.4ms)
|
76665
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76666
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76667
|
+
|
76668
|
+
|
76669
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76670
|
+
Processing by DataController#index as JS
|
76671
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76672
|
+
Rendered data/_data.html.erb (6.4ms)
|
76673
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
76674
|
+
|
76675
|
+
|
76676
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76677
|
+
Processing by DataController#index as JS
|
76678
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
76679
|
+
Rendered data/_data.html.erb (51.4ms)
|
76680
|
+
Completed 200 OK in 53ms (Views: 52.1ms)
|
76681
|
+
|
76682
|
+
|
76683
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76684
|
+
Processing by DataController#index as HTML
|
76685
|
+
Rendered data/_data.html.erb (6.4ms)
|
76686
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76687
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76688
|
+
|
76689
|
+
|
76690
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76691
|
+
Processing by DataController#index as JS
|
76692
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76693
|
+
Rendered data/_data.html.erb (6.6ms)
|
76694
|
+
Completed 200 OK in 8ms (Views: 7.0ms)
|
76695
|
+
|
76696
|
+
|
76697
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76698
|
+
Processing by DataController#index as HTML
|
76699
|
+
Rendered data/_data.html.erb (7.0ms)
|
76700
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
76701
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
76702
|
+
|
76703
|
+
|
76704
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76705
|
+
Processing by DataController#index as HTML
|
76706
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76707
|
+
Rendered data/_data.html.erb (6.5ms)
|
76708
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76709
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76710
|
+
|
76711
|
+
|
76712
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76713
|
+
Processing by DataController#index as HTML
|
76714
|
+
Rendered data/_data.html.erb (50.1ms)
|
76715
|
+
Rendered data/index.html.erb within layouts/application (50.4ms)
|
76716
|
+
Completed 200 OK in 52ms (Views: 51.5ms)
|
76717
|
+
|
76718
|
+
|
76719
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76720
|
+
Processing by DataController#index as HTML
|
76721
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76722
|
+
Rendered data/_data.html.erb (5.8ms)
|
76723
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
76724
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
76725
|
+
|
76726
|
+
|
76727
|
+
Started GET "/data?page=2&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76728
|
+
Processing by DataController#index as HTML
|
76729
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76730
|
+
Rendered data/_data.html.erb (6.3ms)
|
76731
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
76732
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
76733
|
+
|
76734
|
+
|
76735
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76736
|
+
Processing by DataController#index as HTML
|
76737
|
+
Rendered data/_data.html.erb (7.4ms)
|
76738
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
76739
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
76740
|
+
|
76741
|
+
|
76742
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76743
|
+
Processing by DataController#index as HTML
|
76744
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
76745
|
+
Rendered data/_data.html.erb (6.9ms)
|
76746
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
76747
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
76748
|
+
|
76749
|
+
|
76750
|
+
Started GET "/data?page=1&per_page=10&sort_direction=desc&sort_column=name" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76751
|
+
Processing by DataController#index as HTML
|
76752
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
76753
|
+
Rendered data/_data.html.erb (6.2ms)
|
76754
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76755
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76756
|
+
|
76757
|
+
|
76758
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:14:12 -0400 2012
|
76759
|
+
Processing by DataController#index as HTML
|
76760
|
+
Rendered data/_data.html.erb (5.8ms)
|
76761
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
76762
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
76763
|
+
|
76764
|
+
|
76765
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76766
|
+
Processing by DataController#index as HTML
|
76767
|
+
Rendered data/_data.html.erb (70.4ms)
|
76768
|
+
Rendered data/index.html.erb within layouts/application (73.9ms)
|
76769
|
+
Completed 200 OK in 81ms (Views: 79.9ms)
|
76770
|
+
|
76771
|
+
|
76772
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76773
|
+
Served asset /application.css - 200 OK (3ms)
|
76774
|
+
|
76775
|
+
|
76776
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76777
|
+
Served asset /application.js - 200 OK (7ms)
|
76778
|
+
|
76779
|
+
|
76780
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76781
|
+
Processing by DataController#index as HTML
|
76782
|
+
Rendered data/_data.html.erb (7.0ms)
|
76783
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
76784
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
76785
|
+
|
76786
|
+
|
76787
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76788
|
+
Processing by DataController#index as JS
|
76789
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
76790
|
+
Rendered data/_data.html.erb (6.7ms)
|
76791
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
76792
|
+
|
76793
|
+
|
76794
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76795
|
+
Processing by DataController#index as HTML
|
76796
|
+
Rendered data/_data.html.erb (6.4ms)
|
76797
|
+
Rendered data/index.html.erb within layouts/application (42.9ms)
|
76798
|
+
Completed 200 OK in 45ms (Views: 44.0ms)
|
76799
|
+
|
76800
|
+
|
76801
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76802
|
+
Processing by DataController#index as JS
|
76803
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"4", "per_page"=>"10", "sort_column"=>"id"}
|
76804
|
+
Rendered data/_data.html.erb (6.5ms)
|
76805
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
76806
|
+
|
76807
|
+
|
76808
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76809
|
+
Processing by DataController#index as JS
|
76810
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"3", "per_page"=>"10", "sort_column"=>"id"}
|
76811
|
+
Rendered data/_data.html.erb (7.1ms)
|
76812
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
76813
|
+
|
76814
|
+
|
76815
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:44 -0400 2012
|
76816
|
+
Processing by DataController#index as HTML
|
76817
|
+
Rendered data/_data.html.erb (6.1ms)
|
76818
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
76819
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
76820
|
+
|
76821
|
+
|
76822
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76823
|
+
Processing by DataController#index as HTML
|
76824
|
+
Rendered data/_data.html.erb (6.6ms)
|
76825
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
76826
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
76827
|
+
|
76828
|
+
|
76829
|
+
Started GET "/data?sort_direction=asc&page=2&per_page=10&sort_column=id" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76830
|
+
Processing by DataController#index as HTML
|
76831
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
76832
|
+
Rendered data/_data.html.erb (6.8ms)
|
76833
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
76834
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
76835
|
+
|
76836
|
+
|
76837
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76838
|
+
Processing by DataController#index as HTML
|
76839
|
+
Rendered data/_data.html.erb (5.7ms)
|
76840
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
76841
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
76842
|
+
|
76843
|
+
|
76844
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76845
|
+
Processing by DataController#index as HTML
|
76846
|
+
Rendered data/_data.html.erb (48.7ms)
|
76847
|
+
Rendered data/index.html.erb within layouts/application (49.0ms)
|
76848
|
+
Completed 200 OK in 51ms (Views: 50.1ms)
|
76849
|
+
|
76850
|
+
|
76851
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76852
|
+
Processing by DataController#index as HTML
|
76853
|
+
Rendered data/_data.html.erb (6.0ms)
|
76854
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76855
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
76856
|
+
|
76857
|
+
|
76858
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76859
|
+
Processing by DataController#index as HTML
|
76860
|
+
Rendered data/_data.html.erb (6.4ms)
|
76861
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
76862
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76863
|
+
|
76864
|
+
|
76865
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76866
|
+
Processing by DataController#index as HTML
|
76867
|
+
Rendered data/_data.html.erb (6.1ms)
|
76868
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
76869
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
76870
|
+
|
76871
|
+
|
76872
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76873
|
+
Processing by DataController#index as HTML
|
76874
|
+
Rendered data/_data.html.erb (7.1ms)
|
76875
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
76876
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
76877
|
+
|
76878
|
+
|
76879
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76880
|
+
Processing by DataController#index as HTML
|
76881
|
+
Rendered data/_data.html.erb (47.4ms)
|
76882
|
+
Rendered data/index.html.erb within layouts/application (47.7ms)
|
76883
|
+
Completed 200 OK in 49ms (Views: 48.7ms)
|
76884
|
+
|
76885
|
+
|
76886
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76887
|
+
Processing by DataController#index as HTML
|
76888
|
+
Rendered data/_data.html.erb (5.8ms)
|
76889
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
76890
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
76891
|
+
|
76892
|
+
|
76893
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76894
|
+
Processing by DataController#index as HTML
|
76895
|
+
Rendered data/_data.html.erb (6.9ms)
|
76896
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
76897
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
76898
|
+
|
76899
|
+
|
76900
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:45 -0400 2012
|
76901
|
+
Processing by DataController#index as JS
|
76902
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
76903
|
+
Rendered data/_data.html.erb (7.3ms)
|
76904
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
76905
|
+
|
76906
|
+
|
76907
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76908
|
+
Processing by DataController#index as HTML
|
76909
|
+
Parameters: {"search"=>"secondhalf"}
|
76910
|
+
Rendered data/_data.html.erb (4.7ms)
|
76911
|
+
Rendered data/index.html.erb within layouts/application (4.9ms)
|
76912
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
76913
|
+
|
76914
|
+
|
76915
|
+
Started GET "/data?search=secondhalf&sort_direction=asc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76916
|
+
Processing by DataController#index as HTML
|
76917
|
+
Parameters: {"sort_direction"=>"asc", "search"=>"secondhalf", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
76918
|
+
Rendered data/_data.html.erb (48.2ms)
|
76919
|
+
Rendered data/index.html.erb within layouts/application (48.6ms)
|
76920
|
+
Completed 200 OK in 50ms (Views: 49.6ms)
|
76921
|
+
|
76922
|
+
|
76923
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76924
|
+
Processing by DataController#index as HTML
|
76925
|
+
Parameters: {"search"=>"secondhalf"}
|
76926
|
+
Rendered data/_data.html.erb (5.0ms)
|
76927
|
+
Rendered data/index.html.erb within layouts/application (5.3ms)
|
76928
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
76929
|
+
|
76930
|
+
|
76931
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76932
|
+
Processing by DataController#index as HTML
|
76933
|
+
Parameters: {"search"=>"secondhalf"}
|
76934
|
+
Rendered data/_data.html.erb (5.5ms)
|
76935
|
+
Rendered data/index.html.erb within layouts/application (5.7ms)
|
76936
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
76937
|
+
|
76938
|
+
|
76939
|
+
Started GET "/data?search=secondhalf&sort_direction=asc&page=2&per_page=10&sort_column=id" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76940
|
+
Processing by DataController#index as HTML
|
76941
|
+
Parameters: {"sort_direction"=>"asc", "search"=>"secondhalf", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
76942
|
+
Rendered data/_data.html.erb (5.2ms)
|
76943
|
+
Rendered data/index.html.erb within layouts/application (5.4ms)
|
76944
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
76945
|
+
|
76946
|
+
|
76947
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76948
|
+
Processing by DataController#index as HTML
|
76949
|
+
Rendered data/_data.html.erb (6.7ms)
|
76950
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
76951
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
76952
|
+
|
76953
|
+
|
76954
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76955
|
+
Processing by DataController#index as HTML
|
76956
|
+
Rendered data/_data.html.erb (5.9ms)
|
76957
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76958
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
76959
|
+
|
76960
|
+
|
76961
|
+
Started GET "/data?sort_direction=asc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76962
|
+
Processing by DataController#index as HTML
|
76963
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
76964
|
+
Rendered data/_data.html.erb (6.0ms)
|
76965
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76966
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
76967
|
+
|
76968
|
+
|
76969
|
+
Started GET "/data?sort_direction=desc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76970
|
+
Processing by DataController#index as HTML
|
76971
|
+
Parameters: {"sort_direction"=>"desc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
76972
|
+
Rendered data/_data.html.erb (6.0ms)
|
76973
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
76974
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
76975
|
+
|
76976
|
+
|
76977
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76978
|
+
Processing by DataController#index as HTML
|
76979
|
+
Rendered data/_data.html.erb (6.7ms)
|
76980
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
76981
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
76982
|
+
|
76983
|
+
|
76984
|
+
Started GET "/data?sort_direction=asc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76985
|
+
Processing by DataController#index as HTML
|
76986
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
76987
|
+
Rendered data/_data.html.erb (47.6ms)
|
76988
|
+
Rendered data/index.html.erb within layouts/application (47.9ms)
|
76989
|
+
Completed 200 OK in 49ms (Views: 49.0ms)
|
76990
|
+
|
76991
|
+
|
76992
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
76993
|
+
Processing by DataController#index as HTML
|
76994
|
+
Rendered data/_data.html.erb (6.4ms)
|
76995
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
76996
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
76997
|
+
|
76998
|
+
|
76999
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77000
|
+
Processing by DataController#index as JS
|
77001
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77002
|
+
Rendered data/_data.html.erb (6.1ms)
|
77003
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
77004
|
+
|
77005
|
+
|
77006
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77007
|
+
Processing by DataController#index as JS
|
77008
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"name"}
|
77009
|
+
Rendered data/_data.html.erb (6.9ms)
|
77010
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77011
|
+
|
77012
|
+
|
77013
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77014
|
+
Processing by DataController#index as HTML
|
77015
|
+
Rendered data/_data.html.erb (6.7ms)
|
77016
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77017
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
77018
|
+
|
77019
|
+
|
77020
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77021
|
+
Processing by DataController#index as JS
|
77022
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77023
|
+
Rendered data/_data.html.erb (6.9ms)
|
77024
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77025
|
+
|
77026
|
+
|
77027
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77028
|
+
Processing by DataController#index as JS
|
77029
|
+
Parameters: {"sort_direction"=>"desc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77030
|
+
Rendered data/_data.html.erb (48.4ms)
|
77031
|
+
Completed 200 OK in 50ms (Views: 49.4ms)
|
77032
|
+
|
77033
|
+
|
77034
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77035
|
+
Processing by DataController#index as HTML
|
77036
|
+
Rendered data/_data.html.erb (6.4ms)
|
77037
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
77038
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
77039
|
+
|
77040
|
+
|
77041
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:19:47 -0400 2012
|
77042
|
+
Processing by DataController#index as JS
|
77043
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77044
|
+
Rendered data/_data.html.erb (6.1ms)
|
77045
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
77046
|
+
|
77047
|
+
|
77048
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77049
|
+
Processing by DataController#index as HTML
|
77050
|
+
Rendered data/_data.html.erb (6.7ms)
|
77051
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
77052
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
77053
|
+
|
77054
|
+
|
77055
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77056
|
+
Processing by DataController#index as HTML
|
77057
|
+
Rendered data/_data.html.erb (6.6ms)
|
77058
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77059
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
77060
|
+
|
77061
|
+
|
77062
|
+
Started GET "/data?sort_direction=asc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77063
|
+
Processing by DataController#index as HTML
|
77064
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77065
|
+
Rendered data/_data.html.erb (50.3ms)
|
77066
|
+
Rendered data/index.html.erb within layouts/application (50.6ms)
|
77067
|
+
Completed 200 OK in 52ms (Views: 51.8ms)
|
77068
|
+
|
77069
|
+
|
77070
|
+
Started GET "/data?sort_direction=asc&page=2&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77071
|
+
Processing by DataController#index as HTML
|
77072
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"name"}
|
77073
|
+
Rendered data/_data.html.erb (6.2ms)
|
77074
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
77075
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
77076
|
+
|
77077
|
+
|
77078
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77079
|
+
Processing by DataController#index as HTML
|
77080
|
+
Rendered data/_data.html.erb (6.2ms)
|
77081
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
77082
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
77083
|
+
|
77084
|
+
|
77085
|
+
Started GET "/data?sort_direction=asc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77086
|
+
Processing by DataController#index as HTML
|
77087
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77088
|
+
Rendered data/_data.html.erb (6.6ms)
|
77089
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77090
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
77091
|
+
|
77092
|
+
|
77093
|
+
Started GET "/data?sort_direction=desc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77094
|
+
Processing by DataController#index as HTML
|
77095
|
+
Parameters: {"sort_direction"=>"desc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77096
|
+
Rendered data/_data.html.erb (6.4ms)
|
77097
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
77098
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
77099
|
+
|
77100
|
+
|
77101
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77102
|
+
Processing by DataController#index as HTML
|
77103
|
+
Rendered data/_data.html.erb (6.2ms)
|
77104
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
77105
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
77106
|
+
|
77107
|
+
|
77108
|
+
Started GET "/data?sort_direction=asc&page=1&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:19:48 -0400 2012
|
77109
|
+
Processing by DataController#index as HTML
|
77110
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
77111
|
+
Rendered data/_data.html.erb (6.0ms)
|
77112
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77113
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
77114
|
+
|
77115
|
+
|
77116
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77117
|
+
Processing by DataController#index as HTML
|
77118
|
+
Rendered data/_data.html.erb (63.2ms)
|
77119
|
+
Rendered data/index.html.erb within layouts/application (66.6ms)
|
77120
|
+
Completed 200 OK in 74ms (Views: 72.4ms)
|
77121
|
+
|
77122
|
+
|
77123
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77124
|
+
Served asset /application.css - 200 OK (2ms)
|
77125
|
+
|
77126
|
+
|
77127
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77128
|
+
Served asset /application.js - 200 OK (6ms)
|
77129
|
+
|
77130
|
+
|
77131
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77132
|
+
Processing by DataController#index as HTML
|
77133
|
+
Rendered data/_data.html.erb (7.3ms)
|
77134
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
77135
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
77136
|
+
|
77137
|
+
|
77138
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77139
|
+
Processing by DataController#index as JS
|
77140
|
+
Parameters: {"page"=>"2", "sort_direction"=>"asc", "sort_column"=>"id", "per_page"=>"10"}
|
77141
|
+
Rendered data/_data.html.erb (6.6ms)
|
77142
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
77143
|
+
|
77144
|
+
|
77145
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77146
|
+
Processing by DataController#index as HTML
|
77147
|
+
Rendered data/_data.html.erb (42.0ms)
|
77148
|
+
Rendered data/index.html.erb within layouts/application (42.3ms)
|
77149
|
+
Completed 200 OK in 44ms (Views: 43.5ms)
|
77150
|
+
|
77151
|
+
|
77152
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77153
|
+
Processing by DataController#index as JS
|
77154
|
+
Parameters: {"page"=>"4", "sort_direction"=>"asc", "sort_column"=>"id", "per_page"=>"10"}
|
77155
|
+
Rendered data/_data.html.erb (6.5ms)
|
77156
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77157
|
+
|
77158
|
+
|
77159
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:01 -0400 2012
|
77160
|
+
Processing by DataController#index as JS
|
77161
|
+
Parameters: {"page"=>"3", "sort_direction"=>"asc", "sort_column"=>"id", "per_page"=>"10"}
|
77162
|
+
Rendered data/_data.html.erb (7.1ms)
|
77163
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
77164
|
+
|
77165
|
+
|
77166
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77167
|
+
Processing by DataController#index as HTML
|
77168
|
+
Rendered data/_data.html.erb (6.1ms)
|
77169
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77170
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77171
|
+
|
77172
|
+
|
77173
|
+
Started GET "/data?page=2&sort_direction=asc&per_page=10&sort_column=id" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77174
|
+
Processing by DataController#index as HTML
|
77175
|
+
Parameters: {"page"=>"2", "sort_direction"=>"asc", "sort_column"=>"id", "per_page"=>"10"}
|
77176
|
+
Rendered data/_data.html.erb (7.0ms)
|
77177
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
77178
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
77179
|
+
|
77180
|
+
|
77181
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77182
|
+
Processing by DataController#index as HTML
|
77183
|
+
Rendered data/_data.html.erb (6.6ms)
|
77184
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
77185
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
77186
|
+
|
77187
|
+
|
77188
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77189
|
+
Processing by DataController#index as HTML
|
77190
|
+
Rendered data/_data.html.erb (6.6ms)
|
77191
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77192
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
77193
|
+
|
77194
|
+
|
77195
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77196
|
+
Processing by DataController#index as HTML
|
77197
|
+
Rendered data/_data.html.erb (50.5ms)
|
77198
|
+
Rendered data/index.html.erb within layouts/application (50.8ms)
|
77199
|
+
Completed 200 OK in 52ms (Views: 51.9ms)
|
77200
|
+
|
77201
|
+
|
77202
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77203
|
+
Processing by DataController#index as HTML
|
77204
|
+
Rendered data/_data.html.erb (6.2ms)
|
77205
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
77206
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
77207
|
+
|
77208
|
+
|
77209
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77210
|
+
Processing by DataController#index as HTML
|
77211
|
+
Rendered data/_data.html.erb (8.6ms)
|
77212
|
+
Rendered data/index.html.erb within layouts/application (8.9ms)
|
77213
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
77214
|
+
|
77215
|
+
|
77216
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77217
|
+
Processing by DataController#index as HTML
|
77218
|
+
Rendered data/_data.html.erb (8.2ms)
|
77219
|
+
Rendered data/index.html.erb within layouts/application (8.5ms)
|
77220
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
77221
|
+
|
77222
|
+
|
77223
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77224
|
+
Processing by DataController#index as HTML
|
77225
|
+
Rendered data/_data.html.erb (9.0ms)
|
77226
|
+
Rendered data/index.html.erb within layouts/application (9.3ms)
|
77227
|
+
Completed 200 OK in 11ms (Views: 10.5ms)
|
77228
|
+
|
77229
|
+
|
77230
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77231
|
+
Processing by DataController#index as HTML
|
77232
|
+
Rendered data/_data.html.erb (66.4ms)
|
77233
|
+
Rendered data/index.html.erb within layouts/application (66.7ms)
|
77234
|
+
Completed 200 OK in 69ms (Views: 67.8ms)
|
77235
|
+
|
77236
|
+
|
77237
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77238
|
+
Processing by DataController#index as HTML
|
77239
|
+
Rendered data/_data.html.erb (5.7ms)
|
77240
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
77241
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
77242
|
+
|
77243
|
+
|
77244
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77245
|
+
Processing by DataController#index as HTML
|
77246
|
+
Rendered data/_data.html.erb (7.8ms)
|
77247
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
77248
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
77249
|
+
|
77250
|
+
|
77251
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:02 -0400 2012
|
77252
|
+
Processing by DataController#index as JS
|
77253
|
+
Parameters: {"page"=>"2", "sort_direction"=>"asc", "sort_column"=>"id", "per_page"=>"10"}
|
77254
|
+
Rendered data/_data.html.erb (7.2ms)
|
77255
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
77256
|
+
|
77257
|
+
|
77258
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77259
|
+
Processing by DataController#index as HTML
|
77260
|
+
Parameters: {"search"=>"secondhalf"}
|
77261
|
+
Rendered data/_data.html.erb (5.5ms)
|
77262
|
+
Rendered data/index.html.erb within layouts/application (5.8ms)
|
77263
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
77264
|
+
|
77265
|
+
|
77266
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&search=secondhalf&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77267
|
+
Processing by DataController#index as HTML
|
77268
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "search"=>"secondhalf", "per_page"=>"10"}
|
77269
|
+
Rendered data/_data.html.erb (49.7ms)
|
77270
|
+
Rendered data/index.html.erb within layouts/application (50.0ms)
|
77271
|
+
Completed 200 OK in 51ms (Views: 51.0ms)
|
77272
|
+
|
77273
|
+
|
77274
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77275
|
+
Processing by DataController#index as HTML
|
77276
|
+
Parameters: {"search"=>"secondhalf"}
|
77277
|
+
Rendered data/_data.html.erb (4.7ms)
|
77278
|
+
Rendered data/index.html.erb within layouts/application (5.0ms)
|
77279
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
77280
|
+
|
77281
|
+
|
77282
|
+
Started GET "/data?page=2&sort_direction=asc&per_page=10&search=secondhalf&sort_column=id" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77283
|
+
Processing by DataController#index as HTML
|
77284
|
+
Parameters: {"page"=>"2", "sort_direction"=>"asc", "sort_column"=>"id", "search"=>"secondhalf", "per_page"=>"10"}
|
77285
|
+
Rendered data/_data.html.erb (5.4ms)
|
77286
|
+
Rendered data/index.html.erb within layouts/application (5.6ms)
|
77287
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
77288
|
+
|
77289
|
+
|
77290
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77291
|
+
Processing by DataController#index as HTML
|
77292
|
+
Parameters: {"search"=>"secondhalf"}
|
77293
|
+
Rendered data/_data.html.erb (5.2ms)
|
77294
|
+
Rendered data/index.html.erb within layouts/application (5.5ms)
|
77295
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
77296
|
+
|
77297
|
+
|
77298
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77299
|
+
Processing by DataController#index as HTML
|
77300
|
+
Rendered data/_data.html.erb (7.3ms)
|
77301
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
77302
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
77303
|
+
|
77304
|
+
|
77305
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77306
|
+
Processing by DataController#index as HTML
|
77307
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77308
|
+
Rendered data/_data.html.erb (6.2ms)
|
77309
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
77310
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
77311
|
+
|
77312
|
+
|
77313
|
+
Started GET "/data?page=1&sort_direction=desc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77314
|
+
Processing by DataController#index as HTML
|
77315
|
+
Parameters: {"page"=>"1", "sort_direction"=>"desc", "sort_column"=>"name", "per_page"=>"10"}
|
77316
|
+
Rendered data/_data.html.erb (5.9ms)
|
77317
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
77318
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
77319
|
+
|
77320
|
+
|
77321
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77322
|
+
Processing by DataController#index as HTML
|
77323
|
+
Rendered data/_data.html.erb (6.6ms)
|
77324
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77325
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
77326
|
+
|
77327
|
+
|
77328
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77329
|
+
Processing by DataController#index as HTML
|
77330
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77331
|
+
Rendered data/_data.html.erb (7.0ms)
|
77332
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
77333
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
77334
|
+
|
77335
|
+
|
77336
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77337
|
+
Processing by DataController#index as HTML
|
77338
|
+
Rendered data/_data.html.erb (46.6ms)
|
77339
|
+
Rendered data/index.html.erb within layouts/application (46.9ms)
|
77340
|
+
Completed 200 OK in 48ms (Views: 48.0ms)
|
77341
|
+
|
77342
|
+
|
77343
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77344
|
+
Processing by DataController#index as HTML
|
77345
|
+
Rendered data/_data.html.erb (6.4ms)
|
77346
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
77347
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
77348
|
+
|
77349
|
+
|
77350
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77351
|
+
Processing by DataController#index as JS
|
77352
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77353
|
+
Rendered data/_data.html.erb (6.3ms)
|
77354
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
77355
|
+
|
77356
|
+
|
77357
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77358
|
+
Processing by DataController#index as HTML
|
77359
|
+
Rendered data/_data.html.erb (7.1ms)
|
77360
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
77361
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
77362
|
+
|
77363
|
+
|
77364
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:04 -0400 2012
|
77365
|
+
Processing by DataController#index as JS
|
77366
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77367
|
+
Rendered data/_data.html.erb (6.4ms)
|
77368
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77369
|
+
|
77370
|
+
|
77371
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77372
|
+
Processing by DataController#index as JS
|
77373
|
+
Parameters: {"page"=>"2", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77374
|
+
Rendered data/_data.html.erb (6.6ms)
|
77375
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
77376
|
+
|
77377
|
+
|
77378
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77379
|
+
Processing by DataController#index as HTML
|
77380
|
+
Rendered data/_data.html.erb (52.6ms)
|
77381
|
+
Rendered data/index.html.erb within layouts/application (52.9ms)
|
77382
|
+
Completed 200 OK in 55ms (Views: 54.1ms)
|
77383
|
+
|
77384
|
+
|
77385
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77386
|
+
Processing by DataController#index as JS
|
77387
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77388
|
+
Rendered data/_data.html.erb (6.2ms)
|
77389
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
77390
|
+
|
77391
|
+
|
77392
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77393
|
+
Processing by DataController#index as JS
|
77394
|
+
Parameters: {"page"=>"1", "sort_direction"=>"desc", "sort_column"=>"name", "per_page"=>"10"}
|
77395
|
+
Rendered data/_data.html.erb (6.4ms)
|
77396
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77397
|
+
|
77398
|
+
|
77399
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77400
|
+
Processing by DataController#index as HTML
|
77401
|
+
Rendered data/_data.html.erb (5.8ms)
|
77402
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
77403
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
77404
|
+
|
77405
|
+
|
77406
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77407
|
+
Processing by DataController#index as HTML
|
77408
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77409
|
+
Rendered data/_data.html.erb (6.6ms)
|
77410
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
77411
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
77412
|
+
|
77413
|
+
|
77414
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77415
|
+
Processing by DataController#index as HTML
|
77416
|
+
Rendered data/_data.html.erb (49.9ms)
|
77417
|
+
Rendered data/index.html.erb within layouts/application (50.2ms)
|
77418
|
+
Completed 200 OK in 52ms (Views: 51.4ms)
|
77419
|
+
|
77420
|
+
|
77421
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77422
|
+
Processing by DataController#index as HTML
|
77423
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77424
|
+
Rendered data/_data.html.erb (6.0ms)
|
77425
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77426
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
77427
|
+
|
77428
|
+
|
77429
|
+
Started GET "/data?page=1&sort_direction=desc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77430
|
+
Processing by DataController#index as HTML
|
77431
|
+
Parameters: {"page"=>"1", "sort_direction"=>"desc", "sort_column"=>"name", "per_page"=>"10"}
|
77432
|
+
Rendered data/_data.html.erb (5.8ms)
|
77433
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
77434
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77435
|
+
|
77436
|
+
|
77437
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77438
|
+
Processing by DataController#index as HTML
|
77439
|
+
Rendered data/_data.html.erb (6.8ms)
|
77440
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
77441
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
77442
|
+
|
77443
|
+
|
77444
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77445
|
+
Processing by DataController#index as HTML
|
77446
|
+
Parameters: {"page"=>"1", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77447
|
+
Rendered data/_data.html.erb (6.0ms)
|
77448
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
77449
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
77450
|
+
|
77451
|
+
|
77452
|
+
Started GET "/data?page=2&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77453
|
+
Processing by DataController#index as HTML
|
77454
|
+
Parameters: {"page"=>"2", "sort_direction"=>"asc", "sort_column"=>"name", "per_page"=>"10"}
|
77455
|
+
Rendered data/_data.html.erb (6.4ms)
|
77456
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
77457
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
77458
|
+
|
77459
|
+
|
77460
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:20:05 -0400 2012
|
77461
|
+
Processing by DataController#index as HTML
|
77462
|
+
Rendered data/_data.html.erb (5.8ms)
|
77463
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
77464
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
77465
|
+
|
77466
|
+
|
77467
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77468
|
+
Processing by DataController#index as HTML
|
77469
|
+
Rendered data/_data.html.erb (64.2ms)
|
77470
|
+
Rendered data/index.html.erb within layouts/application (66.9ms)
|
77471
|
+
Completed 200 OK in 74ms (Views: 73.3ms)
|
77472
|
+
|
77473
|
+
|
77474
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77475
|
+
Served asset /application.css - 200 OK (3ms)
|
77476
|
+
|
77477
|
+
|
77478
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77479
|
+
Served asset /application.js - 200 OK (7ms)
|
77480
|
+
|
77481
|
+
|
77482
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77483
|
+
Processing by DataController#index as JS
|
77484
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"id", "page"=>"4", "sort_direction"=>"asc"}
|
77485
|
+
Rendered data/_data.html.erb (6.9ms)
|
77486
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
77487
|
+
|
77488
|
+
|
77489
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77490
|
+
Processing by DataController#index as JS
|
77491
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"id", "page"=>"3", "sort_direction"=>"asc"}
|
77492
|
+
Rendered data/_data.html.erb (7.1ms)
|
77493
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
77494
|
+
|
77495
|
+
|
77496
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77497
|
+
Processing by DataController#index as HTML
|
77498
|
+
Rendered data/_data.html.erb (42.6ms)
|
77499
|
+
Rendered data/index.html.erb within layouts/application (42.8ms)
|
77500
|
+
Completed 200 OK in 44ms (Views: 43.9ms)
|
77501
|
+
|
77502
|
+
|
77503
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77504
|
+
Processing by DataController#index as JS
|
77505
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"id", "page"=>"2", "sort_direction"=>"asc"}
|
77506
|
+
Rendered data/_data.html.erb (6.5ms)
|
77507
|
+
Completed 200 OK in 8ms (Views: 7.0ms)
|
77508
|
+
|
77509
|
+
|
77510
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77511
|
+
Processing by DataController#index as HTML
|
77512
|
+
Rendered data/_data.html.erb (7.1ms)
|
77513
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
77514
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
77515
|
+
|
77516
|
+
|
77517
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77518
|
+
Processing by DataController#index as HTML
|
77519
|
+
Rendered data/_data.html.erb (6.0ms)
|
77520
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77521
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
77522
|
+
|
77523
|
+
|
77524
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77525
|
+
Processing by DataController#index as HTML
|
77526
|
+
Rendered data/_data.html.erb (6.3ms)
|
77527
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
77528
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
77529
|
+
|
77530
|
+
|
77531
|
+
Started GET "/data?per_page=10&page=2&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77532
|
+
Processing by DataController#index as HTML
|
77533
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"id", "page"=>"2", "sort_direction"=>"asc"}
|
77534
|
+
Rendered data/_data.html.erb (6.5ms)
|
77535
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
77536
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
77537
|
+
|
77538
|
+
|
77539
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77540
|
+
Processing by DataController#index as HTML
|
77541
|
+
Rendered data/_data.html.erb (7.2ms)
|
77542
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
77543
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
77544
|
+
|
77545
|
+
|
77546
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77547
|
+
Processing by DataController#index as HTML
|
77548
|
+
Rendered data/_data.html.erb (48.9ms)
|
77549
|
+
Rendered data/index.html.erb within layouts/application (49.2ms)
|
77550
|
+
Completed 200 OK in 51ms (Views: 50.4ms)
|
77551
|
+
|
77552
|
+
|
77553
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77554
|
+
Processing by DataController#index as HTML
|
77555
|
+
Rendered data/_data.html.erb (5.9ms)
|
77556
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
77557
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
77558
|
+
|
77559
|
+
|
77560
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:16 -0400 2012
|
77561
|
+
Processing by DataController#index as HTML
|
77562
|
+
Rendered data/_data.html.erb (6.2ms)
|
77563
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
77564
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
77565
|
+
|
77566
|
+
|
77567
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:17 -0400 2012
|
77568
|
+
Processing by DataController#index as HTML
|
77569
|
+
Rendered data/_data.html.erb (6.8ms)
|
77570
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
77571
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
77572
|
+
|
77573
|
+
|
77574
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:17 -0400 2012
|
77575
|
+
Processing by DataController#index as HTML
|
77576
|
+
Rendered data/_data.html.erb (6.6ms)
|
77577
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
77578
|
+
Completed 200 OK in 9ms (Views: 7.9ms)
|
77579
|
+
|
77580
|
+
|
77581
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:17 -0400 2012
|
77582
|
+
Processing by DataController#index as HTML
|
77583
|
+
Rendered data/_data.html.erb (51.2ms)
|
77584
|
+
Rendered data/index.html.erb within layouts/application (51.5ms)
|
77585
|
+
Completed 200 OK in 53ms (Views: 52.6ms)
|
77586
|
+
|
77587
|
+
|
77588
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:17 -0400 2012
|
77589
|
+
Processing by DataController#index as HTML
|
77590
|
+
Rendered data/_data.html.erb (5.8ms)
|
77591
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
77592
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
77593
|
+
|
77594
|
+
|
77595
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:17 -0400 2012
|
77596
|
+
Processing by DataController#index as HTML
|
77597
|
+
Rendered data/_data.html.erb (6.4ms)
|
77598
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
77599
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
77600
|
+
|
77601
|
+
|
77602
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:17 -0400 2012
|
77603
|
+
Processing by DataController#index as JS
|
77604
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"id", "page"=>"2", "sort_direction"=>"asc"}
|
77605
|
+
Rendered data/_data.html.erb (7.6ms)
|
77606
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
77607
|
+
|
77608
|
+
|
77609
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77610
|
+
Processing by DataController#index as HTML
|
77611
|
+
Parameters: {"search"=>"secondhalf"}
|
77612
|
+
Rendered data/_data.html.erb (5.6ms)
|
77613
|
+
Rendered data/index.html.erb within layouts/application (5.9ms)
|
77614
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77615
|
+
|
77616
|
+
|
77617
|
+
Started GET "/data?per_page=10&page=1&search=secondhalf&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77618
|
+
Processing by DataController#index as HTML
|
77619
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "search"=>"secondhalf", "page"=>"1", "sort_direction"=>"asc"}
|
77620
|
+
Rendered data/_data.html.erb (51.5ms)
|
77621
|
+
Rendered data/index.html.erb within layouts/application (51.8ms)
|
77622
|
+
Completed 200 OK in 53ms (Views: 52.9ms)
|
77623
|
+
|
77624
|
+
|
77625
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77626
|
+
Processing by DataController#index as HTML
|
77627
|
+
Parameters: {"search"=>"secondhalf"}
|
77628
|
+
Rendered data/_data.html.erb (5.4ms)
|
77629
|
+
Rendered data/index.html.erb within layouts/application (5.7ms)
|
77630
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77631
|
+
|
77632
|
+
|
77633
|
+
Started GET "/data?per_page=10&page=2&search=secondhalf&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77634
|
+
Processing by DataController#index as HTML
|
77635
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"id", "search"=>"secondhalf", "page"=>"2", "sort_direction"=>"asc"}
|
77636
|
+
Rendered data/_data.html.erb (5.2ms)
|
77637
|
+
Rendered data/index.html.erb within layouts/application (5.5ms)
|
77638
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
77639
|
+
|
77640
|
+
|
77641
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77642
|
+
Processing by DataController#index as HTML
|
77643
|
+
Parameters: {"search"=>"secondhalf"}
|
77644
|
+
Rendered data/_data.html.erb (6.1ms)
|
77645
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
77646
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77647
|
+
|
77648
|
+
|
77649
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77650
|
+
Processing by DataController#index as HTML
|
77651
|
+
Rendered data/_data.html.erb (6.2ms)
|
77652
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
77653
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
77654
|
+
|
77655
|
+
|
77656
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77657
|
+
Processing by DataController#index as HTML
|
77658
|
+
Rendered data/_data.html.erb (6.0ms)
|
77659
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77660
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77661
|
+
|
77662
|
+
|
77663
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77664
|
+
Processing by DataController#index as HTML
|
77665
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77666
|
+
Rendered data/_data.html.erb (5.7ms)
|
77667
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
77668
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
77669
|
+
|
77670
|
+
|
77671
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77672
|
+
Processing by DataController#index as HTML
|
77673
|
+
Rendered data/_data.html.erb (6.7ms)
|
77674
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
77675
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
77676
|
+
|
77677
|
+
|
77678
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77679
|
+
Processing by DataController#index as HTML
|
77680
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77681
|
+
Rendered data/_data.html.erb (6.6ms)
|
77682
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77683
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
77684
|
+
|
77685
|
+
|
77686
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77687
|
+
Processing by DataController#index as HTML
|
77688
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"desc"}
|
77689
|
+
Rendered data/_data.html.erb (48.6ms)
|
77690
|
+
Rendered data/index.html.erb within layouts/application (48.9ms)
|
77691
|
+
Completed 200 OK in 50ms (Views: 50.0ms)
|
77692
|
+
|
77693
|
+
|
77694
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77695
|
+
Processing by DataController#index as HTML
|
77696
|
+
Rendered data/_data.html.erb (6.5ms)
|
77697
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
77698
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
77699
|
+
|
77700
|
+
|
77701
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77702
|
+
Processing by DataController#index as JS
|
77703
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77704
|
+
Rendered data/_data.html.erb (6.5ms)
|
77705
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77706
|
+
|
77707
|
+
|
77708
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77709
|
+
Processing by DataController#index as HTML
|
77710
|
+
Rendered data/_data.html.erb (7.7ms)
|
77711
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
77712
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
77713
|
+
|
77714
|
+
|
77715
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77716
|
+
Processing by DataController#index as JS
|
77717
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77718
|
+
Rendered data/_data.html.erb (6.1ms)
|
77719
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
77720
|
+
|
77721
|
+
|
77722
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77723
|
+
Processing by DataController#index as JS
|
77724
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"2", "sort_direction"=>"asc"}
|
77725
|
+
Rendered data/_data.html.erb (7.8ms)
|
77726
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
77727
|
+
|
77728
|
+
|
77729
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77730
|
+
Processing by DataController#index as HTML
|
77731
|
+
Rendered data/_data.html.erb (50.0ms)
|
77732
|
+
Rendered data/index.html.erb within layouts/application (50.4ms)
|
77733
|
+
Completed 200 OK in 52ms (Views: 51.5ms)
|
77734
|
+
|
77735
|
+
|
77736
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77737
|
+
Processing by DataController#index as JS
|
77738
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77739
|
+
Rendered data/_data.html.erb (6.3ms)
|
77740
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
77741
|
+
|
77742
|
+
|
77743
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77744
|
+
Processing by DataController#index as JS
|
77745
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"desc"}
|
77746
|
+
Rendered data/_data.html.erb (6.1ms)
|
77747
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
77748
|
+
|
77749
|
+
|
77750
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77751
|
+
Processing by DataController#index as HTML
|
77752
|
+
Rendered data/_data.html.erb (6.6ms)
|
77753
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
77754
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
77755
|
+
|
77756
|
+
|
77757
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77758
|
+
Processing by DataController#index as HTML
|
77759
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77760
|
+
Rendered data/_data.html.erb (6.4ms)
|
77761
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
77762
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
77763
|
+
|
77764
|
+
|
77765
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:21:19 -0400 2012
|
77766
|
+
Processing by DataController#index as HTML
|
77767
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"desc"}
|
77768
|
+
Rendered data/_data.html.erb (51.2ms)
|
77769
|
+
Rendered data/index.html.erb within layouts/application (51.5ms)
|
77770
|
+
Completed 200 OK in 53ms (Views: 52.5ms)
|
77771
|
+
|
77772
|
+
|
77773
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:20 -0400 2012
|
77774
|
+
Processing by DataController#index as HTML
|
77775
|
+
Rendered data/_data.html.erb (5.9ms)
|
77776
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
77777
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
77778
|
+
|
77779
|
+
|
77780
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:20 -0400 2012
|
77781
|
+
Processing by DataController#index as HTML
|
77782
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77783
|
+
Rendered data/_data.html.erb (6.3ms)
|
77784
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
77785
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
77786
|
+
|
77787
|
+
|
77788
|
+
Started GET "/data?per_page=10&page=2&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:20 -0400 2012
|
77789
|
+
Processing by DataController#index as HTML
|
77790
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"2", "sort_direction"=>"asc"}
|
77791
|
+
Rendered data/_data.html.erb (7.0ms)
|
77792
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
77793
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
77794
|
+
|
77795
|
+
|
77796
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:20 -0400 2012
|
77797
|
+
Processing by DataController#index as HTML
|
77798
|
+
Rendered data/_data.html.erb (6.9ms)
|
77799
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
77800
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
77801
|
+
|
77802
|
+
|
77803
|
+
Started GET "/data?per_page=10&page=1&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:21:20 -0400 2012
|
77804
|
+
Processing by DataController#index as HTML
|
77805
|
+
Parameters: {"per_page"=>"10", "sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc"}
|
77806
|
+
Rendered data/_data.html.erb (6.1ms)
|
77807
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77808
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
77809
|
+
|
77810
|
+
|
77811
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:21:20 -0400 2012
|
77812
|
+
Processing by DataController#index as HTML
|
77813
|
+
Rendered data/_data.html.erb (5.7ms)
|
77814
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
77815
|
+
Completed 200 OK in 8ms (Views: 7.0ms)
|
77816
|
+
|
77817
|
+
|
77818
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77819
|
+
Processing by DataController#index as HTML
|
77820
|
+
Rendered data/_data.html.erb (62.8ms)
|
77821
|
+
Rendered data/index.html.erb within layouts/application (65.5ms)
|
77822
|
+
Completed 200 OK in 72ms (Views: 71.7ms)
|
77823
|
+
|
77824
|
+
|
77825
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77826
|
+
Served asset /application.css - 200 OK (3ms)
|
77827
|
+
|
77828
|
+
|
77829
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77830
|
+
Served asset /application.js - 200 OK (6ms)
|
77831
|
+
|
77832
|
+
|
77833
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77834
|
+
Processing by DataController#index as HTML
|
77835
|
+
Rendered data/_data.html.erb (7.1ms)
|
77836
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
77837
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
77838
|
+
|
77839
|
+
|
77840
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77841
|
+
Processing by DataController#index as JS
|
77842
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_column"=>"id", "sort_direction"=>"asc"}
|
77843
|
+
Rendered data/_data.html.erb (6.7ms)
|
77844
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
77845
|
+
|
77846
|
+
|
77847
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77848
|
+
Processing by DataController#index as HTML
|
77849
|
+
Rendered data/_data.html.erb (6.3ms)
|
77850
|
+
Rendered data/index.html.erb within layouts/application (41.9ms)
|
77851
|
+
Completed 200 OK in 44ms (Views: 43.0ms)
|
77852
|
+
|
77853
|
+
|
77854
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77855
|
+
Processing by DataController#index as JS
|
77856
|
+
Parameters: {"page"=>"4", "per_page"=>"10", "sort_column"=>"id", "sort_direction"=>"asc"}
|
77857
|
+
Rendered data/_data.html.erb (6.4ms)
|
77858
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
77859
|
+
|
77860
|
+
|
77861
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77862
|
+
Processing by DataController#index as JS
|
77863
|
+
Parameters: {"page"=>"3", "per_page"=>"10", "sort_column"=>"id", "sort_direction"=>"asc"}
|
77864
|
+
Rendered data/_data.html.erb (6.3ms)
|
77865
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
77866
|
+
|
77867
|
+
|
77868
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77869
|
+
Processing by DataController#index as HTML
|
77870
|
+
Rendered data/_data.html.erb (6.0ms)
|
77871
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
77872
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
77873
|
+
|
77874
|
+
|
77875
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77876
|
+
Processing by DataController#index as HTML
|
77877
|
+
Rendered data/_data.html.erb (7.0ms)
|
77878
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
77879
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
77880
|
+
|
77881
|
+
|
77882
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77883
|
+
Processing by DataController#index as HTML
|
77884
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_column"=>"id", "sort_direction"=>"asc"}
|
77885
|
+
Rendered data/_data.html.erb (6.0ms)
|
77886
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
77887
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
77888
|
+
|
77889
|
+
|
77890
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77891
|
+
Processing by DataController#index as HTML
|
77892
|
+
Rendered data/_data.html.erb (6.9ms)
|
77893
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
77894
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
77895
|
+
|
77896
|
+
|
77897
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77898
|
+
Processing by DataController#index as HTML
|
77899
|
+
Rendered data/_data.html.erb (49.5ms)
|
77900
|
+
Rendered data/index.html.erb within layouts/application (49.8ms)
|
77901
|
+
Completed 200 OK in 51ms (Views: 50.9ms)
|
77902
|
+
|
77903
|
+
|
77904
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77905
|
+
Processing by DataController#index as HTML
|
77906
|
+
Rendered data/_data.html.erb (5.9ms)
|
77907
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
77908
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
77909
|
+
|
77910
|
+
|
77911
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:51 -0400 2012
|
77912
|
+
Processing by DataController#index as HTML
|
77913
|
+
Rendered data/_data.html.erb (6.9ms)
|
77914
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
77915
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
77916
|
+
|
77917
|
+
|
77918
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:52 -0400 2012
|
77919
|
+
Processing by DataController#index as HTML
|
77920
|
+
Rendered data/_data.html.erb (9.8ms)
|
77921
|
+
Rendered data/index.html.erb within layouts/application (10.2ms)
|
77922
|
+
Completed 200 OK in 12ms (Views: 11.7ms)
|
77923
|
+
|
77924
|
+
|
77925
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:52 -0400 2012
|
77926
|
+
Processing by DataController#index as HTML
|
77927
|
+
Rendered data/_data.html.erb (7.2ms)
|
77928
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
77929
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
77930
|
+
|
77931
|
+
|
77932
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:52 -0400 2012
|
77933
|
+
Processing by DataController#index as HTML
|
77934
|
+
Rendered data/_data.html.erb (67.0ms)
|
77935
|
+
Rendered data/index.html.erb within layouts/application (67.3ms)
|
77936
|
+
Completed 200 OK in 69ms (Views: 68.4ms)
|
77937
|
+
|
77938
|
+
|
77939
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:52 -0400 2012
|
77940
|
+
Processing by DataController#index as HTML
|
77941
|
+
Rendered data/_data.html.erb (6.0ms)
|
77942
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
77943
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
77944
|
+
|
77945
|
+
|
77946
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:52 -0400 2012
|
77947
|
+
Processing by DataController#index as HTML
|
77948
|
+
Rendered data/_data.html.erb (7.1ms)
|
77949
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
77950
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
77951
|
+
|
77952
|
+
|
77953
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:52 -0400 2012
|
77954
|
+
Processing by DataController#index as JS
|
77955
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_column"=>"id", "sort_direction"=>"asc"}
|
77956
|
+
Rendered data/_data.html.erb (7.6ms)
|
77957
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
77958
|
+
|
77959
|
+
|
77960
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
77961
|
+
Processing by DataController#index as HTML
|
77962
|
+
Parameters: {"search"=>"secondhalf"}
|
77963
|
+
Rendered data/_data.html.erb (5.1ms)
|
77964
|
+
Rendered data/index.html.erb within layouts/application (5.3ms)
|
77965
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
77966
|
+
|
77967
|
+
|
77968
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
77969
|
+
Processing by DataController#index as HTML
|
77970
|
+
Parameters: {"search"=>"secondhalf"}
|
77971
|
+
Rendered data/_data.html.erb (48.5ms)
|
77972
|
+
Rendered data/index.html.erb within layouts/application (48.8ms)
|
77973
|
+
Completed 200 OK in 50ms (Views: 49.9ms)
|
77974
|
+
|
77975
|
+
|
77976
|
+
Started GET "/data?page=1&search=secondhalf&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
77977
|
+
Processing by DataController#index as HTML
|
77978
|
+
Parameters: {"search"=>"secondhalf", "page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
77979
|
+
Rendered data/_data.html.erb (4.5ms)
|
77980
|
+
Rendered data/index.html.erb within layouts/application (4.7ms)
|
77981
|
+
Completed 200 OK in 6ms (Views: 5.7ms)
|
77982
|
+
|
77983
|
+
|
77984
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
77985
|
+
Processing by DataController#index as HTML
|
77986
|
+
Parameters: {"search"=>"secondhalf"}
|
77987
|
+
Rendered data/_data.html.erb (4.9ms)
|
77988
|
+
Rendered data/index.html.erb within layouts/application (5.1ms)
|
77989
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
77990
|
+
|
77991
|
+
|
77992
|
+
Started GET "/data?page=2&search=secondhalf&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
77993
|
+
Processing by DataController#index as HTML
|
77994
|
+
Parameters: {"search"=>"secondhalf", "page"=>"2", "per_page"=>"10", "sort_column"=>"id", "sort_direction"=>"asc"}
|
77995
|
+
Rendered data/_data.html.erb (5.4ms)
|
77996
|
+
Rendered data/index.html.erb within layouts/application (5.6ms)
|
77997
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
77998
|
+
|
77999
|
+
|
78000
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78001
|
+
Processing by DataController#index as HTML
|
78002
|
+
Rendered data/_data.html.erb (8.4ms)
|
78003
|
+
Rendered data/index.html.erb within layouts/application (8.7ms)
|
78004
|
+
Completed 200 OK in 11ms (Views: 10.1ms)
|
78005
|
+
|
78006
|
+
|
78007
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78008
|
+
Processing by DataController#index as HTML
|
78009
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78010
|
+
Rendered data/_data.html.erb (6.0ms)
|
78011
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
78012
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
78013
|
+
|
78014
|
+
|
78015
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78016
|
+
Processing by DataController#index as HTML
|
78017
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"desc"}
|
78018
|
+
Rendered data/_data.html.erb (5.6ms)
|
78019
|
+
Rendered data/index.html.erb within layouts/application (5.8ms)
|
78020
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
78021
|
+
|
78022
|
+
|
78023
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78024
|
+
Processing by DataController#index as HTML
|
78025
|
+
Rendered data/_data.html.erb (5.8ms)
|
78026
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
78027
|
+
Completed 200 OK in 8ms (Views: 7.0ms)
|
78028
|
+
|
78029
|
+
|
78030
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78031
|
+
Processing by DataController#index as HTML
|
78032
|
+
Rendered data/_data.html.erb (9.0ms)
|
78033
|
+
Rendered data/index.html.erb within layouts/application (9.4ms)
|
78034
|
+
Completed 200 OK in 12ms (Views: 10.7ms)
|
78035
|
+
|
78036
|
+
|
78037
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78038
|
+
Processing by DataController#index as HTML
|
78039
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78040
|
+
Rendered data/_data.html.erb (46.5ms)
|
78041
|
+
Rendered data/index.html.erb within layouts/application (46.8ms)
|
78042
|
+
Completed 200 OK in 48ms (Views: 47.9ms)
|
78043
|
+
|
78044
|
+
|
78045
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78046
|
+
Processing by DataController#index as HTML
|
78047
|
+
Rendered data/_data.html.erb (6.4ms)
|
78048
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
78049
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
78050
|
+
|
78051
|
+
|
78052
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78053
|
+
Processing by DataController#index as JS
|
78054
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78055
|
+
Rendered data/_data.html.erb (5.9ms)
|
78056
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
78057
|
+
|
78058
|
+
|
78059
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78060
|
+
Processing by DataController#index as HTML
|
78061
|
+
Rendered data/_data.html.erb (7.2ms)
|
78062
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
78063
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
78064
|
+
|
78065
|
+
|
78066
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78067
|
+
Processing by DataController#index as JS
|
78068
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78069
|
+
Rendered data/_data.html.erb (6.2ms)
|
78070
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
78071
|
+
|
78072
|
+
|
78073
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78074
|
+
Processing by DataController#index as JS
|
78075
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"desc"}
|
78076
|
+
Rendered data/_data.html.erb (6.1ms)
|
78077
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
78078
|
+
|
78079
|
+
|
78080
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78081
|
+
Processing by DataController#index as HTML
|
78082
|
+
Rendered data/_data.html.erb (48.1ms)
|
78083
|
+
Rendered data/index.html.erb within layouts/application (48.4ms)
|
78084
|
+
Completed 200 OK in 50ms (Views: 50.0ms)
|
78085
|
+
|
78086
|
+
|
78087
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:54 -0400 2012
|
78088
|
+
Processing by DataController#index as JS
|
78089
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78090
|
+
Rendered data/_data.html.erb (6.3ms)
|
78091
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
78092
|
+
|
78093
|
+
|
78094
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78095
|
+
Processing by DataController#index as JS
|
78096
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78097
|
+
Rendered data/_data.html.erb (6.4ms)
|
78098
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
78099
|
+
|
78100
|
+
|
78101
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78102
|
+
Processing by DataController#index as HTML
|
78103
|
+
Rendered data/_data.html.erb (5.9ms)
|
78104
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
78105
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
78106
|
+
|
78107
|
+
|
78108
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78109
|
+
Processing by DataController#index as HTML
|
78110
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78111
|
+
Rendered data/_data.html.erb (6.4ms)
|
78112
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78113
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
78114
|
+
|
78115
|
+
|
78116
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78117
|
+
Processing by DataController#index as HTML
|
78118
|
+
Rendered data/_data.html.erb (49.0ms)
|
78119
|
+
Rendered data/index.html.erb within layouts/application (49.4ms)
|
78120
|
+
Completed 200 OK in 51ms (Views: 50.4ms)
|
78121
|
+
|
78122
|
+
|
78123
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78124
|
+
Processing by DataController#index as HTML
|
78125
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78126
|
+
Rendered data/_data.html.erb (6.0ms)
|
78127
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
78128
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
78129
|
+
|
78130
|
+
|
78131
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78132
|
+
Processing by DataController#index as HTML
|
78133
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"desc"}
|
78134
|
+
Rendered data/_data.html.erb (5.8ms)
|
78135
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
78136
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
78137
|
+
|
78138
|
+
|
78139
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78140
|
+
Processing by DataController#index as HTML
|
78141
|
+
Rendered data/_data.html.erb (6.5ms)
|
78142
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78143
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
78144
|
+
|
78145
|
+
|
78146
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78147
|
+
Processing by DataController#index as HTML
|
78148
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78149
|
+
Rendered data/_data.html.erb (5.8ms)
|
78150
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
78151
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
78152
|
+
|
78153
|
+
|
78154
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78155
|
+
Processing by DataController#index as HTML
|
78156
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_column"=>"name", "sort_direction"=>"asc"}
|
78157
|
+
Rendered data/_data.html.erb (6.2ms)
|
78158
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78159
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
78160
|
+
|
78161
|
+
|
78162
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:22:55 -0400 2012
|
78163
|
+
Processing by DataController#index as HTML
|
78164
|
+
Rendered data/_data.html.erb (5.8ms)
|
78165
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
78166
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
78167
|
+
|
78168
|
+
|
78169
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78170
|
+
Processing by DataController#index as HTML
|
78171
|
+
Rendered data/_data.html.erb (63.5ms)
|
78172
|
+
Rendered data/index.html.erb within layouts/application (67.1ms)
|
78173
|
+
Completed 200 OK in 73ms (Views: 72.8ms)
|
78174
|
+
|
78175
|
+
|
78176
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78177
|
+
Served asset /application.css - 200 OK (2ms)
|
78178
|
+
|
78179
|
+
|
78180
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78181
|
+
Served asset /application.js - 200 OK (6ms)
|
78182
|
+
|
78183
|
+
|
78184
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78185
|
+
Processing by DataController#index as JS
|
78186
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78187
|
+
Rendered data/_data.html.erb (7.4ms)
|
78188
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
78189
|
+
|
78190
|
+
|
78191
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78192
|
+
Processing by DataController#index as HTML
|
78193
|
+
Rendered data/_data.html.erb (6.2ms)
|
78194
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78195
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78196
|
+
|
78197
|
+
|
78198
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78199
|
+
Processing by DataController#index as HTML
|
78200
|
+
Rendered data/_data.html.erb (6.4ms)
|
78201
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78202
|
+
Completed 200 OK in 44ms (Views: 43.4ms)
|
78203
|
+
|
78204
|
+
|
78205
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78206
|
+
Processing by DataController#index as JS
|
78207
|
+
Parameters: {"page"=>"4", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78208
|
+
Rendered data/_data.html.erb (6.6ms)
|
78209
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
78210
|
+
|
78211
|
+
|
78212
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:02 -0400 2012
|
78213
|
+
Processing by DataController#index as JS
|
78214
|
+
Parameters: {"page"=>"3", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78215
|
+
Rendered data/_data.html.erb (6.3ms)
|
78216
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
78217
|
+
|
78218
|
+
|
78219
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78220
|
+
Processing by DataController#index as HTML
|
78221
|
+
Rendered data/_data.html.erb (6.0ms)
|
78222
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
78223
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
78224
|
+
|
78225
|
+
|
78226
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78227
|
+
Processing by DataController#index as HTML
|
78228
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78229
|
+
Rendered data/_data.html.erb (6.6ms)
|
78230
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
78231
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78232
|
+
|
78233
|
+
|
78234
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78235
|
+
Processing by DataController#index as HTML
|
78236
|
+
Rendered data/_data.html.erb (6.4ms)
|
78237
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
78238
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
78239
|
+
|
78240
|
+
|
78241
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78242
|
+
Processing by DataController#index as HTML
|
78243
|
+
Rendered data/_data.html.erb (5.8ms)
|
78244
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
78245
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
78246
|
+
|
78247
|
+
|
78248
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78249
|
+
Processing by DataController#index as HTML
|
78250
|
+
Rendered data/_data.html.erb (70.1ms)
|
78251
|
+
Rendered data/index.html.erb within layouts/application (70.4ms)
|
78252
|
+
Completed 200 OK in 72ms (Views: 71.6ms)
|
78253
|
+
|
78254
|
+
|
78255
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78256
|
+
Processing by DataController#index as HTML
|
78257
|
+
Rendered data/_data.html.erb (5.9ms)
|
78258
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
78259
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
78260
|
+
|
78261
|
+
|
78262
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78263
|
+
Processing by DataController#index as HTML
|
78264
|
+
Rendered data/_data.html.erb (6.4ms)
|
78265
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78266
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
78267
|
+
|
78268
|
+
|
78269
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78270
|
+
Processing by DataController#index as HTML
|
78271
|
+
Rendered data/_data.html.erb (8.6ms)
|
78272
|
+
Rendered data/index.html.erb within layouts/application (8.9ms)
|
78273
|
+
Completed 200 OK in 11ms (Views: 10.0ms)
|
78274
|
+
|
78275
|
+
|
78276
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78277
|
+
Processing by DataController#index as HTML
|
78278
|
+
Rendered data/_data.html.erb (6.8ms)
|
78279
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
78280
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
78281
|
+
|
78282
|
+
|
78283
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78284
|
+
Processing by DataController#index as HTML
|
78285
|
+
Rendered data/_data.html.erb (48.2ms)
|
78286
|
+
Rendered data/index.html.erb within layouts/application (48.5ms)
|
78287
|
+
Completed 200 OK in 51ms (Views: 50.1ms)
|
78288
|
+
|
78289
|
+
|
78290
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78291
|
+
Processing by DataController#index as HTML
|
78292
|
+
Rendered data/_data.html.erb (5.9ms)
|
78293
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
78294
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
78295
|
+
|
78296
|
+
|
78297
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78298
|
+
Processing by DataController#index as HTML
|
78299
|
+
Rendered data/_data.html.erb (7.2ms)
|
78300
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
78301
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
78302
|
+
|
78303
|
+
|
78304
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:03 -0400 2012
|
78305
|
+
Processing by DataController#index as JS
|
78306
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78307
|
+
Rendered data/_data.html.erb (6.3ms)
|
78308
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
78309
|
+
|
78310
|
+
|
78311
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78312
|
+
Processing by DataController#index as HTML
|
78313
|
+
Parameters: {"search"=>"secondhalf"}
|
78314
|
+
Rendered data/_data.html.erb (4.7ms)
|
78315
|
+
Rendered data/index.html.erb within layouts/application (4.9ms)
|
78316
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
78317
|
+
|
78318
|
+
|
78319
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78320
|
+
Processing by DataController#index as HTML
|
78321
|
+
Parameters: {"search"=>"secondhalf"}
|
78322
|
+
Rendered data/_data.html.erb (45.8ms)
|
78323
|
+
Rendered data/index.html.erb within layouts/application (46.2ms)
|
78324
|
+
Completed 200 OK in 48ms (Views: 47.2ms)
|
78325
|
+
|
78326
|
+
|
78327
|
+
Started GET "/data?page=2&per_page=10&search=secondhalf&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78328
|
+
Processing by DataController#index as HTML
|
78329
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id", "search"=>"secondhalf"}
|
78330
|
+
Rendered data/_data.html.erb (5.1ms)
|
78331
|
+
Rendered data/index.html.erb within layouts/application (5.3ms)
|
78332
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
78333
|
+
|
78334
|
+
|
78335
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78336
|
+
Processing by DataController#index as HTML
|
78337
|
+
Parameters: {"search"=>"secondhalf"}
|
78338
|
+
Rendered data/_data.html.erb (4.6ms)
|
78339
|
+
Rendered data/index.html.erb within layouts/application (4.8ms)
|
78340
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
78341
|
+
|
78342
|
+
|
78343
|
+
Started GET "/data?page=1&per_page=10&search=secondhalf&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78344
|
+
Processing by DataController#index as HTML
|
78345
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name", "search"=>"secondhalf"}
|
78346
|
+
Rendered data/_data.html.erb (4.6ms)
|
78347
|
+
Rendered data/index.html.erb within layouts/application (4.8ms)
|
78348
|
+
Completed 200 OK in 6ms (Views: 5.7ms)
|
78349
|
+
|
78350
|
+
|
78351
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78352
|
+
Processing by DataController#index as HTML
|
78353
|
+
Rendered data/_data.html.erb (6.5ms)
|
78354
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78355
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78356
|
+
|
78357
|
+
|
78358
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78359
|
+
Processing by DataController#index as HTML
|
78360
|
+
Rendered data/_data.html.erb (6.0ms)
|
78361
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
78362
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
78363
|
+
|
78364
|
+
|
78365
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78366
|
+
Processing by DataController#index as HTML
|
78367
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78368
|
+
Rendered data/_data.html.erb (5.8ms)
|
78369
|
+
Rendered data/index.html.erb within layouts/application (6.0ms)
|
78370
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
78371
|
+
|
78372
|
+
|
78373
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78374
|
+
Processing by DataController#index as HTML
|
78375
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
78376
|
+
Rendered data/_data.html.erb (6.0ms)
|
78377
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
78378
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
78379
|
+
|
78380
|
+
|
78381
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78382
|
+
Processing by DataController#index as HTML
|
78383
|
+
Rendered data/_data.html.erb (8.3ms)
|
78384
|
+
Rendered data/index.html.erb within layouts/application (8.7ms)
|
78385
|
+
Completed 200 OK in 11ms (Views: 10.1ms)
|
78386
|
+
|
78387
|
+
|
78388
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78389
|
+
Processing by DataController#index as HTML
|
78390
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78391
|
+
Rendered data/_data.html.erb (45.8ms)
|
78392
|
+
Rendered data/index.html.erb within layouts/application (46.1ms)
|
78393
|
+
Completed 200 OK in 48ms (Views: 47.2ms)
|
78394
|
+
|
78395
|
+
|
78396
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78397
|
+
Processing by DataController#index as HTML
|
78398
|
+
Rendered data/_data.html.erb (6.3ms)
|
78399
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78400
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78401
|
+
|
78402
|
+
|
78403
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78404
|
+
Processing by DataController#index as JS
|
78405
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78406
|
+
Rendered data/_data.html.erb (6.2ms)
|
78407
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
78408
|
+
|
78409
|
+
|
78410
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78411
|
+
Processing by DataController#index as HTML
|
78412
|
+
Rendered data/_data.html.erb (6.3ms)
|
78413
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
78414
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
78415
|
+
|
78416
|
+
|
78417
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:05 -0400 2012
|
78418
|
+
Processing by DataController#index as JS
|
78419
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78420
|
+
Rendered data/_data.html.erb (6.5ms)
|
78421
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
78422
|
+
|
78423
|
+
|
78424
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78425
|
+
Processing by DataController#index as JS
|
78426
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78427
|
+
Rendered data/_data.html.erb (6.7ms)
|
78428
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
78429
|
+
|
78430
|
+
|
78431
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78432
|
+
Processing by DataController#index as HTML
|
78433
|
+
Rendered data/_data.html.erb (47.9ms)
|
78434
|
+
Rendered data/index.html.erb within layouts/application (48.2ms)
|
78435
|
+
Completed 200 OK in 50ms (Views: 49.4ms)
|
78436
|
+
|
78437
|
+
|
78438
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78439
|
+
Processing by DataController#index as JS
|
78440
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78441
|
+
Rendered data/_data.html.erb (6.3ms)
|
78442
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
78443
|
+
|
78444
|
+
|
78445
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78446
|
+
Processing by DataController#index as JS
|
78447
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
78448
|
+
Rendered data/_data.html.erb (6.3ms)
|
78449
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
78450
|
+
|
78451
|
+
|
78452
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78453
|
+
Processing by DataController#index as HTML
|
78454
|
+
Rendered data/_data.html.erb (6.2ms)
|
78455
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78456
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78457
|
+
|
78458
|
+
|
78459
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78460
|
+
Processing by DataController#index as HTML
|
78461
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78462
|
+
Rendered data/_data.html.erb (5.8ms)
|
78463
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
78464
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
78465
|
+
|
78466
|
+
|
78467
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78468
|
+
Processing by DataController#index as HTML
|
78469
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
78470
|
+
Rendered data/_data.html.erb (47.4ms)
|
78471
|
+
Rendered data/index.html.erb within layouts/application (47.7ms)
|
78472
|
+
Completed 200 OK in 49ms (Views: 48.7ms)
|
78473
|
+
|
78474
|
+
|
78475
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78476
|
+
Processing by DataController#index as HTML
|
78477
|
+
Rendered data/_data.html.erb (6.1ms)
|
78478
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
78479
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
78480
|
+
|
78481
|
+
|
78482
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78483
|
+
Processing by DataController#index as HTML
|
78484
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78485
|
+
Rendered data/_data.html.erb (5.8ms)
|
78486
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
78487
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
78488
|
+
|
78489
|
+
|
78490
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78491
|
+
Processing by DataController#index as HTML
|
78492
|
+
Rendered data/_data.html.erb (6.5ms)
|
78493
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78494
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78495
|
+
|
78496
|
+
|
78497
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78498
|
+
Processing by DataController#index as HTML
|
78499
|
+
Rendered data/_data.html.erb (6.0ms)
|
78500
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
78501
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
78502
|
+
|
78503
|
+
|
78504
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78505
|
+
Processing by DataController#index as HTML
|
78506
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78507
|
+
Rendered data/_data.html.erb (6.0ms)
|
78508
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
78509
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
78510
|
+
|
78511
|
+
|
78512
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:06 -0400 2012
|
78513
|
+
Processing by DataController#index as HTML
|
78514
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
78515
|
+
Rendered data/_data.html.erb (6.1ms)
|
78516
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
78517
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
78518
|
+
|
78519
|
+
|
78520
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:36 -0400 2012
|
78521
|
+
Processing by DataController#index as HTML
|
78522
|
+
Rendered data/_data.html.erb (66.4ms)
|
78523
|
+
Rendered data/index.html.erb within layouts/application (69.2ms)
|
78524
|
+
Completed 200 OK in 76ms (Views: 75.5ms)
|
78525
|
+
|
78526
|
+
|
78527
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:24:36 -0400 2012
|
78528
|
+
Served asset /application.css - 200 OK (3ms)
|
78529
|
+
|
78530
|
+
|
78531
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:24:36 -0400 2012
|
78532
|
+
Served asset /application.js - 200 OK (7ms)
|
78533
|
+
|
78534
|
+
|
78535
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:36 -0400 2012
|
78536
|
+
Processing by DataController#index as HTML
|
78537
|
+
Rendered data/_data.html.erb (8.0ms)
|
78538
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
78539
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
78540
|
+
|
78541
|
+
|
78542
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:36 -0400 2012
|
78543
|
+
Processing by DataController#index as JS
|
78544
|
+
Parameters: {"sort_column"=>"id", "page"=>"2", "sort_direction"=>"asc", "per_page"=>"10"}
|
78545
|
+
Rendered data/_data.html.erb (7.2ms)
|
78546
|
+
Completed 200 OK in 10ms (Views: 9.4ms)
|
78547
|
+
|
78548
|
+
|
78549
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:36 -0400 2012
|
78550
|
+
Processing by DataController#index as HTML
|
78551
|
+
Rendered data/_data.html.erb (7.0ms)
|
78552
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
78553
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
78554
|
+
|
78555
|
+
|
78556
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78557
|
+
Processing by DataController#index as JS
|
78558
|
+
Parameters: {"sort_column"=>"id", "page"=>"4", "sort_direction"=>"asc", "per_page"=>"10"}
|
78559
|
+
Rendered data/_data.html.erb (7.1ms)
|
78560
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78561
|
+
|
78562
|
+
|
78563
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78564
|
+
Processing by DataController#index as JS
|
78565
|
+
Parameters: {"sort_column"=>"id", "page"=>"3", "sort_direction"=>"asc", "per_page"=>"10"}
|
78566
|
+
Rendered data/_data.html.erb (7.7ms)
|
78567
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
78568
|
+
|
78569
|
+
|
78570
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78571
|
+
Processing by DataController#index as HTML
|
78572
|
+
Rendered data/_data.html.erb (6.5ms)
|
78573
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
78574
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
78575
|
+
|
78576
|
+
|
78577
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78578
|
+
Processing by DataController#index as HTML
|
78579
|
+
Rendered data/_data.html.erb (6.2ms)
|
78580
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78581
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
78582
|
+
|
78583
|
+
|
78584
|
+
Started GET "/data?sort_column=id&page=2&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78585
|
+
Processing by DataController#index as HTML
|
78586
|
+
Parameters: {"sort_column"=>"id", "page"=>"2", "sort_direction"=>"asc", "per_page"=>"10"}
|
78587
|
+
Rendered data/_data.html.erb (7.6ms)
|
78588
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
78589
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
78590
|
+
|
78591
|
+
|
78592
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78593
|
+
Processing by DataController#index as HTML
|
78594
|
+
Rendered data/_data.html.erb (7.5ms)
|
78595
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
78596
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
78597
|
+
|
78598
|
+
|
78599
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78600
|
+
Processing by DataController#index as HTML
|
78601
|
+
Rendered data/_data.html.erb (50.0ms)
|
78602
|
+
Rendered data/index.html.erb within layouts/application (50.3ms)
|
78603
|
+
Completed 200 OK in 52ms (Views: 51.4ms)
|
78604
|
+
|
78605
|
+
|
78606
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78607
|
+
Processing by DataController#index as HTML
|
78608
|
+
Rendered data/_data.html.erb (6.9ms)
|
78609
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
78610
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
78611
|
+
|
78612
|
+
|
78613
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78614
|
+
Processing by DataController#index as HTML
|
78615
|
+
Rendered data/_data.html.erb (7.5ms)
|
78616
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
78617
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
78618
|
+
|
78619
|
+
|
78620
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78621
|
+
Processing by DataController#index as HTML
|
78622
|
+
Rendered data/_data.html.erb (7.7ms)
|
78623
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
78624
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
78625
|
+
|
78626
|
+
|
78627
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78628
|
+
Processing by DataController#index as HTML
|
78629
|
+
Rendered data/_data.html.erb (49.1ms)
|
78630
|
+
Rendered data/index.html.erb within layouts/application (49.4ms)
|
78631
|
+
Completed 200 OK in 51ms (Views: 50.5ms)
|
78632
|
+
|
78633
|
+
|
78634
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78635
|
+
Processing by DataController#index as HTML
|
78636
|
+
Rendered data/_data.html.erb (6.4ms)
|
78637
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78638
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78639
|
+
|
78640
|
+
|
78641
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78642
|
+
Processing by DataController#index as HTML
|
78643
|
+
Rendered data/_data.html.erb (6.2ms)
|
78644
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
78645
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
78646
|
+
|
78647
|
+
|
78648
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78649
|
+
Processing by DataController#index as HTML
|
78650
|
+
Rendered data/_data.html.erb (7.4ms)
|
78651
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
78652
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
78653
|
+
|
78654
|
+
|
78655
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:37 -0400 2012
|
78656
|
+
Processing by DataController#index as JS
|
78657
|
+
Parameters: {"sort_column"=>"id", "page"=>"2", "sort_direction"=>"asc", "per_page"=>"10"}
|
78658
|
+
Rendered data/_data.html.erb (7.2ms)
|
78659
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
78660
|
+
|
78661
|
+
|
78662
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78663
|
+
Processing by DataController#index as HTML
|
78664
|
+
Parameters: {"search"=>"secondhalf"}
|
78665
|
+
Rendered data/_data.html.erb (48.4ms)
|
78666
|
+
Rendered data/index.html.erb within layouts/application (48.7ms)
|
78667
|
+
Completed 200 OK in 50ms (Views: 49.9ms)
|
78668
|
+
|
78669
|
+
|
78670
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78671
|
+
Processing by DataController#index as HTML
|
78672
|
+
Parameters: {"search"=>"secondhalf"}
|
78673
|
+
Rendered data/_data.html.erb (5.2ms)
|
78674
|
+
Rendered data/index.html.erb within layouts/application (5.5ms)
|
78675
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
78676
|
+
|
78677
|
+
|
78678
|
+
Started GET "/data?search=secondhalf&sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78679
|
+
Processing by DataController#index as HTML
|
78680
|
+
Parameters: {"sort_column"=>"name", "search"=>"secondhalf", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78681
|
+
Rendered data/_data.html.erb (5.0ms)
|
78682
|
+
Rendered data/index.html.erb within layouts/application (5.2ms)
|
78683
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
78684
|
+
|
78685
|
+
|
78686
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78687
|
+
Processing by DataController#index as HTML
|
78688
|
+
Parameters: {"search"=>"secondhalf"}
|
78689
|
+
Rendered data/_data.html.erb (6.6ms)
|
78690
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
78691
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
78692
|
+
|
78693
|
+
|
78694
|
+
Started GET "/data?search=secondhalf&sort_column=id&page=2&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78695
|
+
Processing by DataController#index as HTML
|
78696
|
+
Parameters: {"sort_column"=>"id", "search"=>"secondhalf", "page"=>"2", "sort_direction"=>"asc", "per_page"=>"10"}
|
78697
|
+
Rendered data/_data.html.erb (6.1ms)
|
78698
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
78699
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
78700
|
+
|
78701
|
+
|
78702
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78703
|
+
Processing by DataController#index as HTML
|
78704
|
+
Rendered data/_data.html.erb (6.4ms)
|
78705
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78706
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
78707
|
+
|
78708
|
+
|
78709
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78710
|
+
Processing by DataController#index as HTML
|
78711
|
+
Rendered data/_data.html.erb (6.2ms)
|
78712
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78713
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78714
|
+
|
78715
|
+
|
78716
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78717
|
+
Processing by DataController#index as HTML
|
78718
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78719
|
+
Rendered data/_data.html.erb (7.9ms)
|
78720
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
78721
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
78722
|
+
|
78723
|
+
|
78724
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=desc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78725
|
+
Processing by DataController#index as HTML
|
78726
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"desc", "per_page"=>"10"}
|
78727
|
+
Rendered data/_data.html.erb (7.5ms)
|
78728
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
78729
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
78730
|
+
|
78731
|
+
|
78732
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78733
|
+
Processing by DataController#index as HTML
|
78734
|
+
Rendered data/_data.html.erb (49.1ms)
|
78735
|
+
Rendered data/index.html.erb within layouts/application (49.4ms)
|
78736
|
+
Completed 200 OK in 51ms (Views: 50.5ms)
|
78737
|
+
|
78738
|
+
|
78739
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78740
|
+
Processing by DataController#index as HTML
|
78741
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78742
|
+
Rendered data/_data.html.erb (6.4ms)
|
78743
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78744
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78745
|
+
|
78746
|
+
|
78747
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78748
|
+
Processing by DataController#index as HTML
|
78749
|
+
Rendered data/_data.html.erb (7.1ms)
|
78750
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
78751
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
78752
|
+
|
78753
|
+
|
78754
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:39 -0400 2012
|
78755
|
+
Processing by DataController#index as JS
|
78756
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78757
|
+
Rendered data/_data.html.erb (7.0ms)
|
78758
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78759
|
+
|
78760
|
+
|
78761
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78762
|
+
Processing by DataController#index as JS
|
78763
|
+
Parameters: {"sort_column"=>"name", "page"=>"2", "sort_direction"=>"asc", "per_page"=>"10"}
|
78764
|
+
Rendered data/_data.html.erb (7.8ms)
|
78765
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
78766
|
+
|
78767
|
+
|
78768
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78769
|
+
Processing by DataController#index as HTML
|
78770
|
+
Rendered data/_data.html.erb (50.0ms)
|
78771
|
+
Rendered data/index.html.erb within layouts/application (50.3ms)
|
78772
|
+
Completed 200 OK in 52ms (Views: 51.5ms)
|
78773
|
+
|
78774
|
+
|
78775
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78776
|
+
Processing by DataController#index as JS
|
78777
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78778
|
+
Rendered data/_data.html.erb (6.7ms)
|
78779
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
78780
|
+
|
78781
|
+
|
78782
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78783
|
+
Processing by DataController#index as JS
|
78784
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"desc", "per_page"=>"10"}
|
78785
|
+
Rendered data/_data.html.erb (6.8ms)
|
78786
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
78787
|
+
|
78788
|
+
|
78789
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78790
|
+
Processing by DataController#index as HTML
|
78791
|
+
Rendered data/_data.html.erb (7.3ms)
|
78792
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
78793
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
78794
|
+
|
78795
|
+
|
78796
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78797
|
+
Processing by DataController#index as JS
|
78798
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78799
|
+
Rendered data/_data.html.erb (7.5ms)
|
78800
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
78801
|
+
|
78802
|
+
|
78803
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78804
|
+
Processing by DataController#index as HTML
|
78805
|
+
Rendered data/_data.html.erb (6.8ms)
|
78806
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
78807
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
78808
|
+
|
78809
|
+
|
78810
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78811
|
+
Processing by DataController#index as HTML
|
78812
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78813
|
+
Rendered data/_data.html.erb (53.1ms)
|
78814
|
+
Rendered data/index.html.erb within layouts/application (53.4ms)
|
78815
|
+
Completed 200 OK in 55ms (Views: 54.4ms)
|
78816
|
+
|
78817
|
+
|
78818
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78819
|
+
Processing by DataController#index as HTML
|
78820
|
+
Rendered data/_data.html.erb (6.4ms)
|
78821
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
78822
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78823
|
+
|
78824
|
+
|
78825
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78826
|
+
Processing by DataController#index as HTML
|
78827
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78828
|
+
Rendered data/_data.html.erb (6.3ms)
|
78829
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
78830
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78831
|
+
|
78832
|
+
|
78833
|
+
Started GET "/data?sort_column=name&page=2&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78834
|
+
Processing by DataController#index as HTML
|
78835
|
+
Parameters: {"sort_column"=>"name", "page"=>"2", "sort_direction"=>"asc", "per_page"=>"10"}
|
78836
|
+
Rendered data/_data.html.erb (6.9ms)
|
78837
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
78838
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
78839
|
+
|
78840
|
+
|
78841
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78842
|
+
Processing by DataController#index as HTML
|
78843
|
+
Rendered data/_data.html.erb (50.9ms)
|
78844
|
+
Rendered data/index.html.erb within layouts/application (51.4ms)
|
78845
|
+
Completed 200 OK in 54ms (Views: 52.9ms)
|
78846
|
+
|
78847
|
+
|
78848
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=asc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78849
|
+
Processing by DataController#index as HTML
|
78850
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"asc", "per_page"=>"10"}
|
78851
|
+
Rendered data/_data.html.erb (6.6ms)
|
78852
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
78853
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
78854
|
+
|
78855
|
+
|
78856
|
+
Started GET "/data?sort_column=name&page=1&sort_direction=desc&per_page=10" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78857
|
+
Processing by DataController#index as HTML
|
78858
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "sort_direction"=>"desc", "per_page"=>"10"}
|
78859
|
+
Rendered data/_data.html.erb (6.2ms)
|
78860
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
78861
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
78862
|
+
|
78863
|
+
|
78864
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:24:40 -0400 2012
|
78865
|
+
Processing by DataController#index as HTML
|
78866
|
+
Rendered data/_data.html.erb (7.7ms)
|
78867
|
+
Rendered data/index.html.erb within layouts/application (7.9ms)
|
78868
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
78869
|
+
|
78870
|
+
|
78871
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78872
|
+
Processing by DataController#index as HTML
|
78873
|
+
Rendered data/_data.html.erb (63.0ms)
|
78874
|
+
Rendered data/index.html.erb within layouts/application (66.4ms)
|
78875
|
+
Completed 200 OK in 73ms (Views: 72.2ms)
|
78876
|
+
|
78877
|
+
|
78878
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78879
|
+
Served asset /application.css - 200 OK (3ms)
|
78880
|
+
|
78881
|
+
|
78882
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78883
|
+
Served asset /application.js - 200 OK (6ms)
|
78884
|
+
|
78885
|
+
|
78886
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78887
|
+
Processing by DataController#index as HTML
|
78888
|
+
Rendered data/_data.html.erb (7.3ms)
|
78889
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
78890
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
78891
|
+
|
78892
|
+
|
78893
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78894
|
+
Processing by DataController#index as JS
|
78895
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78896
|
+
Rendered data/_data.html.erb (7.3ms)
|
78897
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
78898
|
+
|
78899
|
+
|
78900
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78901
|
+
Processing by DataController#index as HTML
|
78902
|
+
Rendered data/_data.html.erb (6.7ms)
|
78903
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
78904
|
+
Completed 200 OK in 44ms (Views: 8.1ms)
|
78905
|
+
|
78906
|
+
|
78907
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:16 -0400 2012
|
78908
|
+
Processing by DataController#index as JS
|
78909
|
+
Parameters: {"page"=>"4", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78910
|
+
Rendered data/_data.html.erb (7.0ms)
|
78911
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
78912
|
+
|
78913
|
+
|
78914
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78915
|
+
Processing by DataController#index as JS
|
78916
|
+
Parameters: {"page"=>"3", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78917
|
+
Rendered data/_data.html.erb (7.4ms)
|
78918
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
78919
|
+
|
78920
|
+
|
78921
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78922
|
+
Processing by DataController#index as HTML
|
78923
|
+
Rendered data/_data.html.erb (6.4ms)
|
78924
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
78925
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
78926
|
+
|
78927
|
+
|
78928
|
+
Started GET "/data?page=2&per_page=10&sort_direction=asc&sort_column=id" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78929
|
+
Processing by DataController#index as HTML
|
78930
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
78931
|
+
Rendered data/_data.html.erb (6.6ms)
|
78932
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
78933
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
78934
|
+
|
78935
|
+
|
78936
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78937
|
+
Processing by DataController#index as HTML
|
78938
|
+
Rendered data/_data.html.erb (7.3ms)
|
78939
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
78940
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
78941
|
+
|
78942
|
+
|
78943
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78944
|
+
Processing by DataController#index as HTML
|
78945
|
+
Rendered data/_data.html.erb (7.3ms)
|
78946
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
78947
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
78948
|
+
|
78949
|
+
|
78950
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78951
|
+
Processing by DataController#index as HTML
|
78952
|
+
Rendered data/_data.html.erb (51.2ms)
|
78953
|
+
Rendered data/index.html.erb within layouts/application (51.5ms)
|
78954
|
+
Completed 200 OK in 53ms (Views: 52.6ms)
|
78955
|
+
|
78956
|
+
|
78957
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78958
|
+
Processing by DataController#index as HTML
|
78959
|
+
Rendered data/_data.html.erb (6.8ms)
|
78960
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
78961
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
78962
|
+
|
78963
|
+
|
78964
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78965
|
+
Processing by DataController#index as HTML
|
78966
|
+
Rendered data/_data.html.erb (10.1ms)
|
78967
|
+
Rendered data/index.html.erb within layouts/application (10.4ms)
|
78968
|
+
Completed 200 OK in 13ms (Views: 11.7ms)
|
78969
|
+
|
78970
|
+
|
78971
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78972
|
+
Processing by DataController#index as HTML
|
78973
|
+
Rendered data/_data.html.erb (7.7ms)
|
78974
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
78975
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
78976
|
+
|
78977
|
+
|
78978
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78979
|
+
Processing by DataController#index as HTML
|
78980
|
+
Rendered data/_data.html.erb (48.8ms)
|
78981
|
+
Rendered data/index.html.erb within layouts/application (49.1ms)
|
78982
|
+
Completed 200 OK in 51ms (Views: 50.2ms)
|
78983
|
+
|
78984
|
+
|
78985
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78986
|
+
Processing by DataController#index as HTML
|
78987
|
+
Rendered data/_data.html.erb (6.3ms)
|
78988
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
78989
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
78990
|
+
|
78991
|
+
|
78992
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
78993
|
+
Processing by DataController#index as HTML
|
78994
|
+
Rendered data/_data.html.erb (8.9ms)
|
78995
|
+
Rendered data/index.html.erb within layouts/application (9.3ms)
|
78996
|
+
Completed 200 OK in 11ms (Views: 10.6ms)
|
78997
|
+
|
78998
|
+
|
78999
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
79000
|
+
Processing by DataController#index as HTML
|
79001
|
+
Rendered data/_data.html.erb (6.7ms)
|
79002
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
79003
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
79004
|
+
|
79005
|
+
|
79006
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:17 -0400 2012
|
79007
|
+
Processing by DataController#index as JS
|
79008
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
79009
|
+
Rendered data/_data.html.erb (7.4ms)
|
79010
|
+
Completed 200 OK in 9ms (Views: 7.9ms)
|
79011
|
+
|
79012
|
+
|
79013
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79014
|
+
Processing by DataController#index as HTML
|
79015
|
+
Parameters: {"search"=>"secondhalf"}
|
79016
|
+
Rendered data/_data.html.erb (48.9ms)
|
79017
|
+
Rendered data/index.html.erb within layouts/application (49.2ms)
|
79018
|
+
Completed 200 OK in 51ms (Views: 50.3ms)
|
79019
|
+
|
79020
|
+
|
79021
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79022
|
+
Processing by DataController#index as HTML
|
79023
|
+
Parameters: {"search"=>"secondhalf"}
|
79024
|
+
Rendered data/_data.html.erb (5.1ms)
|
79025
|
+
Rendered data/index.html.erb within layouts/application (5.4ms)
|
79026
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
79027
|
+
|
79028
|
+
|
79029
|
+
Started GET "/data?page=1&per_page=10&search=secondhalf&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79030
|
+
Processing by DataController#index as HTML
|
79031
|
+
Parameters: {"page"=>"1", "search"=>"secondhalf", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79032
|
+
Rendered data/_data.html.erb (4.8ms)
|
79033
|
+
Rendered data/index.html.erb within layouts/application (5.1ms)
|
79034
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
79035
|
+
|
79036
|
+
|
79037
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79038
|
+
Processing by DataController#index as HTML
|
79039
|
+
Parameters: {"search"=>"secondhalf"}
|
79040
|
+
Rendered data/_data.html.erb (8.4ms)
|
79041
|
+
Rendered data/index.html.erb within layouts/application (8.7ms)
|
79042
|
+
Completed 200 OK in 11ms (Views: 10.4ms)
|
79043
|
+
|
79044
|
+
|
79045
|
+
Started GET "/data?page=2&per_page=10&search=secondhalf&sort_direction=asc&sort_column=id" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79046
|
+
Processing by DataController#index as HTML
|
79047
|
+
Parameters: {"page"=>"2", "search"=>"secondhalf", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
79048
|
+
Rendered data/_data.html.erb (5.6ms)
|
79049
|
+
Rendered data/index.html.erb within layouts/application (5.8ms)
|
79050
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
79051
|
+
|
79052
|
+
|
79053
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79054
|
+
Processing by DataController#index as HTML
|
79055
|
+
Rendered data/_data.html.erb (6.5ms)
|
79056
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
79057
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
79058
|
+
|
79059
|
+
|
79060
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79061
|
+
Processing by DataController#index as HTML
|
79062
|
+
Rendered data/_data.html.erb (6.5ms)
|
79063
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
79064
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
79065
|
+
|
79066
|
+
|
79067
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79068
|
+
Processing by DataController#index as HTML
|
79069
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79070
|
+
Rendered data/_data.html.erb (6.6ms)
|
79071
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
79072
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
79073
|
+
|
79074
|
+
|
79075
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79076
|
+
Processing by DataController#index as HTML
|
79077
|
+
Rendered data/_data.html.erb (6.2ms)
|
79078
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
79079
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
79080
|
+
|
79081
|
+
|
79082
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79083
|
+
Processing by DataController#index as HTML
|
79084
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79085
|
+
Rendered data/_data.html.erb (49.6ms)
|
79086
|
+
Rendered data/index.html.erb within layouts/application (49.9ms)
|
79087
|
+
Completed 200 OK in 51ms (Views: 50.9ms)
|
79088
|
+
|
79089
|
+
|
79090
|
+
Started GET "/data?page=1&per_page=10&sort_direction=desc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79091
|
+
Processing by DataController#index as HTML
|
79092
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
79093
|
+
Rendered data/_data.html.erb (6.3ms)
|
79094
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
79095
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
79096
|
+
|
79097
|
+
|
79098
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79099
|
+
Processing by DataController#index as HTML
|
79100
|
+
Rendered data/_data.html.erb (6.5ms)
|
79101
|
+
Rendered data/index.html.erb within layouts/application (6.8ms)
|
79102
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
79103
|
+
|
79104
|
+
|
79105
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79106
|
+
Processing by DataController#index as JS
|
79107
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79108
|
+
Rendered data/_data.html.erb (7.3ms)
|
79109
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
79110
|
+
|
79111
|
+
|
79112
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Fri May 04 11:27:19 -0400 2012
|
79113
|
+
Processing by DataController#index as JS
|
79114
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
79115
|
+
Rendered data/_data.html.erb (6.6ms)
|
79116
|
+
Completed 200 OK in 8ms (Views: 7.1ms)
|
79117
|
+
|
79118
|
+
|
79119
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79120
|
+
Processing by DataController#index as HTML
|
79121
|
+
Rendered data/_data.html.erb (49.4ms)
|
79122
|
+
Rendered data/index.html.erb within layouts/application (49.7ms)
|
79123
|
+
Completed 200 OK in 51ms (Views: 50.9ms)
|
79124
|
+
|
79125
|
+
|
79126
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79127
|
+
Processing by DataController#index as JS
|
79128
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79129
|
+
Rendered data/_data.html.erb (6.5ms)
|
79130
|
+
Completed 200 OK in 8ms (Views: 7.0ms)
|
79131
|
+
|
79132
|
+
|
79133
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79134
|
+
Processing by DataController#index as JS
|
79135
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79136
|
+
Rendered data/_data.html.erb (6.8ms)
|
79137
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
79138
|
+
|
79139
|
+
|
79140
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79141
|
+
Processing by DataController#index as HTML
|
79142
|
+
Rendered data/_data.html.erb (7.0ms)
|
79143
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
79144
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
79145
|
+
|
79146
|
+
|
79147
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79148
|
+
Processing by DataController#index as JS
|
79149
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79150
|
+
Rendered data/_data.html.erb (6.8ms)
|
79151
|
+
Completed 200 OK in 8ms (Views: 7.3ms)
|
79152
|
+
|
79153
|
+
|
79154
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79155
|
+
Processing by DataController#index as HTML
|
79156
|
+
Rendered data/_data.html.erb (6.2ms)
|
79157
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
79158
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
79159
|
+
|
79160
|
+
|
79161
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79162
|
+
Processing by DataController#index as HTML
|
79163
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79164
|
+
Rendered data/_data.html.erb (48.5ms)
|
79165
|
+
Rendered data/index.html.erb within layouts/application (49.2ms)
|
79166
|
+
Completed 200 OK in 51ms (Views: 50.2ms)
|
79167
|
+
|
79168
|
+
|
79169
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79170
|
+
Processing by DataController#index as HTML
|
79171
|
+
Rendered data/_data.html.erb (6.4ms)
|
79172
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
79173
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
79174
|
+
|
79175
|
+
|
79176
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79177
|
+
Processing by DataController#index as HTML
|
79178
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79179
|
+
Rendered data/_data.html.erb (6.1ms)
|
79180
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
79181
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
79182
|
+
|
79183
|
+
|
79184
|
+
Started GET "/data?page=1&per_page=10&sort_direction=desc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79185
|
+
Processing by DataController#index as HTML
|
79186
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
79187
|
+
Rendered data/_data.html.erb (6.5ms)
|
79188
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
79189
|
+
Completed 200 OK in 8ms (Views: 8.1ms)
|
79190
|
+
|
79191
|
+
|
79192
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79193
|
+
Processing by DataController#index as HTML
|
79194
|
+
Rendered data/_data.html.erb (48.9ms)
|
79195
|
+
Rendered data/index.html.erb within layouts/application (49.2ms)
|
79196
|
+
Completed 200 OK in 51ms (Views: 50.3ms)
|
79197
|
+
|
79198
|
+
|
79199
|
+
Started GET "/data" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79200
|
+
Processing by DataController#index as HTML
|
79201
|
+
Rendered data/_data.html.erb (6.4ms)
|
79202
|
+
Rendered data/index.html.erb within layouts/application (6.7ms)
|
79203
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
79204
|
+
|
79205
|
+
|
79206
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79207
|
+
Processing by DataController#index as HTML
|
79208
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79209
|
+
Rendered data/_data.html.erb (6.7ms)
|
79210
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
79211
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
79212
|
+
|
79213
|
+
|
79214
|
+
Started GET "/data?page=2&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Fri May 04 11:27:20 -0400 2012
|
79215
|
+
Processing by DataController#index as HTML
|
79216
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
79217
|
+
Rendered data/_data.html.erb (7.8ms)
|
79218
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
79219
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|