paginated_table 0.0.8 → 0.0.9
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/table_description.rb +6 -1
- data/lib/paginated_table/table_renderer.rb +2 -1
- data/lib/paginated_table/version.rb +1 -1
- data/lib/paginated_table/view_helpers.rb +2 -2
- data/test/dummy/app/views/data/_complex.html.erb +1 -1
- data/test/dummy/log/test.log +1432 -0
- data/test/units/table_description_test.rb +12 -4
- data/test/units/table_renderer_test.rb +4 -1
- data/test/units/view_helpers_test.rb +4 -2
- metadata +4 -4
@@ -2,7 +2,8 @@ module PaginatedTable
|
|
2
2
|
class TableDescription
|
3
3
|
attr_reader :columns, :rows
|
4
4
|
|
5
|
-
def initialize(description_proc = nil)
|
5
|
+
def initialize(options = {}, description_proc = nil)
|
6
|
+
@options = options
|
6
7
|
@columns = []
|
7
8
|
@rows = []
|
8
9
|
description_proc.call(self) if description_proc
|
@@ -23,6 +24,10 @@ module PaginatedTable
|
|
23
24
|
rows.map { |row| row.columns.length }.max.to_s
|
24
25
|
end
|
25
26
|
|
27
|
+
def model_label
|
28
|
+
@options.fetch(:model_label, false)
|
29
|
+
end
|
30
|
+
|
26
31
|
private
|
27
32
|
|
28
33
|
def default_row
|
@@ -19,7 +19,8 @@ module PaginatedTable
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def render_pagination_info
|
22
|
-
|
22
|
+
options = { :model => @description.model_label }
|
23
|
+
content = @view.page_entries_info(@data_page.data, options)
|
23
24
|
@view.content_tag('div', content, :class => 'info')
|
24
25
|
end
|
25
26
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module PaginatedTable
|
2
2
|
module ViewHelpers
|
3
|
-
def paginated_table(data_page, &block)
|
4
|
-
table_description = TableDescription.new(block)
|
3
|
+
def paginated_table(data_page, options = {}, &block)
|
4
|
+
table_description = TableDescription.new(options, block)
|
5
5
|
link_renderer = LinkRenderer.new(data_page.page)
|
6
6
|
table_renderer = TableRenderer.new(self, table_description, data_page, link_renderer)
|
7
7
|
table_renderer.render
|
data/test/dummy/log/test.log
CHANGED
@@ -99724,3 +99724,1435 @@ Processing by DataController#index as HTML
|
|
99724
99724
|
Rendered data/_data.html.erb (7.1ms)
|
99725
99725
|
Rendered data/index.html.erb within layouts/application (7.5ms)
|
99726
99726
|
Completed 200 OK in 9ms (Views: 8.6ms)
|
99727
|
+
|
99728
|
+
|
99729
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99730
|
+
Processing by DataController#index as HTML
|
99731
|
+
Rendered data/_data.html.erb (17.7ms)
|
99732
|
+
Rendered data/index.html.erb within layouts/application (21.3ms)
|
99733
|
+
Completed 200 OK in 28ms (Views: 27.4ms)
|
99734
|
+
|
99735
|
+
|
99736
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99737
|
+
Served asset /application.css - 200 OK (4ms)
|
99738
|
+
|
99739
|
+
|
99740
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99741
|
+
Served asset /application.js - 200 OK (30ms)
|
99742
|
+
|
99743
|
+
|
99744
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99745
|
+
Processing by DataController#index as JS
|
99746
|
+
Parameters: {"sort_column"=>"id", "page"=>"2", "per_page"=>"10", "sort_direction"=>"asc"}
|
99747
|
+
Rendered data/_data.html.erb (7.8ms)
|
99748
|
+
Completed 200 OK in 11ms (Views: 10.8ms)
|
99749
|
+
|
99750
|
+
|
99751
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99752
|
+
Processing by DataController#index as HTML
|
99753
|
+
Rendered data/_data.html.erb (9.1ms)
|
99754
|
+
Rendered data/index.html.erb within layouts/application (9.5ms)
|
99755
|
+
Completed 200 OK in 11ms (Views: 10.6ms)
|
99756
|
+
|
99757
|
+
|
99758
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99759
|
+
Processing by DataController#index as HTML
|
99760
|
+
Rendered data/_data.html.erb (8.3ms)
|
99761
|
+
Rendered data/index.html.erb within layouts/application (8.6ms)
|
99762
|
+
Completed 200 OK in 11ms (Views: 10.0ms)
|
99763
|
+
|
99764
|
+
|
99765
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99766
|
+
Processing by DataController#index as JS
|
99767
|
+
Parameters: {"sort_column"=>"id", "page"=>"4", "per_page"=>"10", "sort_direction"=>"asc"}
|
99768
|
+
Rendered data/_data.html.erb (8.0ms)
|
99769
|
+
Completed 200 OK in 47ms (Views: 8.5ms)
|
99770
|
+
|
99771
|
+
|
99772
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99773
|
+
Processing by DataController#index as JS
|
99774
|
+
Parameters: {"sort_column"=>"id", "page"=>"3", "per_page"=>"10", "sort_direction"=>"asc"}
|
99775
|
+
Rendered data/_data.html.erb (7.8ms)
|
99776
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
99777
|
+
|
99778
|
+
|
99779
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99780
|
+
Processing by DataController#index as HTML
|
99781
|
+
Rendered data/_data.html.erb (51.9ms)
|
99782
|
+
Rendered data/index.html.erb within layouts/application (52.2ms)
|
99783
|
+
Completed 200 OK in 54ms (Views: 53.3ms)
|
99784
|
+
|
99785
|
+
|
99786
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99787
|
+
Processing by DataController#index as HTML
|
99788
|
+
Rendered data/_data.html.erb (7.1ms)
|
99789
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
99790
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
99791
|
+
|
99792
|
+
|
99793
|
+
Started GET "/data?page=2&sort_column=id&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99794
|
+
Processing by DataController#index as HTML
|
99795
|
+
Parameters: {"sort_column"=>"id", "page"=>"2", "per_page"=>"10", "sort_direction"=>"asc"}
|
99796
|
+
Rendered data/_data.html.erb (9.4ms)
|
99797
|
+
Rendered data/index.html.erb within layouts/application (9.7ms)
|
99798
|
+
Completed 200 OK in 11ms (Views: 10.8ms)
|
99799
|
+
|
99800
|
+
|
99801
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99802
|
+
Processing by DataController#index as HTML
|
99803
|
+
Rendered data/_data.html.erb (8.7ms)
|
99804
|
+
Rendered data/index.html.erb within layouts/application (9.2ms)
|
99805
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
99806
|
+
|
99807
|
+
|
99808
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99809
|
+
Processing by DataController#index as HTML
|
99810
|
+
Rendered data/_data.html.erb (50.5ms)
|
99811
|
+
Rendered data/index.html.erb within layouts/application (50.8ms)
|
99812
|
+
Completed 200 OK in 52ms (Views: 51.9ms)
|
99813
|
+
|
99814
|
+
|
99815
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99816
|
+
Processing by DataController#index as HTML
|
99817
|
+
Rendered data/_data.html.erb (7.7ms)
|
99818
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
99819
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
99820
|
+
|
99821
|
+
|
99822
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99823
|
+
Processing by DataController#index as HTML
|
99824
|
+
Rendered data/_data.html.erb (8.9ms)
|
99825
|
+
Rendered data/index.html.erb within layouts/application (9.2ms)
|
99826
|
+
Completed 200 OK in 11ms (Views: 10.2ms)
|
99827
|
+
|
99828
|
+
|
99829
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99830
|
+
Processing by DataController#index as HTML
|
99831
|
+
Rendered data/_data.html.erb (52.8ms)
|
99832
|
+
Rendered data/index.html.erb within layouts/application (53.1ms)
|
99833
|
+
Completed 200 OK in 55ms (Views: 54.2ms)
|
99834
|
+
|
99835
|
+
|
99836
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99837
|
+
Processing by DataController#index as HTML
|
99838
|
+
Rendered data/_data.html.erb (7.1ms)
|
99839
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
99840
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
99841
|
+
|
99842
|
+
|
99843
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99844
|
+
Processing by DataController#index as HTML
|
99845
|
+
Rendered data/_data.html.erb (8.5ms)
|
99846
|
+
Rendered data/index.html.erb within layouts/application (8.8ms)
|
99847
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
99848
|
+
|
99849
|
+
|
99850
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:08 -0400 2012
|
99851
|
+
Processing by DataController#index as HTML
|
99852
|
+
Rendered data/_data.html.erb (8.5ms)
|
99853
|
+
Rendered data/index.html.erb within layouts/application (8.7ms)
|
99854
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
99855
|
+
|
99856
|
+
|
99857
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:09 -0400 2012
|
99858
|
+
Processing by DataController#index as HTML
|
99859
|
+
Rendered data/_data.html.erb (7.3ms)
|
99860
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
99861
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
99862
|
+
|
99863
|
+
|
99864
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:09 -0400 2012
|
99865
|
+
Processing by DataController#index as HTML
|
99866
|
+
Rendered data/_data.html.erb (9.5ms)
|
99867
|
+
Rendered data/index.html.erb within layouts/application (9.8ms)
|
99868
|
+
Completed 200 OK in 11ms (Views: 10.9ms)
|
99869
|
+
|
99870
|
+
|
99871
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:09 -0400 2012
|
99872
|
+
Processing by DataController#index as JS
|
99873
|
+
Parameters: {"sort_column"=>"id", "page"=>"2", "per_page"=>"10", "sort_direction"=>"asc"}
|
99874
|
+
Rendered data/_data.html.erb (8.5ms)
|
99875
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
99876
|
+
|
99877
|
+
|
99878
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99879
|
+
Processing by DataController#index as HTML
|
99880
|
+
Parameters: {"search"=>"secondhalf"}
|
99881
|
+
Rendered data/_data.html.erb (47.5ms)
|
99882
|
+
Rendered data/index.html.erb within layouts/application (47.8ms)
|
99883
|
+
Completed 200 OK in 49ms (Views: 49.0ms)
|
99884
|
+
|
99885
|
+
|
99886
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99887
|
+
Processing by DataController#index as HTML
|
99888
|
+
Parameters: {"search"=>"secondhalf"}
|
99889
|
+
Rendered data/_data.html.erb (6.3ms)
|
99890
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
99891
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
99892
|
+
|
99893
|
+
|
99894
|
+
Started GET "/data?page=2&search=secondhalf&sort_column=id&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99895
|
+
Processing by DataController#index as HTML
|
99896
|
+
Parameters: {"sort_column"=>"id", "search"=>"secondhalf", "page"=>"2", "per_page"=>"10", "sort_direction"=>"asc"}
|
99897
|
+
Rendered data/_data.html.erb (6.2ms)
|
99898
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
99899
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
99900
|
+
|
99901
|
+
|
99902
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99903
|
+
Processing by DataController#index as HTML
|
99904
|
+
Parameters: {"search"=>"secondhalf"}
|
99905
|
+
Rendered data/_data.html.erb (5.9ms)
|
99906
|
+
Rendered data/index.html.erb within layouts/application (6.2ms)
|
99907
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
99908
|
+
|
99909
|
+
|
99910
|
+
Started GET "/data?page=1&search=secondhalf&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99911
|
+
Processing by DataController#index as HTML
|
99912
|
+
Parameters: {"sort_column"=>"name", "search"=>"secondhalf", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
99913
|
+
Rendered data/_data.html.erb (48.8ms)
|
99914
|
+
Rendered data/index.html.erb within layouts/application (49.2ms)
|
99915
|
+
Completed 200 OK in 51ms (Views: 50.7ms)
|
99916
|
+
|
99917
|
+
|
99918
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99919
|
+
Processing by DataController#index as HTML
|
99920
|
+
Rendered data/_data.html.erb (7.2ms)
|
99921
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
99922
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
99923
|
+
|
99924
|
+
|
99925
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99926
|
+
Processing by DataController#index as HTML
|
99927
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
99928
|
+
Rendered data/_data.html.erb (8.0ms)
|
99929
|
+
Rendered data/index.html.erb within layouts/application (8.3ms)
|
99930
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
99931
|
+
|
99932
|
+
|
99933
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=desc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99934
|
+
Processing by DataController#index as HTML
|
99935
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"desc"}
|
99936
|
+
Rendered data/_data.html.erb (48.5ms)
|
99937
|
+
Rendered data/index.html.erb within layouts/application (48.8ms)
|
99938
|
+
Completed 200 OK in 50ms (Views: 49.9ms)
|
99939
|
+
|
99940
|
+
|
99941
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99942
|
+
Processing by DataController#index as HTML
|
99943
|
+
Rendered data/_data.html.erb (7.3ms)
|
99944
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
99945
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
99946
|
+
|
99947
|
+
|
99948
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99949
|
+
Processing by DataController#index as HTML
|
99950
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
99951
|
+
Rendered data/_data.html.erb (8.2ms)
|
99952
|
+
Rendered data/index.html.erb within layouts/application (8.5ms)
|
99953
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
99954
|
+
|
99955
|
+
|
99956
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99957
|
+
Processing by DataController#index as HTML
|
99958
|
+
Rendered data/_data.html.erb (8.0ms)
|
99959
|
+
Rendered data/index.html.erb within layouts/application (8.4ms)
|
99960
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
99961
|
+
|
99962
|
+
|
99963
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99964
|
+
Processing by DataController#index as HTML
|
99965
|
+
Rendered data/_data.html.erb (8.0ms)
|
99966
|
+
Rendered data/index.html.erb within layouts/application (8.3ms)
|
99967
|
+
Completed 200 OK in 10ms (Views: 9.4ms)
|
99968
|
+
|
99969
|
+
|
99970
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99971
|
+
Processing by DataController#index as JS
|
99972
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
99973
|
+
Rendered data/_data.html.erb (7.4ms)
|
99974
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
99975
|
+
|
99976
|
+
|
99977
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99978
|
+
Processing by DataController#index as JS
|
99979
|
+
Parameters: {"sort_column"=>"name", "page"=>"2", "per_page"=>"10", "sort_direction"=>"asc"}
|
99980
|
+
Rendered data/_data.html.erb (8.1ms)
|
99981
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
99982
|
+
|
99983
|
+
|
99984
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99985
|
+
Processing by DataController#index as HTML
|
99986
|
+
Rendered data/_data.html.erb (9.5ms)
|
99987
|
+
Rendered data/index.html.erb within layouts/application (9.8ms)
|
99988
|
+
Completed 200 OK in 11ms (Views: 10.9ms)
|
99989
|
+
|
99990
|
+
|
99991
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99992
|
+
Processing by DataController#index as JS
|
99993
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
99994
|
+
Rendered data/_data.html.erb (7.7ms)
|
99995
|
+
Completed 200 OK in 52ms (Views: 51.7ms)
|
99996
|
+
|
99997
|
+
|
99998
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
99999
|
+
Processing by DataController#index as HTML
|
100000
|
+
Rendered data/_data.html.erb (7.8ms)
|
100001
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100002
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100003
|
+
|
100004
|
+
|
100005
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
100006
|
+
Processing by DataController#index as JS
|
100007
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
100008
|
+
Rendered data/_data.html.erb (8.2ms)
|
100009
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100010
|
+
|
100011
|
+
|
100012
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
100013
|
+
Processing by DataController#index as JS
|
100014
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"desc"}
|
100015
|
+
Rendered data/_data.html.erb (8.3ms)
|
100016
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100017
|
+
|
100018
|
+
|
100019
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
100020
|
+
Processing by DataController#index as HTML
|
100021
|
+
Rendered data/_data.html.erb (50.6ms)
|
100022
|
+
Rendered data/index.html.erb within layouts/application (50.9ms)
|
100023
|
+
Completed 200 OK in 52ms (Views: 52.0ms)
|
100024
|
+
|
100025
|
+
|
100026
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:11 -0400 2012
|
100027
|
+
Processing by DataController#index as HTML
|
100028
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
100029
|
+
Rendered data/_data.html.erb (7.2ms)
|
100030
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
100031
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100032
|
+
|
100033
|
+
|
100034
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100035
|
+
Processing by DataController#index as HTML
|
100036
|
+
Rendered data/_data.html.erb (8.4ms)
|
100037
|
+
Rendered data/index.html.erb within layouts/application (8.7ms)
|
100038
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
100039
|
+
|
100040
|
+
|
100041
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100042
|
+
Processing by DataController#index as HTML
|
100043
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
100044
|
+
Rendered data/_data.html.erb (47.4ms)
|
100045
|
+
Rendered data/index.html.erb within layouts/application (47.6ms)
|
100046
|
+
Completed 200 OK in 50ms (Views: 49.3ms)
|
100047
|
+
|
100048
|
+
|
100049
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=desc" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100050
|
+
Processing by DataController#index as HTML
|
100051
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"desc"}
|
100052
|
+
Rendered data/_data.html.erb (7.4ms)
|
100053
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
100054
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100055
|
+
|
100056
|
+
|
100057
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100058
|
+
Processing by DataController#index as HTML
|
100059
|
+
Rendered data/_data.html.erb (8.2ms)
|
100060
|
+
Rendered data/index.html.erb within layouts/application (8.4ms)
|
100061
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
100062
|
+
|
100063
|
+
|
100064
|
+
Started GET "/data?page=1&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100065
|
+
Processing by DataController#index as HTML
|
100066
|
+
Parameters: {"sort_column"=>"name", "page"=>"1", "per_page"=>"10", "sort_direction"=>"asc"}
|
100067
|
+
Rendered data/_data.html.erb (7.4ms)
|
100068
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100069
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100070
|
+
|
100071
|
+
|
100072
|
+
Started GET "/data?page=2&sort_column=name&per_page=10&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100073
|
+
Processing by DataController#index as HTML
|
100074
|
+
Parameters: {"sort_column"=>"name", "page"=>"2", "per_page"=>"10", "sort_direction"=>"asc"}
|
100075
|
+
Rendered data/_data.html.erb (7.9ms)
|
100076
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
100077
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
100078
|
+
|
100079
|
+
|
100080
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:08:12 -0400 2012
|
100081
|
+
Processing by DataController#index as HTML
|
100082
|
+
Rendered data/_data.html.erb (7.3ms)
|
100083
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100084
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100085
|
+
|
100086
|
+
|
100087
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:58 -0400 2012
|
100088
|
+
Processing by DataController#index as HTML
|
100089
|
+
Rendered data/_data.html.erb (16.2ms)
|
100090
|
+
Rendered data/index.html.erb within layouts/application (18.8ms)
|
100091
|
+
Completed 200 OK in 25ms (Views: 24.8ms)
|
100092
|
+
|
100093
|
+
|
100094
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Wed May 16 15:13:58 -0400 2012
|
100095
|
+
Served asset /application.css - 200 OK (4ms)
|
100096
|
+
|
100097
|
+
|
100098
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Wed May 16 15:13:58 -0400 2012
|
100099
|
+
Served asset /application.js - 200 OK (7ms)
|
100100
|
+
|
100101
|
+
|
100102
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100103
|
+
Processing by DataController#index as JS
|
100104
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
100105
|
+
Rendered data/_data.html.erb (7.7ms)
|
100106
|
+
Completed 200 OK in 11ms (Views: 10.5ms)
|
100107
|
+
|
100108
|
+
|
100109
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100110
|
+
Processing by DataController#index as HTML
|
100111
|
+
Rendered data/_data.html.erb (8.8ms)
|
100112
|
+
Rendered data/index.html.erb within layouts/application (9.1ms)
|
100113
|
+
Completed 200 OK in 11ms (Views: 10.2ms)
|
100114
|
+
|
100115
|
+
|
100116
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100117
|
+
Processing by DataController#index as JS
|
100118
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"4", "per_page"=>"10", "sort_column"=>"id"}
|
100119
|
+
Rendered data/_data.html.erb (9.5ms)
|
100120
|
+
Completed 200 OK in 11ms (Views: 10.1ms)
|
100121
|
+
|
100122
|
+
|
100123
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100124
|
+
Processing by DataController#index as JS
|
100125
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"3", "per_page"=>"10", "sort_column"=>"id"}
|
100126
|
+
Rendered data/_data.html.erb (7.7ms)
|
100127
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100128
|
+
|
100129
|
+
|
100130
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100131
|
+
Processing by DataController#index as HTML
|
100132
|
+
Rendered data/_data.html.erb (46.5ms)
|
100133
|
+
Rendered data/index.html.erb within layouts/application (46.8ms)
|
100134
|
+
Completed 200 OK in 48ms (Views: 48.0ms)
|
100135
|
+
|
100136
|
+
|
100137
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100138
|
+
Processing by DataController#index as HTML
|
100139
|
+
Rendered data/_data.html.erb (52.8ms)
|
100140
|
+
Rendered data/index.html.erb within layouts/application (53.1ms)
|
100141
|
+
Completed 200 OK in 55ms (Views: 54.2ms)
|
100142
|
+
|
100143
|
+
|
100144
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100145
|
+
Processing by DataController#index as HTML
|
100146
|
+
Rendered data/_data.html.erb (7.8ms)
|
100147
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100148
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100149
|
+
|
100150
|
+
|
100151
|
+
Started GET "/data?page=2&sort_direction=asc&per_page=10&sort_column=id" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100152
|
+
Processing by DataController#index as HTML
|
100153
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
100154
|
+
Rendered data/_data.html.erb (9.9ms)
|
100155
|
+
Rendered data/index.html.erb within layouts/application (10.1ms)
|
100156
|
+
Completed 200 OK in 13ms (Views: 12.4ms)
|
100157
|
+
|
100158
|
+
|
100159
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100160
|
+
Processing by DataController#index as HTML
|
100161
|
+
Rendered data/_data.html.erb (7.5ms)
|
100162
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
100163
|
+
Completed 200 OK in 10ms (Views: 9.4ms)
|
100164
|
+
|
100165
|
+
|
100166
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100167
|
+
Processing by DataController#index as HTML
|
100168
|
+
Rendered data/_data.html.erb (7.2ms)
|
100169
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100170
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100171
|
+
|
100172
|
+
|
100173
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100174
|
+
Processing by DataController#index as HTML
|
100175
|
+
Rendered data/_data.html.erb (7.6ms)
|
100176
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
100177
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
100178
|
+
|
100179
|
+
|
100180
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100181
|
+
Processing by DataController#index as HTML
|
100182
|
+
Rendered data/_data.html.erb (7.5ms)
|
100183
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
100184
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100185
|
+
|
100186
|
+
|
100187
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100188
|
+
Processing by DataController#index as HTML
|
100189
|
+
Rendered data/_data.html.erb (49.0ms)
|
100190
|
+
Rendered data/index.html.erb within layouts/application (49.3ms)
|
100191
|
+
Completed 200 OK in 51ms (Views: 50.3ms)
|
100192
|
+
|
100193
|
+
|
100194
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100195
|
+
Processing by DataController#index as HTML
|
100196
|
+
Rendered data/_data.html.erb (7.1ms)
|
100197
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
100198
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100199
|
+
|
100200
|
+
|
100201
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100202
|
+
Processing by DataController#index as HTML
|
100203
|
+
Rendered data/_data.html.erb (7.3ms)
|
100204
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100205
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100206
|
+
|
100207
|
+
|
100208
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100209
|
+
Processing by DataController#index as HTML
|
100210
|
+
Rendered data/_data.html.erb (7.9ms)
|
100211
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100212
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100213
|
+
|
100214
|
+
|
100215
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100216
|
+
Processing by DataController#index as HTML
|
100217
|
+
Rendered data/_data.html.erb (7.1ms)
|
100218
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
100219
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100220
|
+
|
100221
|
+
|
100222
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100223
|
+
Processing by DataController#index as HTML
|
100224
|
+
Rendered data/_data.html.erb (8.0ms)
|
100225
|
+
Rendered data/index.html.erb within layouts/application (8.3ms)
|
100226
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
100227
|
+
|
100228
|
+
|
100229
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:13:59 -0400 2012
|
100230
|
+
Processing by DataController#index as JS
|
100231
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id"}
|
100232
|
+
Rendered data/_data.html.erb (9.1ms)
|
100233
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
100234
|
+
|
100235
|
+
|
100236
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:14:01 -0400 2012
|
100237
|
+
Processing by DataController#index as HTML
|
100238
|
+
Parameters: {"search"=>"secondhalf"}
|
100239
|
+
Rendered data/_data.html.erb (47.7ms)
|
100240
|
+
Rendered data/index.html.erb within layouts/application (48.1ms)
|
100241
|
+
Completed 200 OK in 50ms (Views: 49.1ms)
|
100242
|
+
|
100243
|
+
|
100244
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:14:01 -0400 2012
|
100245
|
+
Processing by DataController#index as HTML
|
100246
|
+
Parameters: {"search"=>"secondhalf"}
|
100247
|
+
Rendered data/_data.html.erb (6.3ms)
|
100248
|
+
Rendered data/index.html.erb within layouts/application (6.6ms)
|
100249
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
100250
|
+
|
100251
|
+
|
100252
|
+
Started GET "/data?page=2&sort_direction=asc&per_page=10&search=secondhalf&sort_column=id" for 127.0.0.1 at Wed May 16 15:14:01 -0400 2012
|
100253
|
+
Processing by DataController#index as HTML
|
100254
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"id", "search"=>"secondhalf"}
|
100255
|
+
Rendered data/_data.html.erb (6.2ms)
|
100256
|
+
Rendered data/index.html.erb within layouts/application (6.4ms)
|
100257
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
100258
|
+
|
100259
|
+
|
100260
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:14:01 -0400 2012
|
100261
|
+
Processing by DataController#index as HTML
|
100262
|
+
Parameters: {"search"=>"secondhalf"}
|
100263
|
+
Rendered data/_data.html.erb (7.7ms)
|
100264
|
+
Rendered data/index.html.erb within layouts/application (7.9ms)
|
100265
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
100266
|
+
|
100267
|
+
|
100268
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&search=secondhalf&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:01 -0400 2012
|
100269
|
+
Processing by DataController#index as HTML
|
100270
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name", "search"=>"secondhalf"}
|
100271
|
+
Rendered data/_data.html.erb (6.2ms)
|
100272
|
+
Rendered data/index.html.erb within layouts/application (46.3ms)
|
100273
|
+
Completed 200 OK in 48ms (Views: 47.4ms)
|
100274
|
+
|
100275
|
+
|
100276
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100277
|
+
Processing by DataController#index as HTML
|
100278
|
+
Rendered data/_data.html.erb (6.8ms)
|
100279
|
+
Rendered data/index.html.erb within layouts/application (7.1ms)
|
100280
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100281
|
+
|
100282
|
+
|
100283
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100284
|
+
Processing by DataController#index as HTML
|
100285
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100286
|
+
Rendered data/_data.html.erb (7.4ms)
|
100287
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100288
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100289
|
+
|
100290
|
+
|
100291
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100292
|
+
Processing by DataController#index as HTML
|
100293
|
+
Rendered data/_data.html.erb (48.5ms)
|
100294
|
+
Rendered data/index.html.erb within layouts/application (48.8ms)
|
100295
|
+
Completed 200 OK in 50ms (Views: 49.9ms)
|
100296
|
+
|
100297
|
+
|
100298
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100299
|
+
Processing by DataController#index as HTML
|
100300
|
+
Rendered data/_data.html.erb (7.0ms)
|
100301
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
100302
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
100303
|
+
|
100304
|
+
|
100305
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100306
|
+
Processing by DataController#index as HTML
|
100307
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100308
|
+
Rendered data/_data.html.erb (7.1ms)
|
100309
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
100310
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100311
|
+
|
100312
|
+
|
100313
|
+
Started GET "/data?page=1&sort_direction=desc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100314
|
+
Processing by DataController#index as HTML
|
100315
|
+
Parameters: {"sort_direction"=>"desc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100316
|
+
Rendered data/_data.html.erb (8.4ms)
|
100317
|
+
Rendered data/index.html.erb within layouts/application (8.6ms)
|
100318
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
100319
|
+
|
100320
|
+
|
100321
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100322
|
+
Processing by DataController#index as HTML
|
100323
|
+
Rendered data/_data.html.erb (8.0ms)
|
100324
|
+
Rendered data/index.html.erb within layouts/application (8.6ms)
|
100325
|
+
Completed 200 OK in 11ms (Views: 9.8ms)
|
100326
|
+
|
100327
|
+
|
100328
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100329
|
+
Processing by DataController#index as JS
|
100330
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100331
|
+
Rendered data/_data.html.erb (7.1ms)
|
100332
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
100333
|
+
|
100334
|
+
|
100335
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100336
|
+
Processing by DataController#index as HTML
|
100337
|
+
Rendered data/_data.html.erb (7.8ms)
|
100338
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100339
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100340
|
+
|
100341
|
+
|
100342
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100343
|
+
Processing by DataController#index as JS
|
100344
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100345
|
+
Rendered data/_data.html.erb (7.5ms)
|
100346
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
100347
|
+
|
100348
|
+
|
100349
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100350
|
+
Processing by DataController#index as JS
|
100351
|
+
Parameters: {"sort_direction"=>"desc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100352
|
+
Rendered data/_data.html.erb (7.5ms)
|
100353
|
+
Completed 200 OK in 50ms (Views: 8.4ms)
|
100354
|
+
|
100355
|
+
|
100356
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100357
|
+
Processing by DataController#index as HTML
|
100358
|
+
Rendered data/_data.html.erb (7.4ms)
|
100359
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
100360
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100361
|
+
|
100362
|
+
|
100363
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100364
|
+
Processing by DataController#index as JS
|
100365
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100366
|
+
Rendered data/_data.html.erb (8.4ms)
|
100367
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
100368
|
+
|
100369
|
+
|
100370
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100371
|
+
Processing by DataController#index as JS
|
100372
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"name"}
|
100373
|
+
Rendered data/_data.html.erb (7.7ms)
|
100374
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100375
|
+
|
100376
|
+
|
100377
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100378
|
+
Processing by DataController#index as HTML
|
100379
|
+
Rendered data/_data.html.erb (50.1ms)
|
100380
|
+
Rendered data/index.html.erb within layouts/application (50.4ms)
|
100381
|
+
Completed 200 OK in 52ms (Views: 51.6ms)
|
100382
|
+
|
100383
|
+
|
100384
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100385
|
+
Processing by DataController#index as HTML
|
100386
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100387
|
+
Rendered data/_data.html.erb (6.9ms)
|
100388
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100389
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
100390
|
+
|
100391
|
+
|
100392
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100393
|
+
Processing by DataController#index as HTML
|
100394
|
+
Rendered data/_data.html.erb (8.8ms)
|
100395
|
+
Rendered data/index.html.erb within layouts/application (9.2ms)
|
100396
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
100397
|
+
|
100398
|
+
|
100399
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100400
|
+
Processing by DataController#index as HTML
|
100401
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100402
|
+
Rendered data/_data.html.erb (49.1ms)
|
100403
|
+
Rendered data/index.html.erb within layouts/application (49.3ms)
|
100404
|
+
Completed 200 OK in 51ms (Views: 50.4ms)
|
100405
|
+
|
100406
|
+
|
100407
|
+
Started GET "/data?page=2&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100408
|
+
Processing by DataController#index as HTML
|
100409
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"2", "per_page"=>"10", "sort_column"=>"name"}
|
100410
|
+
Rendered data/_data.html.erb (7.3ms)
|
100411
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
100412
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100413
|
+
|
100414
|
+
|
100415
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100416
|
+
Processing by DataController#index as HTML
|
100417
|
+
Rendered data/_data.html.erb (7.9ms)
|
100418
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
100419
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100420
|
+
|
100421
|
+
|
100422
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100423
|
+
Processing by DataController#index as HTML
|
100424
|
+
Rendered data/_data.html.erb (7.7ms)
|
100425
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
100426
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100427
|
+
|
100428
|
+
|
100429
|
+
Started GET "/data?page=1&sort_direction=asc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100430
|
+
Processing by DataController#index as HTML
|
100431
|
+
Parameters: {"sort_direction"=>"asc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100432
|
+
Rendered data/_data.html.erb (7.3ms)
|
100433
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100434
|
+
Completed 200 OK in 51ms (Views: 8.8ms)
|
100435
|
+
|
100436
|
+
|
100437
|
+
Started GET "/data?page=1&sort_direction=desc&per_page=10&sort_column=name" for 127.0.0.1 at Wed May 16 15:14:02 -0400 2012
|
100438
|
+
Processing by DataController#index as HTML
|
100439
|
+
Parameters: {"sort_direction"=>"desc", "page"=>"1", "per_page"=>"10", "sort_column"=>"name"}
|
100440
|
+
Rendered data/_data.html.erb (7.0ms)
|
100441
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
100442
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
100443
|
+
|
100444
|
+
|
100445
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100446
|
+
Processing by DataController#index as HTML
|
100447
|
+
Rendered data/_data.html.erb (16.0ms)
|
100448
|
+
Rendered data/index.html.erb within layouts/application (18.5ms)
|
100449
|
+
Completed 200 OK in 25ms (Views: 23.9ms)
|
100450
|
+
|
100451
|
+
|
100452
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100453
|
+
Served asset /application.css - 200 OK (3ms)
|
100454
|
+
|
100455
|
+
|
100456
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100457
|
+
Served asset /application.js - 200 OK (6ms)
|
100458
|
+
|
100459
|
+
|
100460
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100461
|
+
Processing by DataController#index as HTML
|
100462
|
+
Rendered data/_data.html.erb (7.8ms)
|
100463
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
100464
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100465
|
+
|
100466
|
+
|
100467
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100468
|
+
Processing by DataController#index as JS
|
100469
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
100470
|
+
Rendered data/_data.html.erb (8.1ms)
|
100471
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
100472
|
+
|
100473
|
+
|
100474
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100475
|
+
Processing by DataController#index as HTML
|
100476
|
+
Rendered data/_data.html.erb (8.0ms)
|
100477
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
100478
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
100479
|
+
|
100480
|
+
|
100481
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100482
|
+
Processing by DataController#index as JS
|
100483
|
+
Parameters: {"page"=>"4", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
100484
|
+
Rendered data/_data.html.erb (46.4ms)
|
100485
|
+
Completed 200 OK in 47ms (Views: 46.9ms)
|
100486
|
+
|
100487
|
+
|
100488
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100489
|
+
Processing by DataController#index as JS
|
100490
|
+
Parameters: {"page"=>"3", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
100491
|
+
Rendered data/_data.html.erb (7.6ms)
|
100492
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
100493
|
+
|
100494
|
+
|
100495
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100496
|
+
Processing by DataController#index as HTML
|
100497
|
+
Rendered data/_data.html.erb (51.2ms)
|
100498
|
+
Rendered data/index.html.erb within layouts/application (51.4ms)
|
100499
|
+
Completed 200 OK in 53ms (Views: 52.5ms)
|
100500
|
+
|
100501
|
+
|
100502
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100503
|
+
Processing by DataController#index as HTML
|
100504
|
+
Rendered data/_data.html.erb (7.0ms)
|
100505
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100506
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
100507
|
+
|
100508
|
+
|
100509
|
+
Started GET "/data?page=2&per_page=10&sort_direction=asc&sort_column=id" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100510
|
+
Processing by DataController#index as HTML
|
100511
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
100512
|
+
Rendered data/_data.html.erb (9.0ms)
|
100513
|
+
Rendered data/index.html.erb within layouts/application (9.3ms)
|
100514
|
+
Completed 200 OK in 11ms (Views: 10.4ms)
|
100515
|
+
|
100516
|
+
|
100517
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100518
|
+
Processing by DataController#index as HTML
|
100519
|
+
Rendered data/_data.html.erb (8.6ms)
|
100520
|
+
Rendered data/index.html.erb within layouts/application (8.9ms)
|
100521
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
100522
|
+
|
100523
|
+
|
100524
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100525
|
+
Processing by DataController#index as HTML
|
100526
|
+
Rendered data/_data.html.erb (50.6ms)
|
100527
|
+
Rendered data/index.html.erb within layouts/application (50.9ms)
|
100528
|
+
Completed 200 OK in 52ms (Views: 52.0ms)
|
100529
|
+
|
100530
|
+
|
100531
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100532
|
+
Processing by DataController#index as HTML
|
100533
|
+
Rendered data/_data.html.erb (7.8ms)
|
100534
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100535
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100536
|
+
|
100537
|
+
|
100538
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100539
|
+
Processing by DataController#index as HTML
|
100540
|
+
Rendered data/_data.html.erb (8.4ms)
|
100541
|
+
Rendered data/index.html.erb within layouts/application (8.7ms)
|
100542
|
+
Completed 200 OK in 11ms (Views: 9.7ms)
|
100543
|
+
|
100544
|
+
|
100545
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100546
|
+
Processing by DataController#index as HTML
|
100547
|
+
Rendered data/_data.html.erb (51.1ms)
|
100548
|
+
Rendered data/index.html.erb within layouts/application (51.4ms)
|
100549
|
+
Completed 200 OK in 53ms (Views: 52.5ms)
|
100550
|
+
|
100551
|
+
|
100552
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100553
|
+
Processing by DataController#index as HTML
|
100554
|
+
Rendered data/_data.html.erb (6.9ms)
|
100555
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100556
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
100557
|
+
|
100558
|
+
|
100559
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100560
|
+
Processing by DataController#index as HTML
|
100561
|
+
Rendered data/_data.html.erb (8.2ms)
|
100562
|
+
Rendered data/index.html.erb within layouts/application (8.4ms)
|
100563
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
100564
|
+
|
100565
|
+
|
100566
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100567
|
+
Processing by DataController#index as HTML
|
100568
|
+
Rendered data/_data.html.erb (8.0ms)
|
100569
|
+
Rendered data/index.html.erb within layouts/application (8.3ms)
|
100570
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
100571
|
+
|
100572
|
+
|
100573
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100574
|
+
Processing by DataController#index as HTML
|
100575
|
+
Rendered data/_data.html.erb (7.1ms)
|
100576
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
100577
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100578
|
+
|
100579
|
+
|
100580
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:05 -0400 2012
|
100581
|
+
Processing by DataController#index as HTML
|
100582
|
+
Rendered data/_data.html.erb (9.2ms)
|
100583
|
+
Rendered data/index.html.erb within layouts/application (9.5ms)
|
100584
|
+
Completed 200 OK in 11ms (Views: 10.6ms)
|
100585
|
+
|
100586
|
+
|
100587
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:06 -0400 2012
|
100588
|
+
Processing by DataController#index as JS
|
100589
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
100590
|
+
Rendered data/_data.html.erb (9.0ms)
|
100591
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
100592
|
+
|
100593
|
+
|
100594
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100595
|
+
Processing by DataController#index as HTML
|
100596
|
+
Parameters: {"search"=>"secondhalf"}
|
100597
|
+
Rendered data/_data.html.erb (49.7ms)
|
100598
|
+
Rendered data/index.html.erb within layouts/application (50.0ms)
|
100599
|
+
Completed 200 OK in 52ms (Views: 51.2ms)
|
100600
|
+
|
100601
|
+
|
100602
|
+
Started GET "/data?page=1&search=secondhalf&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100603
|
+
Processing by DataController#index as HTML
|
100604
|
+
Parameters: {"page"=>"1", "search"=>"secondhalf", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100605
|
+
Rendered data/_data.html.erb (6.0ms)
|
100606
|
+
Rendered data/index.html.erb within layouts/application (6.3ms)
|
100607
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
100608
|
+
|
100609
|
+
|
100610
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100611
|
+
Processing by DataController#index as HTML
|
100612
|
+
Parameters: {"search"=>"secondhalf"}
|
100613
|
+
Rendered data/_data.html.erb (6.7ms)
|
100614
|
+
Rendered data/index.html.erb within layouts/application (7.0ms)
|
100615
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
100616
|
+
|
100617
|
+
|
100618
|
+
Started GET "/data?page=2&search=secondhalf&per_page=10&sort_direction=asc&sort_column=id" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100619
|
+
Processing by DataController#index as HTML
|
100620
|
+
Parameters: {"page"=>"2", "search"=>"secondhalf", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"id"}
|
100621
|
+
Rendered data/_data.html.erb (6.9ms)
|
100622
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100623
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100624
|
+
|
100625
|
+
|
100626
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100627
|
+
Processing by DataController#index as HTML
|
100628
|
+
Parameters: {"search"=>"secondhalf"}
|
100629
|
+
Rendered data/_data.html.erb (6.2ms)
|
100630
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
100631
|
+
Completed 200 OK in 49ms (Views: 48.8ms)
|
100632
|
+
|
100633
|
+
|
100634
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100635
|
+
Processing by DataController#index as HTML
|
100636
|
+
Rendered data/_data.html.erb (7.3ms)
|
100637
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
100638
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100639
|
+
|
100640
|
+
|
100641
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100642
|
+
Processing by DataController#index as HTML
|
100643
|
+
Rendered data/_data.html.erb (8.3ms)
|
100644
|
+
Rendered data/index.html.erb within layouts/application (8.5ms)
|
100645
|
+
Completed 200 OK in 11ms (Views: 9.6ms)
|
100646
|
+
|
100647
|
+
|
100648
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100649
|
+
Processing by DataController#index as HTML
|
100650
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100651
|
+
Rendered data/_data.html.erb (51.2ms)
|
100652
|
+
Rendered data/index.html.erb within layouts/application (51.5ms)
|
100653
|
+
Completed 200 OK in 53ms (Views: 52.6ms)
|
100654
|
+
|
100655
|
+
|
100656
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100657
|
+
Processing by DataController#index as HTML
|
100658
|
+
Rendered data/_data.html.erb (7.0ms)
|
100659
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
100660
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
100661
|
+
|
100662
|
+
|
100663
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100664
|
+
Processing by DataController#index as HTML
|
100665
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100666
|
+
Rendered data/_data.html.erb (7.9ms)
|
100667
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100668
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100669
|
+
|
100670
|
+
|
100671
|
+
Started GET "/data?page=1&per_page=10&sort_direction=desc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100672
|
+
Processing by DataController#index as HTML
|
100673
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
100674
|
+
Rendered data/_data.html.erb (8.4ms)
|
100675
|
+
Rendered data/index.html.erb within layouts/application (8.8ms)
|
100676
|
+
Completed 200 OK in 11ms (Views: 10.3ms)
|
100677
|
+
|
100678
|
+
|
100679
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100680
|
+
Processing by DataController#index as HTML
|
100681
|
+
Rendered data/_data.html.erb (7.5ms)
|
100682
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
100683
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100684
|
+
|
100685
|
+
|
100686
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100687
|
+
Processing by DataController#index as JS
|
100688
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100689
|
+
Rendered data/_data.html.erb (9.0ms)
|
100690
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
100691
|
+
|
100692
|
+
|
100693
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100694
|
+
Processing by DataController#index as HTML
|
100695
|
+
Rendered data/_data.html.erb (8.5ms)
|
100696
|
+
Rendered data/index.html.erb within layouts/application (8.8ms)
|
100697
|
+
Completed 200 OK in 10ms (Views: 9.8ms)
|
100698
|
+
|
100699
|
+
|
100700
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100701
|
+
Processing by DataController#index as JS
|
100702
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100703
|
+
Rendered data/_data.html.erb (7.6ms)
|
100704
|
+
Completed 200 OK in 9ms (Views: 8.0ms)
|
100705
|
+
|
100706
|
+
|
100707
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100708
|
+
Processing by DataController#index as JS
|
100709
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100710
|
+
Rendered data/_data.html.erb (8.5ms)
|
100711
|
+
Completed 200 OK in 52ms (Views: 9.5ms)
|
100712
|
+
|
100713
|
+
|
100714
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100715
|
+
Processing by DataController#index as HTML
|
100716
|
+
Rendered data/_data.html.erb (7.7ms)
|
100717
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
100718
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100719
|
+
|
100720
|
+
|
100721
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100722
|
+
Processing by DataController#index as JS
|
100723
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100724
|
+
Rendered data/_data.html.erb (7.6ms)
|
100725
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100726
|
+
|
100727
|
+
|
100728
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100729
|
+
Processing by DataController#index as JS
|
100730
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
100731
|
+
Rendered data/_data.html.erb (7.7ms)
|
100732
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100733
|
+
|
100734
|
+
|
100735
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100736
|
+
Processing by DataController#index as HTML
|
100737
|
+
Rendered data/_data.html.erb (50.1ms)
|
100738
|
+
Rendered data/index.html.erb within layouts/application (50.4ms)
|
100739
|
+
Completed 200 OK in 52ms (Views: 51.5ms)
|
100740
|
+
|
100741
|
+
|
100742
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100743
|
+
Processing by DataController#index as HTML
|
100744
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100745
|
+
Rendered data/_data.html.erb (7.1ms)
|
100746
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
100747
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
100748
|
+
|
100749
|
+
|
100750
|
+
Started GET "/data?page=1&per_page=10&sort_direction=desc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100751
|
+
Processing by DataController#index as HTML
|
100752
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"desc", "sort_column"=>"name"}
|
100753
|
+
Rendered data/_data.html.erb (8.5ms)
|
100754
|
+
Rendered data/index.html.erb within layouts/application (8.8ms)
|
100755
|
+
Completed 200 OK in 10ms (Views: 9.8ms)
|
100756
|
+
|
100757
|
+
|
100758
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100759
|
+
Processing by DataController#index as HTML
|
100760
|
+
Rendered data/_data.html.erb (49.5ms)
|
100761
|
+
Rendered data/index.html.erb within layouts/application (49.8ms)
|
100762
|
+
Completed 200 OK in 51ms (Views: 50.9ms)
|
100763
|
+
|
100764
|
+
|
100765
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100766
|
+
Processing by DataController#index as HTML
|
100767
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100768
|
+
Rendered data/_data.html.erb (7.4ms)
|
100769
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
100770
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100771
|
+
|
100772
|
+
|
100773
|
+
Started GET "/data?page=2&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:08 -0400 2012
|
100774
|
+
Processing by DataController#index as HTML
|
100775
|
+
Parameters: {"page"=>"2", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100776
|
+
Rendered data/_data.html.erb (7.8ms)
|
100777
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
100778
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
100779
|
+
|
100780
|
+
|
100781
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:09 -0400 2012
|
100782
|
+
Processing by DataController#index as HTML
|
100783
|
+
Rendered data/_data.html.erb (7.9ms)
|
100784
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
100785
|
+
Completed 200 OK in 10ms (Views: 9.2ms)
|
100786
|
+
|
100787
|
+
|
100788
|
+
Started GET "/data?page=1&per_page=10&sort_direction=asc&sort_column=name" for 127.0.0.1 at Wed May 16 15:15:09 -0400 2012
|
100789
|
+
Processing by DataController#index as HTML
|
100790
|
+
Parameters: {"page"=>"1", "per_page"=>"10", "sort_direction"=>"asc", "sort_column"=>"name"}
|
100791
|
+
Rendered data/_data.html.erb (7.3ms)
|
100792
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100793
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100794
|
+
|
100795
|
+
|
100796
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 15:15:09 -0400 2012
|
100797
|
+
Processing by DataController#index as HTML
|
100798
|
+
Rendered data/_data.html.erb (6.9ms)
|
100799
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100800
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100801
|
+
|
100802
|
+
|
100803
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100804
|
+
Processing by DataController#index as HTML
|
100805
|
+
Rendered data/_data.html.erb (18.6ms)
|
100806
|
+
Rendered data/index.html.erb within layouts/application (22.7ms)
|
100807
|
+
Completed 200 OK in 32ms (Views: 31.2ms)
|
100808
|
+
|
100809
|
+
|
100810
|
+
Started GET "/assets/application.css" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100811
|
+
Served asset /application.css - 200 OK (4ms)
|
100812
|
+
|
100813
|
+
|
100814
|
+
Started GET "/assets/application.js" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100815
|
+
Served asset /application.js - 200 OK (12ms)
|
100816
|
+
|
100817
|
+
|
100818
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100819
|
+
Processing by DataController#index as HTML
|
100820
|
+
Rendered data/_data.html.erb (7.7ms)
|
100821
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
100822
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100823
|
+
|
100824
|
+
|
100825
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100826
|
+
Processing by DataController#index as JS
|
100827
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"id", "page"=>"2", "per_page"=>"10"}
|
100828
|
+
Rendered data/_data.html.erb (8.0ms)
|
100829
|
+
Completed 200 OK in 11ms (Views: 10.6ms)
|
100830
|
+
|
100831
|
+
|
100832
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100833
|
+
Processing by DataController#index as HTML
|
100834
|
+
Rendered data/_data.html.erb (7.9ms)
|
100835
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100836
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
100837
|
+
|
100838
|
+
|
100839
|
+
Started GET "/data?page=4&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100840
|
+
Processing by DataController#index as JS
|
100841
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"id", "page"=>"4", "per_page"=>"10"}
|
100842
|
+
Rendered data/_data.html.erb (45.7ms)
|
100843
|
+
Completed 200 OK in 47ms (Views: 46.2ms)
|
100844
|
+
|
100845
|
+
|
100846
|
+
Started GET "/data?page=3&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:48 -0400 2012
|
100847
|
+
Processing by DataController#index as JS
|
100848
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"id", "page"=>"3", "per_page"=>"10"}
|
100849
|
+
Rendered data/_data.html.erb (7.6ms)
|
100850
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
100851
|
+
|
100852
|
+
|
100853
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100854
|
+
Processing by DataController#index as HTML
|
100855
|
+
Rendered data/_data.html.erb (51.4ms)
|
100856
|
+
Rendered data/index.html.erb within layouts/application (51.7ms)
|
100857
|
+
Completed 200 OK in 54ms (Views: 53.1ms)
|
100858
|
+
|
100859
|
+
|
100860
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100861
|
+
Processing by DataController#index as HTML
|
100862
|
+
Rendered data/_data.html.erb (7.0ms)
|
100863
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100864
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
100865
|
+
|
100866
|
+
|
100867
|
+
Started GET "/data?sort_direction=asc&page=2&sort_column=id&per_page=10" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100868
|
+
Processing by DataController#index as HTML
|
100869
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"id", "page"=>"2", "per_page"=>"10"}
|
100870
|
+
Rendered data/_data.html.erb (9.3ms)
|
100871
|
+
Rendered data/index.html.erb within layouts/application (9.5ms)
|
100872
|
+
Completed 200 OK in 11ms (Views: 10.6ms)
|
100873
|
+
|
100874
|
+
|
100875
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100876
|
+
Processing by DataController#index as HTML
|
100877
|
+
Rendered data/_data.html.erb (8.2ms)
|
100878
|
+
Rendered data/index.html.erb within layouts/application (8.4ms)
|
100879
|
+
Completed 200 OK in 10ms (Views: 9.5ms)
|
100880
|
+
|
100881
|
+
|
100882
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100883
|
+
Processing by DataController#index as HTML
|
100884
|
+
Rendered data/_data.html.erb (6.9ms)
|
100885
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100886
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100887
|
+
|
100888
|
+
|
100889
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100890
|
+
Processing by DataController#index as HTML
|
100891
|
+
Rendered data/_data.html.erb (8.6ms)
|
100892
|
+
Rendered data/index.html.erb within layouts/application (8.8ms)
|
100893
|
+
Completed 200 OK in 10ms (Views: 9.9ms)
|
100894
|
+
|
100895
|
+
|
100896
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100897
|
+
Processing by DataController#index as HTML
|
100898
|
+
Rendered data/_data.html.erb (7.4ms)
|
100899
|
+
Rendered data/index.html.erb within layouts/application (7.7ms)
|
100900
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
100901
|
+
|
100902
|
+
|
100903
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100904
|
+
Processing by DataController#index as HTML
|
100905
|
+
Rendered data/_data.html.erb (48.8ms)
|
100906
|
+
Rendered data/index.html.erb within layouts/application (49.2ms)
|
100907
|
+
Completed 200 OK in 51ms (Views: 50.8ms)
|
100908
|
+
|
100909
|
+
|
100910
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100911
|
+
Processing by DataController#index as HTML
|
100912
|
+
Rendered data/_data.html.erb (6.9ms)
|
100913
|
+
Rendered data/index.html.erb within layouts/application (7.2ms)
|
100914
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
100915
|
+
|
100916
|
+
|
100917
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100918
|
+
Processing by DataController#index as HTML
|
100919
|
+
Rendered data/_data.html.erb (7.8ms)
|
100920
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
100921
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
100922
|
+
|
100923
|
+
|
100924
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100925
|
+
Processing by DataController#index as HTML
|
100926
|
+
Rendered data/_data.html.erb (8.3ms)
|
100927
|
+
Rendered data/index.html.erb within layouts/application (8.6ms)
|
100928
|
+
Completed 200 OK in 10ms (Views: 9.6ms)
|
100929
|
+
|
100930
|
+
|
100931
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100932
|
+
Processing by DataController#index as HTML
|
100933
|
+
Rendered data/_data.html.erb (7.3ms)
|
100934
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
100935
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
100936
|
+
|
100937
|
+
|
100938
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100939
|
+
Processing by DataController#index as HTML
|
100940
|
+
Rendered data/_data.html.erb (8.7ms)
|
100941
|
+
Rendered data/index.html.erb within layouts/application (9.0ms)
|
100942
|
+
Completed 200 OK in 11ms (Views: 10.5ms)
|
100943
|
+
|
100944
|
+
|
100945
|
+
Started GET "/data?page=2&per_page=10&sort_column=id&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:49 -0400 2012
|
100946
|
+
Processing by DataController#index as JS
|
100947
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"id", "page"=>"2", "per_page"=>"10"}
|
100948
|
+
Rendered data/_data.html.erb (9.3ms)
|
100949
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
100950
|
+
|
100951
|
+
|
100952
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
100953
|
+
Processing by DataController#index as HTML
|
100954
|
+
Parameters: {"search"=>"secondhalf"}
|
100955
|
+
Rendered data/_data.html.erb (49.2ms)
|
100956
|
+
Rendered data/index.html.erb within layouts/application (49.6ms)
|
100957
|
+
Completed 200 OK in 51ms (Views: 50.7ms)
|
100958
|
+
|
100959
|
+
|
100960
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
100961
|
+
Processing by DataController#index as HTML
|
100962
|
+
Parameters: {"search"=>"secondhalf"}
|
100963
|
+
Rendered data/_data.html.erb (5.8ms)
|
100964
|
+
Rendered data/index.html.erb within layouts/application (6.1ms)
|
100965
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
100966
|
+
|
100967
|
+
|
100968
|
+
Started GET "/data?sort_direction=asc&page=2&sort_column=id&per_page=10&search=secondhalf" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
100969
|
+
Processing by DataController#index as HTML
|
100970
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"id", "page"=>"2", "per_page"=>"10", "search"=>"secondhalf"}
|
100971
|
+
Rendered data/_data.html.erb (8.0ms)
|
100972
|
+
Rendered data/index.html.erb within layouts/application (8.3ms)
|
100973
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
100974
|
+
|
100975
|
+
|
100976
|
+
Started GET "/data?search=secondhalf" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
100977
|
+
Processing by DataController#index as HTML
|
100978
|
+
Parameters: {"search"=>"secondhalf"}
|
100979
|
+
Rendered data/_data.html.erb (6.6ms)
|
100980
|
+
Rendered data/index.html.erb within layouts/application (6.9ms)
|
100981
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
100982
|
+
|
100983
|
+
|
100984
|
+
Started GET "/data?sort_direction=asc&page=1&sort_column=name&per_page=10&search=secondhalf" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
100985
|
+
Processing by DataController#index as HTML
|
100986
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10", "search"=>"secondhalf"}
|
100987
|
+
Rendered data/_data.html.erb (6.2ms)
|
100988
|
+
Rendered data/index.html.erb within layouts/application (6.5ms)
|
100989
|
+
Completed 200 OK in 50ms (Views: 49.3ms)
|
100990
|
+
|
100991
|
+
|
100992
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
100993
|
+
Processing by DataController#index as HTML
|
100994
|
+
Rendered data/_data.html.erb (7.5ms)
|
100995
|
+
Rendered data/index.html.erb within layouts/application (7.8ms)
|
100996
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
100997
|
+
|
100998
|
+
|
100999
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101000
|
+
Processing by DataController#index as HTML
|
101001
|
+
Rendered data/_data.html.erb (7.8ms)
|
101002
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
101003
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
101004
|
+
|
101005
|
+
|
101006
|
+
Started GET "/data?sort_direction=asc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101007
|
+
Processing by DataController#index as HTML
|
101008
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101009
|
+
Rendered data/_data.html.erb (48.4ms)
|
101010
|
+
Rendered data/index.html.erb within layouts/application (48.7ms)
|
101011
|
+
Completed 200 OK in 50ms (Views: 49.8ms)
|
101012
|
+
|
101013
|
+
|
101014
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101015
|
+
Processing by DataController#index as HTML
|
101016
|
+
Rendered data/_data.html.erb (7.1ms)
|
101017
|
+
Rendered data/index.html.erb within layouts/application (7.4ms)
|
101018
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
101019
|
+
|
101020
|
+
|
101021
|
+
Started GET "/data?sort_direction=asc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101022
|
+
Processing by DataController#index as HTML
|
101023
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101024
|
+
Rendered data/_data.html.erb (8.0ms)
|
101025
|
+
Rendered data/index.html.erb within layouts/application (8.2ms)
|
101026
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
101027
|
+
|
101028
|
+
|
101029
|
+
Started GET "/data?sort_direction=desc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101030
|
+
Processing by DataController#index as HTML
|
101031
|
+
Parameters: {"sort_direction"=>"desc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101032
|
+
Rendered data/_data.html.erb (7.4ms)
|
101033
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
101034
|
+
Completed 200 OK in 9ms (Views: 8.7ms)
|
101035
|
+
|
101036
|
+
|
101037
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101038
|
+
Processing by DataController#index as HTML
|
101039
|
+
Rendered data/_data.html.erb (7.7ms)
|
101040
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
101041
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
101042
|
+
|
101043
|
+
|
101044
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101045
|
+
Processing by DataController#index as JS
|
101046
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101047
|
+
Rendered data/_data.html.erb (7.1ms)
|
101048
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
101049
|
+
|
101050
|
+
|
101051
|
+
Started GET "/data?page=2&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:51 -0400 2012
|
101052
|
+
Processing by DataController#index as JS
|
101053
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"2", "per_page"=>"10"}
|
101054
|
+
Rendered data/_data.html.erb (8.0ms)
|
101055
|
+
Completed 200 OK in 9ms (Views: 8.5ms)
|
101056
|
+
|
101057
|
+
|
101058
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101059
|
+
Processing by DataController#index as HTML
|
101060
|
+
Rendered data/_data.html.erb (8.7ms)
|
101061
|
+
Rendered data/index.html.erb within layouts/application (9.0ms)
|
101062
|
+
Completed 200 OK in 11ms (Views: 10.0ms)
|
101063
|
+
|
101064
|
+
|
101065
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101066
|
+
Processing by DataController#index as JS
|
101067
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101068
|
+
Rendered data/_data.html.erb (7.3ms)
|
101069
|
+
Completed 200 OK in 9ms (Views: 8.3ms)
|
101070
|
+
|
101071
|
+
|
101072
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=desc" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101073
|
+
Processing by DataController#index as JS
|
101074
|
+
Parameters: {"sort_direction"=>"desc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101075
|
+
Rendered data/_data.html.erb (7.3ms)
|
101076
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
101077
|
+
|
101078
|
+
|
101079
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101080
|
+
Processing by DataController#index as HTML
|
101081
|
+
Rendered data/_data.html.erb (8.0ms)
|
101082
|
+
Rendered data/index.html.erb within layouts/application (8.3ms)
|
101083
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
101084
|
+
|
101085
|
+
|
101086
|
+
Started GET "/data?page=1&per_page=10&sort_column=name&sort_direction=asc" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101087
|
+
Processing by DataController#index as JS
|
101088
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101089
|
+
Rendered data/_data.html.erb (7.6ms)
|
101090
|
+
Completed 200 OK in 9ms (Views: 8.1ms)
|
101091
|
+
|
101092
|
+
|
101093
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101094
|
+
Processing by DataController#index as HTML
|
101095
|
+
Rendered data/_data.html.erb (49.9ms)
|
101096
|
+
Rendered data/index.html.erb within layouts/application (50.3ms)
|
101097
|
+
Completed 200 OK in 52ms (Views: 51.4ms)
|
101098
|
+
|
101099
|
+
|
101100
|
+
Started GET "/data?sort_direction=asc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101101
|
+
Processing by DataController#index as HTML
|
101102
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101103
|
+
Rendered data/_data.html.erb (7.2ms)
|
101104
|
+
Rendered data/index.html.erb within layouts/application (7.5ms)
|
101105
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
101106
|
+
|
101107
|
+
|
101108
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101109
|
+
Processing by DataController#index as HTML
|
101110
|
+
Rendered data/_data.html.erb (7.8ms)
|
101111
|
+
Rendered data/index.html.erb within layouts/application (8.1ms)
|
101112
|
+
Completed 200 OK in 10ms (Views: 9.1ms)
|
101113
|
+
|
101114
|
+
|
101115
|
+
Started GET "/data?sort_direction=asc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101116
|
+
Processing by DataController#index as HTML
|
101117
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101118
|
+
Rendered data/_data.html.erb (49.5ms)
|
101119
|
+
Rendered data/index.html.erb within layouts/application (49.8ms)
|
101120
|
+
Completed 200 OK in 51ms (Views: 50.9ms)
|
101121
|
+
|
101122
|
+
|
101123
|
+
Started GET "/data?sort_direction=desc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101124
|
+
Processing by DataController#index as HTML
|
101125
|
+
Parameters: {"sort_direction"=>"desc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101126
|
+
Rendered data/_data.html.erb (7.4ms)
|
101127
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
101128
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
101129
|
+
|
101130
|
+
|
101131
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101132
|
+
Processing by DataController#index as HTML
|
101133
|
+
Rendered data/_data.html.erb (7.3ms)
|
101134
|
+
Rendered data/index.html.erb within layouts/application (7.6ms)
|
101135
|
+
Completed 200 OK in 9ms (Views: 8.6ms)
|
101136
|
+
|
101137
|
+
|
101138
|
+
Started GET "/data?sort_direction=asc&page=1&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101139
|
+
Processing by DataController#index as HTML
|
101140
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"1", "per_page"=>"10"}
|
101141
|
+
Rendered data/_data.html.erb (7.5ms)
|
101142
|
+
Rendered data/index.html.erb within layouts/application (7.9ms)
|
101143
|
+
Completed 200 OK in 10ms (Views: 8.9ms)
|
101144
|
+
|
101145
|
+
|
101146
|
+
Started GET "/data?sort_direction=asc&page=2&sort_column=name&per_page=10" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101147
|
+
Processing by DataController#index as HTML
|
101148
|
+
Parameters: {"sort_direction"=>"asc", "sort_column"=>"name", "page"=>"2", "per_page"=>"10"}
|
101149
|
+
Rendered data/_data.html.erb (7.7ms)
|
101150
|
+
Rendered data/index.html.erb within layouts/application (8.0ms)
|
101151
|
+
Completed 200 OK in 10ms (Views: 9.0ms)
|
101152
|
+
|
101153
|
+
|
101154
|
+
Started GET "/data" for 127.0.0.1 at Wed May 16 16:03:52 -0400 2012
|
101155
|
+
Processing by DataController#index as HTML
|
101156
|
+
Rendered data/_data.html.erb (7.0ms)
|
101157
|
+
Rendered data/index.html.erb within layouts/application (7.3ms)
|
101158
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|