medivo 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/medivo/{application.js → lab_list/application.js} +4 -0
- data/app/assets/javascripts/medivo/{show_labs.coffee → lab_list/init.coffee} +6 -16
- data/app/assets/javascripts/medivo/{models.coffee → lab_list/models.coffee} +20 -16
- data/app/assets/javascripts/medivo/lab_list/sample/show_labs.coffee +15 -0
- data/app/assets/javascripts/medivo/{views.coffee → lab_list/views.coffee} +14 -10
- data/app/controllers/medivo/labs_controller.rb +1 -1
- data/config/routes.rb +1 -1
- data/lib/medivo/validators.rb +2 -0
- data/lib/medivo/version.rb +1 -1
- data/spec/dummy/app/assets/javascripts/application.js +2 -4
- data/spec/dummy/log/development.log +4051 -0
- data/spec/dummy/log/test.log +42 -0
- data/spec/dummy/tmp/cache/assets/C46/F00/sprockets%2F2281d588b540056c5a7306c32a3761b9 +0 -0
- data/spec/dummy/tmp/cache/assets/C69/500/sprockets%2F140b56780716711c2b6eb1028f042ca6 +0 -0
- data/spec/dummy/tmp/cache/assets/C6E/760/sprockets%2F657954e57920845a5893956e7d32dd2d +0 -0
- data/spec/dummy/tmp/cache/assets/C81/D00/sprockets%2F64f056bd752d271308a86a6f865b1911 +0 -0
- data/spec/dummy/tmp/cache/assets/CAB/970/sprockets%2F6aa4308273851c94a14158394d4dcdc4 +0 -0
- data/spec/dummy/tmp/cache/assets/CC3/EF0/sprockets%2F453b504c1f8f374578636f699eaa455d +0 -0
- data/spec/dummy/tmp/cache/assets/CEC/EF0/sprockets%2F4b24a74018f693c06088bd52f8cc9f86 +0 -0
- data/spec/dummy/tmp/cache/assets/CEE/250/sprockets%2F96688f33f2f8aa261bf6701c1d6d7575 +0 -0
- data/spec/dummy/tmp/cache/assets/D20/F10/sprockets%2Fb2e907e4faa85fe755f4439e3b229088 +0 -0
- data/spec/dummy/tmp/cache/assets/D29/000/sprockets%2F61a10ddf57f1129c02a1049bfed6e007 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D36/870/sprockets%2Fce9e887568de873b133ae43d7c977f68 +0 -0
- data/spec/dummy/tmp/cache/assets/D45/320/sprockets%2Fc50ff379a1bdf1dd4d22249058749cf6 +0 -0
- data/spec/dummy/tmp/cache/assets/D4C/7A0/sprockets%2Fbc635c7b186d1ef5178f4ed3722d868b +0 -0
- data/spec/dummy/tmp/cache/assets/D53/910/sprockets%2F9c83ce0cd69a6919e4b54e59d27e4d70 +0 -0
- data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D55/ED0/sprockets%2F0f673e42e816c6fe5b66a5c96f896f1a +0 -0
- data/spec/dummy/tmp/cache/assets/D5D/3E0/sprockets%2F63fea6cc142b5f02da93bf81e70b2116 +0 -0
- data/spec/dummy/tmp/cache/assets/D65/6D0/sprockets%2F3ce07ca1958d7ab3e80c4b3e0d24088c +0 -0
- data/spec/dummy/tmp/cache/assets/D68/AD0/sprockets%2F19727663b4ec901b812dbdabee2526ec +0 -0
- data/spec/dummy/tmp/cache/assets/D74/9A0/sprockets%2F0ca4e6e833c72156fc7e7d5f007d9ce3 +0 -0
- data/spec/dummy/tmp/cache/assets/D76/720/sprockets%2F88d8aa1d2fb41ce79b8ec4150ea74748 +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/spec/dummy/tmp/cache/assets/D9C/F50/sprockets%2F224e78bb9e1c414a2d518a3aaffd6f77 +0 -0
- data/spec/dummy/tmp/cache/assets/DC1/230/sprockets%2F3a36cd467bdce1914a2b7af4ed4114cf +0 -0
- data/spec/dummy/tmp/cache/assets/DD1/FD0/sprockets%2Fa531f33dc9c5852d39d64a9eda44dacf +0 -0
- data/spec/dummy/tmp/cache/assets/DD2/A50/sprockets%2Fecb5dd9066b50eb678cd8c9dbb21d229 +0 -0
- data/spec/dummy/tmp/cache/assets/DD5/3F0/sprockets%2Ff52fccdabfe2d4c9fc992057362772ac +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/pids/server.pid +1 -1
- data/spec/models/labs_spec.rb +1 -1
- data/spec/models/orders_spec.rb +31 -8
- metadata +45 -20
|
@@ -3,3 +3,7 @@
|
|
|
3
3
|
// be included in the compiled file accessible from http://example.com/assets/application.js
|
|
4
4
|
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
5
5
|
// the compiled file.
|
|
6
|
+
//= require medivo/handlebars
|
|
7
|
+
//= require medivo/lab_list/models
|
|
8
|
+
//= require medivo/lab_list/views
|
|
9
|
+
//= require medivo/lab_list/init
|
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
$(document).ready ->
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
lab_list =
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
# can limit the number of labs to show with option show_labs in LabList constructor
|
|
8
|
-
lab_list = new window.LabList( data.labs )
|
|
9
|
-
map_view = new window.MapView( lab_list, data.zip_location )
|
|
10
|
-
lab_list_view = new window.LabListView( lab_list )
|
|
11
|
-
map_view.render()
|
|
12
|
-
else
|
|
13
|
-
console.log('no data')
|
|
3
|
+
####### init empty lab list and the views #########
|
|
4
|
+
window.lab_list = new window.OrderedLabList( [] )
|
|
5
|
+
window.map_view = new window.MapView( lab_list )
|
|
6
|
+
window.lab_list_view = new window.LabListView( lab_list )
|
|
14
7
|
|
|
15
8
|
###### handle ajax lab data search ########
|
|
16
9
|
$("form#lab_data_search")
|
|
@@ -23,12 +16,9 @@ $(document).ready ->
|
|
|
23
16
|
false
|
|
24
17
|
)
|
|
25
18
|
.bind('ajax:success', (event, data)->
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
map_view.center_point = data.zip_location
|
|
29
|
-
map_view.render()
|
|
19
|
+
window.map_view.center_point = data.zip_location
|
|
20
|
+
window.lab_list.setLabs(data.labs)
|
|
30
21
|
$('form#lab_data_search input[type=submit]').prop("disabled", false)
|
|
31
22
|
)
|
|
32
23
|
.bind('ajax:complete', (event, data)->
|
|
33
24
|
)
|
|
34
|
-
|
|
@@ -32,11 +32,11 @@ Handlebars.registerHelper("address_without_comma", (lab)->
|
|
|
32
32
|
########## Lab model ##############
|
|
33
33
|
class window.Lab
|
|
34
34
|
map_tooltip_template: Handlebars.compile("{{titleize name}}\n{{address_without_comma address}}\n{{titleize city}},{{state}} ")
|
|
35
|
+
index = null
|
|
36
|
+
marker = null
|
|
37
|
+
point = null
|
|
35
38
|
|
|
36
39
|
constructor: (@data) ->
|
|
37
|
-
@index = null
|
|
38
|
-
@marker = null
|
|
39
|
-
@point = null
|
|
40
40
|
|
|
41
41
|
clearMarker: ->
|
|
42
42
|
if @marker
|
|
@@ -67,7 +67,7 @@ class window.Lab
|
|
|
67
67
|
|
|
68
68
|
########## OrderedLab model ##############
|
|
69
69
|
class window.OrderedLab extends Lab
|
|
70
|
-
constructor: (@
|
|
70
|
+
constructor: (@data, index) -> @index = index
|
|
71
71
|
|
|
72
72
|
makeIcon: ->
|
|
73
73
|
super() unless isNumber(@index)
|
|
@@ -86,6 +86,7 @@ class window.OrderedLab extends Lab
|
|
|
86
86
|
########## LabList model ##############
|
|
87
87
|
class window.LabList
|
|
88
88
|
show_number: 3
|
|
89
|
+
@tracker_elem: $("<input type='hidden'>")
|
|
89
90
|
|
|
90
91
|
constructor: (lab_info, show_number)->
|
|
91
92
|
@labs = []
|
|
@@ -94,24 +95,27 @@ class window.LabList
|
|
|
94
95
|
|
|
95
96
|
getLabs: -> @labs.slice(0, @show_number)
|
|
96
97
|
|
|
98
|
+
# use this method to set new lab info
|
|
97
99
|
setLabs: (lab_info)->
|
|
98
100
|
this.clearMarkers()
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
labs.push(new Lab(lab_data))
|
|
103
|
-
)
|
|
101
|
+
@labs = []
|
|
102
|
+
this.loadLabs(lab_info)
|
|
103
|
+
LabList.tracker_elem.change()
|
|
104
104
|
|
|
105
105
|
clearMarkers: ->
|
|
106
106
|
$.each( @labs, (index, lab)-> lab.clearMarker() )
|
|
107
107
|
|
|
108
|
+
loadLabs: (lab_info)->
|
|
109
|
+
return unless lab_info
|
|
110
|
+
labs = @labs
|
|
111
|
+
$.each( lab_info, (index, lab_data)-> labs.push(new Lab(lab_data)) )
|
|
112
|
+
|
|
108
113
|
|
|
109
114
|
########## OrderedLabList model ##############
|
|
110
115
|
class window.OrderedLabList extends LabList
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
labs = @labs
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
)
|
|
116
|
+
loadLabs: (lab_info)->
|
|
117
|
+
return unless lab_info
|
|
118
|
+
labs = @labs
|
|
119
|
+
$.each( lab_info, (index, lab_data)-> labs.push(new OrderedLab(lab_data, index)) )
|
|
120
|
+
|
|
121
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#
|
|
2
|
+
# this is a sample of how to show the labs
|
|
3
|
+
# you could use this javascript or do your own
|
|
4
|
+
#
|
|
5
|
+
|
|
6
|
+
$(document).ready ->
|
|
7
|
+
|
|
8
|
+
# if you are loading data while the page first shows
|
|
9
|
+
data = $('#lab_list_container').data('labs')
|
|
10
|
+
if data.labs
|
|
11
|
+
# can limit the number of labs to show with option show_labs in LabList constructor
|
|
12
|
+
window.map_view.center_point = data.zip_location
|
|
13
|
+
window.lab_list.setLabs(data.labs)
|
|
14
|
+
else
|
|
15
|
+
console.log('no data')
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
############### LabList view ###############
|
|
2
2
|
class window.LabListView
|
|
3
|
-
el: null
|
|
4
|
-
template: null
|
|
5
3
|
|
|
6
4
|
constructor: (@lab_list)->
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
this.render()
|
|
5
|
+
@el = $('#lab_list')
|
|
6
|
+
@template = null
|
|
7
|
+
this.render() if @lab_list
|
|
8
|
+
view = this
|
|
9
|
+
LabList.tracker_elem.change( -> view.render() )
|
|
10
10
|
|
|
11
11
|
render: ->
|
|
12
|
+
@template = Handlebars.compile($('#lab_item_template').html()) unless @template
|
|
12
13
|
view = this
|
|
13
14
|
view.el.empty()
|
|
14
15
|
$.each( @lab_list.getLabs(), (index, lab)-> view.el.append( $(view.template(lab)) ) )
|
|
@@ -19,10 +20,11 @@ class window.LabListView
|
|
|
19
20
|
## the standard map view with lab icon ##
|
|
20
21
|
class window.MapView
|
|
21
22
|
constructor: (@collection, @center_point)->
|
|
22
|
-
|
|
23
|
+
this.render()
|
|
24
|
+
view = this
|
|
25
|
+
LabList.tracker_elem.change( -> view.render() )
|
|
23
26
|
|
|
24
27
|
el: $('#map_canvas')
|
|
25
|
-
center_point: null
|
|
26
28
|
center_marker: null
|
|
27
29
|
view: null
|
|
28
30
|
markerBounds: new google.maps.LatLngBounds()
|
|
@@ -38,9 +40,9 @@ class window.MapView
|
|
|
38
40
|
this.view = new google.maps.Map(document.getElementById("map_canvas"), this.options)
|
|
39
41
|
|
|
40
42
|
createCenterMarker: ->
|
|
41
|
-
if
|
|
43
|
+
if @center_point
|
|
42
44
|
point = new google.maps.LatLng(this.center_point.lat, this.center_point.lng)
|
|
43
|
-
|
|
45
|
+
@center_marker = new google.maps.Marker({
|
|
44
46
|
position: point,
|
|
45
47
|
map: this.view,
|
|
46
48
|
title: this.center_point.title
|
|
@@ -52,13 +54,14 @@ class window.MapView
|
|
|
52
54
|
$.each( @collection.getLabs(), (index, model)-> model.setMarker(map, markerBounds) )
|
|
53
55
|
|
|
54
56
|
clear: ->
|
|
55
|
-
|
|
57
|
+
@collection.clearMarkers()
|
|
56
58
|
if this.center_marker
|
|
57
59
|
this.center_marker.setMap(null)
|
|
58
60
|
this.center_marker = null
|
|
59
61
|
this.markerBounds = new google.maps.LatLngBounds()
|
|
60
62
|
|
|
61
63
|
render: ->
|
|
64
|
+
return unless @collection
|
|
62
65
|
this.clear()
|
|
63
66
|
this.prepareMap()
|
|
64
67
|
this.createCenterMarker()
|
|
@@ -75,3 +78,4 @@ class window.MapView
|
|
|
75
78
|
|
|
76
79
|
|
|
77
80
|
|
|
81
|
+
|
data/config/routes.rb
CHANGED
data/lib/medivo/validators.rb
CHANGED
|
@@ -8,6 +8,8 @@ module Medivo
|
|
|
8
8
|
end
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
+
# A valid date for the orders is a little different that usual .. so take note '%Y%m%d'
|
|
12
|
+
# has no slashes or dashes .. so a date is valid that looks like: '20111202'
|
|
11
13
|
class DateValidator < ActiveModel::Validator
|
|
12
14
|
def validate(record)
|
|
13
15
|
for field in options[:fields]
|
data/lib/medivo/version.rb
CHANGED
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
//
|
|
7
7
|
//= require jquery
|
|
8
8
|
//= require jquery_ujs
|
|
9
|
-
//= require medivo/
|
|
10
|
-
//= require medivo/
|
|
11
|
-
//= require medivo/models
|
|
12
|
-
//= require medivo/show_labs
|
|
9
|
+
//= require medivo/lab_list/application
|
|
10
|
+
//= require medivo/lab_list/sample/show_labs
|
|
13
11
|
//= require_tree .
|
|
@@ -8746,3 +8746,4054 @@ Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
|
8746
8746
|
|
|
8747
8747
|
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-25 20:05:52 +0100
|
|
8748
8748
|
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
8749
|
+
|
|
8750
|
+
|
|
8751
|
+
Started GET "/businesses/1" for 127.0.0.1 at 2011-10-26 11:29:21 +0100
|
|
8752
|
+
|
|
8753
|
+
ActionController::RoutingError (No route matches [GET] "/businesses/1"):
|
|
8754
|
+
|
|
8755
|
+
|
|
8756
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
8757
|
+
|
|
8758
|
+
|
|
8759
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:24:07 +0100
|
|
8760
|
+
Processing by LabsController#search as HTML
|
|
8761
|
+
Rendered labs/search.html.haml within layouts/application (7.7ms)
|
|
8762
|
+
Compiled medivo/views.js (211ms) (pid 92027)
|
|
8763
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
8764
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
8765
|
+
Compiled application.js (13ms) (pid 92027)
|
|
8766
|
+
Completed 200 OK in 790ms (Views: 653.8ms)
|
|
8767
|
+
|
|
8768
|
+
|
|
8769
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8770
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
8771
|
+
|
|
8772
|
+
|
|
8773
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8774
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
8775
|
+
|
|
8776
|
+
|
|
8777
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8778
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
8779
|
+
|
|
8780
|
+
|
|
8781
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8782
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
8783
|
+
|
|
8784
|
+
|
|
8785
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8786
|
+
Served asset /medivo/views.js - 200 OK (5ms)
|
|
8787
|
+
|
|
8788
|
+
|
|
8789
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8790
|
+
Served asset /medivo/models.js - 200 OK (5ms)
|
|
8791
|
+
|
|
8792
|
+
|
|
8793
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8794
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
8795
|
+
|
|
8796
|
+
|
|
8797
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:08 +0100
|
|
8798
|
+
Served asset /application.js - 200 OK (0ms)
|
|
8799
|
+
|
|
8800
|
+
|
|
8801
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8802
|
+
Processing by LabsController#search as HTML
|
|
8803
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
8804
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
8805
|
+
Compiled application.js (12ms) (pid 92027)
|
|
8806
|
+
Completed 200 OK in 246ms (Views: 232.9ms)
|
|
8807
|
+
|
|
8808
|
+
|
|
8809
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8810
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
8811
|
+
|
|
8812
|
+
|
|
8813
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8814
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
8815
|
+
|
|
8816
|
+
|
|
8817
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8818
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
8819
|
+
|
|
8820
|
+
|
|
8821
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8822
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
8823
|
+
|
|
8824
|
+
|
|
8825
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8826
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
8827
|
+
|
|
8828
|
+
|
|
8829
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8830
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
8831
|
+
|
|
8832
|
+
|
|
8833
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8834
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
8835
|
+
|
|
8836
|
+
|
|
8837
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:24:29 +0100
|
|
8838
|
+
Served asset /application.js - 200 OK (0ms)
|
|
8839
|
+
|
|
8840
|
+
|
|
8841
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:24:35 +0100
|
|
8842
|
+
Processing by Medivo::LabsController#data as JS
|
|
8843
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
8844
|
+
Completed 200 OK in 2357ms (Views: 7.7ms)
|
|
8845
|
+
|
|
8846
|
+
|
|
8847
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8848
|
+
Processing by LabsController#search as HTML
|
|
8849
|
+
Rendered labs/search.html.haml within layouts/application (3.1ms)
|
|
8850
|
+
Compiled medivo/models.js (190ms) (pid 92027)
|
|
8851
|
+
Compiled application.js (50ms) (pid 92027)
|
|
8852
|
+
Completed 200 OK in 278ms (Views: 266.8ms)
|
|
8853
|
+
|
|
8854
|
+
|
|
8855
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8856
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
8857
|
+
|
|
8858
|
+
|
|
8859
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8860
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
8861
|
+
|
|
8862
|
+
|
|
8863
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8864
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
8865
|
+
|
|
8866
|
+
|
|
8867
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8868
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
8869
|
+
|
|
8870
|
+
|
|
8871
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8872
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
8873
|
+
|
|
8874
|
+
|
|
8875
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8876
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
8877
|
+
|
|
8878
|
+
|
|
8879
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8880
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
8881
|
+
|
|
8882
|
+
|
|
8883
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:25:40 +0100
|
|
8884
|
+
Served asset /application.js - 200 OK (0ms)
|
|
8885
|
+
|
|
8886
|
+
|
|
8887
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:25:46 +0100
|
|
8888
|
+
Processing by Medivo::LabsController#data as JS
|
|
8889
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
8890
|
+
Completed 200 OK in 1621ms (Views: 6.6ms)
|
|
8891
|
+
|
|
8892
|
+
|
|
8893
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 10:25:47 +0100
|
|
8894
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
8895
|
+
|
|
8896
|
+
|
|
8897
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 10:25:47 +0100
|
|
8898
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
8899
|
+
|
|
8900
|
+
|
|
8901
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8902
|
+
Processing by LabsController#search as HTML
|
|
8903
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
8904
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
8905
|
+
Compiled application.js (10ms) (pid 92027)
|
|
8906
|
+
Completed 200 OK in 247ms (Views: 210.4ms)
|
|
8907
|
+
|
|
8908
|
+
|
|
8909
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8910
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
8911
|
+
|
|
8912
|
+
|
|
8913
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8914
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
8915
|
+
|
|
8916
|
+
|
|
8917
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8918
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
8919
|
+
|
|
8920
|
+
|
|
8921
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8922
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
8923
|
+
|
|
8924
|
+
|
|
8925
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8926
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
8927
|
+
|
|
8928
|
+
|
|
8929
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8930
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
8931
|
+
|
|
8932
|
+
|
|
8933
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8934
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
8935
|
+
|
|
8936
|
+
|
|
8937
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:26 +0100
|
|
8938
|
+
Served asset /application.js - 200 OK (0ms)
|
|
8939
|
+
|
|
8940
|
+
|
|
8941
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:26:31 +0100
|
|
8942
|
+
Processing by Medivo::LabsController#data as JS
|
|
8943
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
8944
|
+
Completed 200 OK in 1667ms (Views: 7.9ms)
|
|
8945
|
+
|
|
8946
|
+
|
|
8947
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 10:26:33 +0100
|
|
8948
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
8949
|
+
|
|
8950
|
+
|
|
8951
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 10:26:33 +0100
|
|
8952
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
8953
|
+
|
|
8954
|
+
|
|
8955
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:26:53 +0100
|
|
8956
|
+
Processing by LabsController#search as HTML
|
|
8957
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
8958
|
+
Compiled medivo/views.js (181ms) (pid 92027)
|
|
8959
|
+
Compiled application.js (11ms) (pid 92027)
|
|
8960
|
+
Completed 200 OK in 256ms (Views: 247.7ms)
|
|
8961
|
+
|
|
8962
|
+
|
|
8963
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8964
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
8965
|
+
|
|
8966
|
+
|
|
8967
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8968
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
8969
|
+
|
|
8970
|
+
|
|
8971
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8972
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
8973
|
+
|
|
8974
|
+
|
|
8975
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8976
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
8977
|
+
|
|
8978
|
+
|
|
8979
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8980
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
8981
|
+
|
|
8982
|
+
|
|
8983
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8984
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
8985
|
+
|
|
8986
|
+
|
|
8987
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8988
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
8989
|
+
|
|
8990
|
+
|
|
8991
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:26:54 +0100
|
|
8992
|
+
Served asset /application.js - 200 OK (0ms)
|
|
8993
|
+
|
|
8994
|
+
|
|
8995
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
8996
|
+
Processing by LabsController#search as HTML
|
|
8997
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
8998
|
+
Compiled medivo/show_labs.js (163ms) (pid 92027)
|
|
8999
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9000
|
+
Completed 200 OK in 203ms (Views: 195.4ms)
|
|
9001
|
+
|
|
9002
|
+
|
|
9003
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9004
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9005
|
+
|
|
9006
|
+
|
|
9007
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9008
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9009
|
+
|
|
9010
|
+
|
|
9011
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9012
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9013
|
+
|
|
9014
|
+
|
|
9015
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9016
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9017
|
+
|
|
9018
|
+
|
|
9019
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9020
|
+
Served asset /medivo/show_labs.js - 200 OK (31ms)
|
|
9021
|
+
|
|
9022
|
+
|
|
9023
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9024
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9025
|
+
|
|
9026
|
+
|
|
9027
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9028
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9029
|
+
|
|
9030
|
+
|
|
9031
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:25 +0100
|
|
9032
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9033
|
+
|
|
9034
|
+
|
|
9035
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9036
|
+
Processing by LabsController#search as HTML
|
|
9037
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
9038
|
+
Compiled medivo/show_labs.js (167ms) (pid 92027)
|
|
9039
|
+
Compiled application.js (12ms) (pid 92027)
|
|
9040
|
+
Completed 200 OK in 208ms (Views: 200.3ms)
|
|
9041
|
+
|
|
9042
|
+
|
|
9043
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9044
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9045
|
+
|
|
9046
|
+
|
|
9047
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9048
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9049
|
+
|
|
9050
|
+
|
|
9051
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9052
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9053
|
+
|
|
9054
|
+
|
|
9055
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9056
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9057
|
+
|
|
9058
|
+
|
|
9059
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9060
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9061
|
+
|
|
9062
|
+
|
|
9063
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9064
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9065
|
+
|
|
9066
|
+
|
|
9067
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9068
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
9069
|
+
|
|
9070
|
+
|
|
9071
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:35 +0100
|
|
9072
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9073
|
+
|
|
9074
|
+
|
|
9075
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9076
|
+
Processing by LabsController#search as HTML
|
|
9077
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
9078
|
+
Completed 200 OK in 40ms (Views: 6.6ms)
|
|
9079
|
+
|
|
9080
|
+
|
|
9081
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9082
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9083
|
+
|
|
9084
|
+
|
|
9085
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9086
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9087
|
+
|
|
9088
|
+
|
|
9089
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9090
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9091
|
+
|
|
9092
|
+
|
|
9093
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9094
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9095
|
+
|
|
9096
|
+
|
|
9097
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9098
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9099
|
+
|
|
9100
|
+
|
|
9101
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9102
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9103
|
+
|
|
9104
|
+
|
|
9105
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9106
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9107
|
+
|
|
9108
|
+
|
|
9109
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:38 +0100
|
|
9110
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
9111
|
+
|
|
9112
|
+
|
|
9113
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:27:48 +0100
|
|
9114
|
+
Processing by LabsController#search as HTML
|
|
9115
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
9116
|
+
Compiled medivo/show_labs.js (163ms) (pid 92027)
|
|
9117
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9118
|
+
Completed 200 OK in 235ms (Views: 225.6ms)
|
|
9119
|
+
|
|
9120
|
+
|
|
9121
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9122
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9123
|
+
|
|
9124
|
+
|
|
9125
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9126
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9127
|
+
|
|
9128
|
+
|
|
9129
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9130
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9131
|
+
|
|
9132
|
+
|
|
9133
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9134
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9135
|
+
|
|
9136
|
+
|
|
9137
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9138
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9139
|
+
|
|
9140
|
+
|
|
9141
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9142
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9143
|
+
|
|
9144
|
+
|
|
9145
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9146
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
9147
|
+
|
|
9148
|
+
|
|
9149
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:27:49 +0100
|
|
9150
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9151
|
+
|
|
9152
|
+
|
|
9153
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9154
|
+
Processing by LabsController#search as HTML
|
|
9155
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
9156
|
+
Compiled medivo/show_labs.js (163ms) (pid 92027)
|
|
9157
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9158
|
+
Completed 200 OK in 203ms (Views: 195.4ms)
|
|
9159
|
+
|
|
9160
|
+
|
|
9161
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9162
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9163
|
+
|
|
9164
|
+
|
|
9165
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9166
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9167
|
+
|
|
9168
|
+
|
|
9169
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9170
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9171
|
+
|
|
9172
|
+
|
|
9173
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9174
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9175
|
+
|
|
9176
|
+
|
|
9177
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9178
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9179
|
+
|
|
9180
|
+
|
|
9181
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9182
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9183
|
+
|
|
9184
|
+
|
|
9185
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9186
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
9187
|
+
|
|
9188
|
+
|
|
9189
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:01 +0100
|
|
9190
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9191
|
+
|
|
9192
|
+
|
|
9193
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9194
|
+
Processing by LabsController#search as HTML
|
|
9195
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
9196
|
+
Compiled medivo/show_labs.js (165ms) (pid 92027)
|
|
9197
|
+
Compiled application.js (10ms) (pid 92027)
|
|
9198
|
+
Completed 200 OK in 208ms (Views: 199.0ms)
|
|
9199
|
+
|
|
9200
|
+
|
|
9201
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9202
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9203
|
+
|
|
9204
|
+
|
|
9205
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9206
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9207
|
+
|
|
9208
|
+
|
|
9209
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9210
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9211
|
+
|
|
9212
|
+
|
|
9213
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9214
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
9215
|
+
|
|
9216
|
+
|
|
9217
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9218
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9219
|
+
|
|
9220
|
+
|
|
9221
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9222
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9223
|
+
|
|
9224
|
+
|
|
9225
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9226
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9227
|
+
|
|
9228
|
+
|
|
9229
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:28:41 +0100
|
|
9230
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9231
|
+
|
|
9232
|
+
|
|
9233
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:33:46 +0100
|
|
9234
|
+
Processing by LabsController#search as HTML
|
|
9235
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
9236
|
+
Cache for Asset (application.js) is stale
|
|
9237
|
+
Error: unclosed CALL_START on line 89
|
|
9238
|
+
Compiled application.js (12ms) (pid 92027)
|
|
9239
|
+
Completed 500 Internal Server Error in 434ms
|
|
9240
|
+
|
|
9241
|
+
ActionView::Template::Error (Error: unclosed CALL_START on line 89
|
|
9242
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/views.coffee)):
|
|
9243
|
+
3: %title Dummy
|
|
9244
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
9245
|
+
5: = stylesheet_link_tag "application"
|
|
9246
|
+
6: = javascript_include_tag "application"
|
|
9247
|
+
7: = csrf_meta_tags
|
|
9248
|
+
8: %body
|
|
9249
|
+
9:
|
|
9250
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
9251
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
9252
|
+
|
|
9253
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
|
9254
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
|
9255
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms)
|
|
9256
|
+
|
|
9257
|
+
|
|
9258
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:34:22 +0100
|
|
9259
|
+
Processing by LabsController#search as HTML
|
|
9260
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9261
|
+
Compiled medivo/views.js (187ms) (pid 92027)
|
|
9262
|
+
Compiled medivo/show_labs.js (163ms) (pid 92027)
|
|
9263
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9264
|
+
Completed 200 OK in 425ms (Views: 412.6ms)
|
|
9265
|
+
|
|
9266
|
+
|
|
9267
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9268
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9269
|
+
|
|
9270
|
+
|
|
9271
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9272
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9273
|
+
|
|
9274
|
+
|
|
9275
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9276
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9277
|
+
|
|
9278
|
+
|
|
9279
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9280
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
9281
|
+
|
|
9282
|
+
|
|
9283
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9284
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9285
|
+
|
|
9286
|
+
|
|
9287
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9288
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
9289
|
+
|
|
9290
|
+
|
|
9291
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9292
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9293
|
+
|
|
9294
|
+
|
|
9295
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:23 +0100
|
|
9296
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9297
|
+
|
|
9298
|
+
|
|
9299
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9300
|
+
Processing by LabsController#search as HTML
|
|
9301
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9302
|
+
Compiled medivo/views.js (180ms) (pid 92027)
|
|
9303
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9304
|
+
Completed 200 OK in 243ms (Views: 212.1ms)
|
|
9305
|
+
|
|
9306
|
+
|
|
9307
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9308
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9309
|
+
|
|
9310
|
+
|
|
9311
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9312
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9313
|
+
|
|
9314
|
+
|
|
9315
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9316
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9317
|
+
|
|
9318
|
+
|
|
9319
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9320
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9321
|
+
|
|
9322
|
+
|
|
9323
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9324
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
9325
|
+
|
|
9326
|
+
|
|
9327
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9328
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9329
|
+
|
|
9330
|
+
|
|
9331
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9332
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9333
|
+
|
|
9334
|
+
|
|
9335
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:34:37 +0100
|
|
9336
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9337
|
+
|
|
9338
|
+
|
|
9339
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9340
|
+
Processing by LabsController#search as HTML
|
|
9341
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9342
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9343
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9344
|
+
Completed 200 OK in 246ms (Views: 234.9ms)
|
|
9345
|
+
|
|
9346
|
+
|
|
9347
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9348
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9349
|
+
|
|
9350
|
+
|
|
9351
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9352
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9353
|
+
|
|
9354
|
+
|
|
9355
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9356
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9357
|
+
|
|
9358
|
+
|
|
9359
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9360
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9361
|
+
|
|
9362
|
+
|
|
9363
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9364
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9365
|
+
|
|
9366
|
+
|
|
9367
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9368
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
9369
|
+
|
|
9370
|
+
|
|
9371
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9372
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9373
|
+
|
|
9374
|
+
|
|
9375
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:02 +0100
|
|
9376
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9377
|
+
|
|
9378
|
+
|
|
9379
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9380
|
+
Processing by LabsController#search as HTML
|
|
9381
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
9382
|
+
Compiled medivo/show_labs.js (187ms) (pid 92027)
|
|
9383
|
+
Compiled application.js (12ms) (pid 92027)
|
|
9384
|
+
Completed 200 OK in 229ms (Views: 220.7ms)
|
|
9385
|
+
|
|
9386
|
+
|
|
9387
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9388
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9389
|
+
|
|
9390
|
+
|
|
9391
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9392
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9393
|
+
|
|
9394
|
+
|
|
9395
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9396
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9397
|
+
|
|
9398
|
+
|
|
9399
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9400
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
9401
|
+
|
|
9402
|
+
|
|
9403
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9404
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9405
|
+
|
|
9406
|
+
|
|
9407
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9408
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9409
|
+
|
|
9410
|
+
|
|
9411
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9412
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9413
|
+
|
|
9414
|
+
|
|
9415
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:36:33 +0100
|
|
9416
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9417
|
+
|
|
9418
|
+
|
|
9419
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:37:34 +0100
|
|
9420
|
+
Processing by LabsController#search as HTML
|
|
9421
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
9422
|
+
Compiled medivo/show_labs.js (187ms) (pid 92027)
|
|
9423
|
+
Compiled application.js (12ms) (pid 92027)
|
|
9424
|
+
Completed 200 OK in 232ms (Views: 222.3ms)
|
|
9425
|
+
|
|
9426
|
+
|
|
9427
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:37:34 +0100
|
|
9428
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9429
|
+
|
|
9430
|
+
|
|
9431
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:34 +0100
|
|
9432
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9433
|
+
|
|
9434
|
+
|
|
9435
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:35 +0100
|
|
9436
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9437
|
+
|
|
9438
|
+
|
|
9439
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:35 +0100
|
|
9440
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9441
|
+
|
|
9442
|
+
|
|
9443
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:35 +0100
|
|
9444
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
9445
|
+
|
|
9446
|
+
|
|
9447
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:35 +0100
|
|
9448
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9449
|
+
|
|
9450
|
+
|
|
9451
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:35 +0100
|
|
9452
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9453
|
+
|
|
9454
|
+
|
|
9455
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:37:35 +0100
|
|
9456
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9457
|
+
|
|
9458
|
+
|
|
9459
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:38:25 +0100
|
|
9460
|
+
Processing by LabsController#search as HTML
|
|
9461
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
9462
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9463
|
+
Compiled application.js (40ms) (pid 92027)
|
|
9464
|
+
Completed 200 OK in 251ms (Views: 241.4ms)
|
|
9465
|
+
|
|
9466
|
+
|
|
9467
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9468
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9469
|
+
|
|
9470
|
+
|
|
9471
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9472
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9473
|
+
|
|
9474
|
+
|
|
9475
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9476
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9477
|
+
|
|
9478
|
+
|
|
9479
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9480
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9481
|
+
|
|
9482
|
+
|
|
9483
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9484
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9485
|
+
|
|
9486
|
+
|
|
9487
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9488
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
9489
|
+
|
|
9490
|
+
|
|
9491
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9492
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9493
|
+
|
|
9494
|
+
|
|
9495
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:26 +0100
|
|
9496
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9497
|
+
|
|
9498
|
+
|
|
9499
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9500
|
+
Processing by LabsController#search as HTML
|
|
9501
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
9502
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9503
|
+
Compiled application.js (10ms) (pid 92027)
|
|
9504
|
+
Completed 200 OK in 249ms (Views: 240.9ms)
|
|
9505
|
+
|
|
9506
|
+
|
|
9507
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9508
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9509
|
+
|
|
9510
|
+
|
|
9511
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9512
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9513
|
+
|
|
9514
|
+
|
|
9515
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9516
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9517
|
+
|
|
9518
|
+
|
|
9519
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9520
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
9521
|
+
|
|
9522
|
+
|
|
9523
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9524
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9525
|
+
|
|
9526
|
+
|
|
9527
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9528
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9529
|
+
|
|
9530
|
+
|
|
9531
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9532
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9533
|
+
|
|
9534
|
+
|
|
9535
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:33 +0100
|
|
9536
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9537
|
+
|
|
9538
|
+
|
|
9539
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9540
|
+
Processing by LabsController#search as HTML
|
|
9541
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
9542
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9543
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9544
|
+
Completed 200 OK in 250ms (Views: 240.1ms)
|
|
9545
|
+
|
|
9546
|
+
|
|
9547
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9548
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9549
|
+
|
|
9550
|
+
|
|
9551
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9552
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9553
|
+
|
|
9554
|
+
|
|
9555
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9556
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
9557
|
+
|
|
9558
|
+
|
|
9559
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9560
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9561
|
+
|
|
9562
|
+
|
|
9563
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9564
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9565
|
+
|
|
9566
|
+
|
|
9567
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9568
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9569
|
+
|
|
9570
|
+
|
|
9571
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9572
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9573
|
+
|
|
9574
|
+
|
|
9575
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:38:54 +0100
|
|
9576
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9577
|
+
|
|
9578
|
+
|
|
9579
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9580
|
+
Processing by LabsController#search as HTML
|
|
9581
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9582
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9583
|
+
Compiled medivo/show_labs.js (164ms) (pid 92027)
|
|
9584
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9585
|
+
Completed 200 OK in 422ms (Views: 411.7ms)
|
|
9586
|
+
|
|
9587
|
+
|
|
9588
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9589
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9590
|
+
|
|
9591
|
+
|
|
9592
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9593
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9594
|
+
|
|
9595
|
+
|
|
9596
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9597
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9598
|
+
|
|
9599
|
+
|
|
9600
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9601
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9602
|
+
|
|
9603
|
+
|
|
9604
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9605
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
9606
|
+
|
|
9607
|
+
|
|
9608
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9609
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
9610
|
+
|
|
9611
|
+
|
|
9612
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9613
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9614
|
+
|
|
9615
|
+
|
|
9616
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:45:41 +0100
|
|
9617
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9618
|
+
|
|
9619
|
+
|
|
9620
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9621
|
+
Processing by LabsController#search as HTML
|
|
9622
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9623
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9624
|
+
Compiled application.js (10ms) (pid 92027)
|
|
9625
|
+
Completed 200 OK in 247ms (Views: 239.9ms)
|
|
9626
|
+
|
|
9627
|
+
|
|
9628
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9629
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9630
|
+
|
|
9631
|
+
|
|
9632
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9633
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9634
|
+
|
|
9635
|
+
|
|
9636
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9637
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9638
|
+
|
|
9639
|
+
|
|
9640
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9641
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9642
|
+
|
|
9643
|
+
|
|
9644
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9645
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9646
|
+
|
|
9647
|
+
|
|
9648
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9649
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
9650
|
+
|
|
9651
|
+
|
|
9652
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9653
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9654
|
+
|
|
9655
|
+
|
|
9656
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:20 +0100
|
|
9657
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9658
|
+
|
|
9659
|
+
|
|
9660
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:46:28 +0100
|
|
9661
|
+
Processing by Medivo::LabsController#data as JS
|
|
9662
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9663
|
+
Completed 200 OK in 1229ms (Views: 5.1ms)
|
|
9664
|
+
|
|
9665
|
+
|
|
9666
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9667
|
+
Processing by LabsController#search as HTML
|
|
9668
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9669
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
9670
|
+
Compiled application.js (8ms) (pid 92027)
|
|
9671
|
+
Completed 200 OK in 240ms (Views: 231.4ms)
|
|
9672
|
+
|
|
9673
|
+
|
|
9674
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9675
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9676
|
+
|
|
9677
|
+
|
|
9678
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9679
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9680
|
+
|
|
9681
|
+
|
|
9682
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9683
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9684
|
+
|
|
9685
|
+
|
|
9686
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9687
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
9688
|
+
|
|
9689
|
+
|
|
9690
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9691
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9692
|
+
|
|
9693
|
+
|
|
9694
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9695
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9696
|
+
|
|
9697
|
+
|
|
9698
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9699
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9700
|
+
|
|
9701
|
+
|
|
9702
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:46:54 +0100
|
|
9703
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9704
|
+
|
|
9705
|
+
|
|
9706
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:47:00 +0100
|
|
9707
|
+
Processing by Medivo::LabsController#data as JS
|
|
9708
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9709
|
+
Completed 200 OK in 1002ms (Views: 6.4ms)
|
|
9710
|
+
|
|
9711
|
+
|
|
9712
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9713
|
+
Processing by LabsController#search as HTML
|
|
9714
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
9715
|
+
Compiled medivo/views.js (182ms) (pid 92027)
|
|
9716
|
+
Compiled medivo/show_labs.js (162ms) (pid 92027)
|
|
9717
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9718
|
+
Completed 200 OK in 414ms (Views: 383.6ms)
|
|
9719
|
+
|
|
9720
|
+
|
|
9721
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9722
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9723
|
+
|
|
9724
|
+
|
|
9725
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9726
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9727
|
+
|
|
9728
|
+
|
|
9729
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9730
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9731
|
+
|
|
9732
|
+
|
|
9733
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9734
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9735
|
+
|
|
9736
|
+
|
|
9737
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9738
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
9739
|
+
|
|
9740
|
+
|
|
9741
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9742
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
9743
|
+
|
|
9744
|
+
|
|
9745
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9746
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9747
|
+
|
|
9748
|
+
|
|
9749
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:24 +0100
|
|
9750
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9751
|
+
|
|
9752
|
+
|
|
9753
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:51:32 +0100
|
|
9754
|
+
Processing by Medivo::LabsController#data as JS
|
|
9755
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9756
|
+
Completed 200 OK in 1283ms (Views: 8.5ms)
|
|
9757
|
+
|
|
9758
|
+
|
|
9759
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:51:43 +0100
|
|
9760
|
+
Processing by Medivo::LabsController#data as JS
|
|
9761
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9762
|
+
Completed 200 OK in 1007ms (Views: 9.9ms)
|
|
9763
|
+
|
|
9764
|
+
|
|
9765
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9766
|
+
Processing by LabsController#search as HTML
|
|
9767
|
+
Rendered labs/search.html.haml within layouts/application (2.7ms)
|
|
9768
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
9769
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9770
|
+
Completed 200 OK in 244ms (Views: 200.7ms)
|
|
9771
|
+
|
|
9772
|
+
|
|
9773
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9774
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9775
|
+
|
|
9776
|
+
|
|
9777
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9778
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9779
|
+
|
|
9780
|
+
|
|
9781
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9782
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9783
|
+
|
|
9784
|
+
|
|
9785
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9786
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9787
|
+
|
|
9788
|
+
|
|
9789
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9790
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
9791
|
+
|
|
9792
|
+
|
|
9793
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9794
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9795
|
+
|
|
9796
|
+
|
|
9797
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9798
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9799
|
+
|
|
9800
|
+
|
|
9801
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:51:59 +0100
|
|
9802
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9803
|
+
|
|
9804
|
+
|
|
9805
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:52:04 +0100
|
|
9806
|
+
Processing by Medivo::LabsController#data as JS
|
|
9807
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9808
|
+
Completed 200 OK in 1047ms (Views: 13.5ms)
|
|
9809
|
+
|
|
9810
|
+
|
|
9811
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9812
|
+
Processing by LabsController#search as HTML
|
|
9813
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
9814
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
9815
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9816
|
+
Completed 200 OK in 230ms (Views: 219.9ms)
|
|
9817
|
+
|
|
9818
|
+
|
|
9819
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9820
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9821
|
+
|
|
9822
|
+
|
|
9823
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9824
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9825
|
+
|
|
9826
|
+
|
|
9827
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9828
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9829
|
+
|
|
9830
|
+
|
|
9831
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9832
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9833
|
+
|
|
9834
|
+
|
|
9835
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9836
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9837
|
+
|
|
9838
|
+
|
|
9839
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9840
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9841
|
+
|
|
9842
|
+
|
|
9843
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9844
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
9845
|
+
|
|
9846
|
+
|
|
9847
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:52:37 +0100
|
|
9848
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9849
|
+
|
|
9850
|
+
|
|
9851
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:52:41 +0100
|
|
9852
|
+
Processing by Medivo::LabsController#data as JS
|
|
9853
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9854
|
+
Completed 200 OK in 1295ms (Views: 4.8ms)
|
|
9855
|
+
|
|
9856
|
+
|
|
9857
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:53:08 +0100
|
|
9858
|
+
Processing by LabsController#search as HTML
|
|
9859
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
9860
|
+
Compiled medivo/views.js (178ms) (pid 92027)
|
|
9861
|
+
Compiled application.js (48ms) (pid 92027)
|
|
9862
|
+
Completed 200 OK in 256ms (Views: 247.3ms)
|
|
9863
|
+
|
|
9864
|
+
|
|
9865
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9866
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9867
|
+
|
|
9868
|
+
|
|
9869
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9870
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9871
|
+
|
|
9872
|
+
|
|
9873
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9874
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9875
|
+
|
|
9876
|
+
|
|
9877
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9878
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9879
|
+
|
|
9880
|
+
|
|
9881
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9882
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9883
|
+
|
|
9884
|
+
|
|
9885
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9886
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
9887
|
+
|
|
9888
|
+
|
|
9889
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9890
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
9891
|
+
|
|
9892
|
+
|
|
9893
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:53:09 +0100
|
|
9894
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9895
|
+
|
|
9896
|
+
|
|
9897
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:53:13 +0100
|
|
9898
|
+
Processing by Medivo::LabsController#data as JS
|
|
9899
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
9900
|
+
Completed 200 OK in 1226ms (Views: 5.5ms)
|
|
9901
|
+
|
|
9902
|
+
|
|
9903
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:55:48 +0100
|
|
9904
|
+
Processing by LabsController#search as HTML
|
|
9905
|
+
Rendered labs/search.html.haml within layouts/application (24.1ms)
|
|
9906
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
9907
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
9908
|
+
Compiled application.js (10ms) (pid 92027)
|
|
9909
|
+
Completed 200 OK in 439ms (Views: 427.8ms)
|
|
9910
|
+
|
|
9911
|
+
|
|
9912
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9913
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9914
|
+
|
|
9915
|
+
|
|
9916
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9917
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9918
|
+
|
|
9919
|
+
|
|
9920
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9921
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9922
|
+
|
|
9923
|
+
|
|
9924
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9925
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9926
|
+
|
|
9927
|
+
|
|
9928
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9929
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
9930
|
+
|
|
9931
|
+
|
|
9932
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9933
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
9934
|
+
|
|
9935
|
+
|
|
9936
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9937
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9938
|
+
|
|
9939
|
+
|
|
9940
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:55:49 +0100
|
|
9941
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9942
|
+
|
|
9943
|
+
|
|
9944
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9945
|
+
Processing by LabsController#search as HTML
|
|
9946
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
9947
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
9948
|
+
Compiled application.js (10ms) (pid 92027)
|
|
9949
|
+
Completed 200 OK in 247ms (Views: 215.7ms)
|
|
9950
|
+
|
|
9951
|
+
|
|
9952
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9953
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9954
|
+
|
|
9955
|
+
|
|
9956
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9957
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9958
|
+
|
|
9959
|
+
|
|
9960
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9961
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
9962
|
+
|
|
9963
|
+
|
|
9964
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9965
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
9966
|
+
|
|
9967
|
+
|
|
9968
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9969
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
9970
|
+
|
|
9971
|
+
|
|
9972
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9973
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
9974
|
+
|
|
9975
|
+
|
|
9976
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9977
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
9978
|
+
|
|
9979
|
+
|
|
9980
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:05 +0100
|
|
9981
|
+
Served asset /application.js - 200 OK (0ms)
|
|
9982
|
+
|
|
9983
|
+
|
|
9984
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:56:15 +0100
|
|
9985
|
+
Processing by LabsController#search as HTML
|
|
9986
|
+
Rendered labs/search.html.haml within layouts/application (2.8ms)
|
|
9987
|
+
Compiled medivo/models.js (209ms) (pid 92027)
|
|
9988
|
+
Compiled application.js (11ms) (pid 92027)
|
|
9989
|
+
Completed 200 OK in 251ms (Views: 242.8ms)
|
|
9990
|
+
|
|
9991
|
+
|
|
9992
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
9993
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
9994
|
+
|
|
9995
|
+
|
|
9996
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
9997
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
9998
|
+
|
|
9999
|
+
|
|
10000
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
10001
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10002
|
+
|
|
10003
|
+
|
|
10004
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
10005
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10006
|
+
|
|
10007
|
+
|
|
10008
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
10009
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10010
|
+
|
|
10011
|
+
|
|
10012
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
10013
|
+
Served asset /medivo/models.js - 200 OK (4ms)
|
|
10014
|
+
|
|
10015
|
+
|
|
10016
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
10017
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10018
|
+
|
|
10019
|
+
|
|
10020
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:16 +0100
|
|
10021
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10022
|
+
|
|
10023
|
+
|
|
10024
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:56:23 +0100
|
|
10025
|
+
Processing by Medivo::LabsController#data as JS
|
|
10026
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10027
|
+
Completed 200 OK in 1371ms (Views: 6.1ms)
|
|
10028
|
+
|
|
10029
|
+
|
|
10030
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10031
|
+
Processing by LabsController#search as HTML
|
|
10032
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10033
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
10034
|
+
Compiled application.js (10ms) (pid 92027)
|
|
10035
|
+
Completed 200 OK in 233ms (Views: 222.5ms)
|
|
10036
|
+
|
|
10037
|
+
|
|
10038
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10039
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10040
|
+
|
|
10041
|
+
|
|
10042
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10043
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10044
|
+
|
|
10045
|
+
|
|
10046
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10047
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10048
|
+
|
|
10049
|
+
|
|
10050
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10051
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10052
|
+
|
|
10053
|
+
|
|
10054
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10055
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10056
|
+
|
|
10057
|
+
|
|
10058
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10059
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10060
|
+
|
|
10061
|
+
|
|
10062
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10063
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10064
|
+
|
|
10065
|
+
|
|
10066
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:54 +0100
|
|
10067
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10068
|
+
|
|
10069
|
+
|
|
10070
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10071
|
+
Processing by LabsController#search as HTML
|
|
10072
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10073
|
+
Compiled medivo/models.js (202ms) (pid 92027)
|
|
10074
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10075
|
+
Completed 200 OK in 279ms (Views: 237.7ms)
|
|
10076
|
+
|
|
10077
|
+
|
|
10078
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10079
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10080
|
+
|
|
10081
|
+
|
|
10082
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10083
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10084
|
+
|
|
10085
|
+
|
|
10086
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10087
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10088
|
+
|
|
10089
|
+
|
|
10090
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10091
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10092
|
+
|
|
10093
|
+
|
|
10094
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10095
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10096
|
+
|
|
10097
|
+
|
|
10098
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10099
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10100
|
+
|
|
10101
|
+
|
|
10102
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10103
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10104
|
+
|
|
10105
|
+
|
|
10106
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:56:58 +0100
|
|
10107
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10108
|
+
|
|
10109
|
+
|
|
10110
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 10:57:54 +0100
|
|
10111
|
+
Processing by LabsController#search as HTML
|
|
10112
|
+
Rendered labs/search.html.haml within layouts/application (28.6ms)
|
|
10113
|
+
Compiled medivo/views.js (183ms) (pid 92027)
|
|
10114
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
10115
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10116
|
+
Completed 200 OK in 445ms (Views: 435.0ms)
|
|
10117
|
+
|
|
10118
|
+
|
|
10119
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10120
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10121
|
+
|
|
10122
|
+
|
|
10123
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10124
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10125
|
+
|
|
10126
|
+
|
|
10127
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10128
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10129
|
+
|
|
10130
|
+
|
|
10131
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10132
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10133
|
+
|
|
10134
|
+
|
|
10135
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10136
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
10137
|
+
|
|
10138
|
+
|
|
10139
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10140
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10141
|
+
|
|
10142
|
+
|
|
10143
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10144
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10145
|
+
|
|
10146
|
+
|
|
10147
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 10:57:55 +0100
|
|
10148
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10149
|
+
|
|
10150
|
+
|
|
10151
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 10:58:44 +0100
|
|
10152
|
+
Processing by Medivo::LabsController#data as JS
|
|
10153
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10154
|
+
Completed 200 OK in 1070ms (Views: 4.8ms)
|
|
10155
|
+
|
|
10156
|
+
|
|
10157
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 10:58:45 +0100
|
|
10158
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
10159
|
+
|
|
10160
|
+
|
|
10161
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 10:58:45 +0100
|
|
10162
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
10163
|
+
|
|
10164
|
+
|
|
10165
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10166
|
+
Processing by LabsController#search as HTML
|
|
10167
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
10168
|
+
Compiled medivo/views.js (181ms) (pid 92027)
|
|
10169
|
+
Compiled medivo/models.js (188ms) (pid 92027)
|
|
10170
|
+
Compiled application.js (10ms) (pid 92027)
|
|
10171
|
+
Completed 200 OK in 454ms (Views: 442.1ms)
|
|
10172
|
+
|
|
10173
|
+
|
|
10174
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10175
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10176
|
+
|
|
10177
|
+
|
|
10178
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10179
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10180
|
+
|
|
10181
|
+
|
|
10182
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10183
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10184
|
+
|
|
10185
|
+
|
|
10186
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10187
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
10188
|
+
|
|
10189
|
+
|
|
10190
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10191
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10192
|
+
|
|
10193
|
+
|
|
10194
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10195
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10196
|
+
|
|
10197
|
+
|
|
10198
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10199
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10200
|
+
|
|
10201
|
+
|
|
10202
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:13 +0100
|
|
10203
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10204
|
+
|
|
10205
|
+
|
|
10206
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10207
|
+
Processing by LabsController#search as HTML
|
|
10208
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
10209
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
10210
|
+
Compiled application.js (42ms) (pid 92027)
|
|
10211
|
+
Completed 200 OK in 261ms (Views: 252.8ms)
|
|
10212
|
+
|
|
10213
|
+
|
|
10214
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10215
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10216
|
+
|
|
10217
|
+
|
|
10218
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10219
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10220
|
+
|
|
10221
|
+
|
|
10222
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10223
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10224
|
+
|
|
10225
|
+
|
|
10226
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10227
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10228
|
+
|
|
10229
|
+
|
|
10230
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10231
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10232
|
+
|
|
10233
|
+
|
|
10234
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10235
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10236
|
+
|
|
10237
|
+
|
|
10238
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10239
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10240
|
+
|
|
10241
|
+
|
|
10242
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:21 +0100
|
|
10243
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10244
|
+
|
|
10245
|
+
|
|
10246
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10247
|
+
Processing by LabsController#search as HTML
|
|
10248
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
10249
|
+
Compiled medivo/models.js (192ms) (pid 92027)
|
|
10250
|
+
Compiled application.js (12ms) (pid 92027)
|
|
10251
|
+
Completed 200 OK in 269ms (Views: 258.3ms)
|
|
10252
|
+
|
|
10253
|
+
|
|
10254
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10255
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10256
|
+
|
|
10257
|
+
|
|
10258
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10259
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10260
|
+
|
|
10261
|
+
|
|
10262
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10263
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10264
|
+
|
|
10265
|
+
|
|
10266
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10267
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10268
|
+
|
|
10269
|
+
|
|
10270
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10271
|
+
Served asset /medivo/models.js - 200 OK (4ms)
|
|
10272
|
+
|
|
10273
|
+
|
|
10274
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10275
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10276
|
+
|
|
10277
|
+
|
|
10278
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10279
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10280
|
+
|
|
10281
|
+
|
|
10282
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:33 +0100
|
|
10283
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10284
|
+
|
|
10285
|
+
|
|
10286
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10287
|
+
Processing by LabsController#search as HTML
|
|
10288
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10289
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
10290
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10291
|
+
Completed 200 OK in 228ms (Views: 220.1ms)
|
|
10292
|
+
|
|
10293
|
+
|
|
10294
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10295
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10296
|
+
|
|
10297
|
+
|
|
10298
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10299
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10300
|
+
|
|
10301
|
+
|
|
10302
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10303
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10304
|
+
|
|
10305
|
+
|
|
10306
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10307
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10308
|
+
|
|
10309
|
+
|
|
10310
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10311
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10312
|
+
|
|
10313
|
+
|
|
10314
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10315
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10316
|
+
|
|
10317
|
+
|
|
10318
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10319
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10320
|
+
|
|
10321
|
+
|
|
10322
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:04:38 +0100
|
|
10323
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10324
|
+
|
|
10325
|
+
|
|
10326
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10327
|
+
Processing by LabsController#search as HTML
|
|
10328
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10329
|
+
Compiled medivo/models.js (188ms) (pid 92027)
|
|
10330
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10331
|
+
Completed 200 OK in 230ms (Views: 221.7ms)
|
|
10332
|
+
|
|
10333
|
+
|
|
10334
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10335
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10336
|
+
|
|
10337
|
+
|
|
10338
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10339
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10340
|
+
|
|
10341
|
+
|
|
10342
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10343
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10344
|
+
|
|
10345
|
+
|
|
10346
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10347
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10348
|
+
|
|
10349
|
+
|
|
10350
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10351
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10352
|
+
|
|
10353
|
+
|
|
10354
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10355
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10356
|
+
|
|
10357
|
+
|
|
10358
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10359
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10360
|
+
|
|
10361
|
+
|
|
10362
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:01 +0100
|
|
10363
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10364
|
+
|
|
10365
|
+
|
|
10366
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10367
|
+
Processing by LabsController#search as HTML
|
|
10368
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
10369
|
+
Compiled medivo/models.js (190ms) (pid 92027)
|
|
10370
|
+
Compiled application.js (13ms) (pid 92027)
|
|
10371
|
+
Completed 200 OK in 262ms (Views: 225.2ms)
|
|
10372
|
+
|
|
10373
|
+
|
|
10374
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10375
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10376
|
+
|
|
10377
|
+
|
|
10378
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10379
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10380
|
+
|
|
10381
|
+
|
|
10382
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10383
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10384
|
+
|
|
10385
|
+
|
|
10386
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10387
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10388
|
+
|
|
10389
|
+
|
|
10390
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10391
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10392
|
+
|
|
10393
|
+
|
|
10394
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10395
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10396
|
+
|
|
10397
|
+
|
|
10398
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10399
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10400
|
+
|
|
10401
|
+
|
|
10402
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:16 +0100
|
|
10403
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10404
|
+
|
|
10405
|
+
|
|
10406
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10407
|
+
Processing by LabsController#search as HTML
|
|
10408
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
10409
|
+
Compiled medivo/models.js (211ms) (pid 92027)
|
|
10410
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10411
|
+
Completed 200 OK in 255ms (Views: 244.5ms)
|
|
10412
|
+
|
|
10413
|
+
|
|
10414
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10415
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10416
|
+
|
|
10417
|
+
|
|
10418
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10419
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10420
|
+
|
|
10421
|
+
|
|
10422
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10423
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10424
|
+
|
|
10425
|
+
|
|
10426
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10427
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10428
|
+
|
|
10429
|
+
|
|
10430
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10431
|
+
Served asset /medivo/models.js - 304 Not Modified (3ms)
|
|
10432
|
+
|
|
10433
|
+
|
|
10434
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10435
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10436
|
+
|
|
10437
|
+
|
|
10438
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10439
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10440
|
+
|
|
10441
|
+
|
|
10442
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:05:40 +0100
|
|
10443
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
10444
|
+
|
|
10445
|
+
|
|
10446
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10447
|
+
Processing by LabsController#search as HTML
|
|
10448
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
10449
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
10450
|
+
Compiled application.js (42ms) (pid 92027)
|
|
10451
|
+
Completed 200 OK in 258ms (Views: 250.1ms)
|
|
10452
|
+
|
|
10453
|
+
|
|
10454
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10455
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10456
|
+
|
|
10457
|
+
|
|
10458
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10459
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10460
|
+
|
|
10461
|
+
|
|
10462
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10463
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10464
|
+
|
|
10465
|
+
|
|
10466
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10467
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10468
|
+
|
|
10469
|
+
|
|
10470
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10471
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10472
|
+
|
|
10473
|
+
|
|
10474
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10475
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10476
|
+
|
|
10477
|
+
|
|
10478
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10479
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10480
|
+
|
|
10481
|
+
|
|
10482
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:00 +0100
|
|
10483
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10484
|
+
|
|
10485
|
+
|
|
10486
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10487
|
+
Processing by LabsController#search as HTML
|
|
10488
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
10489
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
10490
|
+
Compiled application.js (10ms) (pid 92027)
|
|
10491
|
+
Completed 200 OK in 257ms (Views: 249.3ms)
|
|
10492
|
+
|
|
10493
|
+
|
|
10494
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10495
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10496
|
+
|
|
10497
|
+
|
|
10498
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10499
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10500
|
+
|
|
10501
|
+
|
|
10502
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10503
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10504
|
+
|
|
10505
|
+
|
|
10506
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10507
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10508
|
+
|
|
10509
|
+
|
|
10510
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10511
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10512
|
+
|
|
10513
|
+
|
|
10514
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10515
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10516
|
+
|
|
10517
|
+
|
|
10518
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10519
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10520
|
+
|
|
10521
|
+
|
|
10522
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:17 +0100
|
|
10523
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10524
|
+
|
|
10525
|
+
|
|
10526
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10527
|
+
Processing by LabsController#search as HTML
|
|
10528
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
10529
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
10530
|
+
Compiled application.js (10ms) (pid 92027)
|
|
10531
|
+
Completed 200 OK in 227ms (Views: 217.3ms)
|
|
10532
|
+
|
|
10533
|
+
|
|
10534
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10535
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10536
|
+
|
|
10537
|
+
|
|
10538
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10539
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10540
|
+
|
|
10541
|
+
|
|
10542
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10543
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10544
|
+
|
|
10545
|
+
|
|
10546
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10547
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10548
|
+
|
|
10549
|
+
|
|
10550
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10551
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10552
|
+
|
|
10553
|
+
|
|
10554
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10555
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10556
|
+
|
|
10557
|
+
|
|
10558
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10559
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10560
|
+
|
|
10561
|
+
|
|
10562
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:06:33 +0100
|
|
10563
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10564
|
+
|
|
10565
|
+
|
|
10566
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:06:39 +0100
|
|
10567
|
+
Processing by Medivo::LabsController#data as JS
|
|
10568
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10569
|
+
Completed 200 OK in 1135ms (Views: 4.7ms)
|
|
10570
|
+
|
|
10571
|
+
|
|
10572
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10573
|
+
Processing by LabsController#search as HTML
|
|
10574
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
10575
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
10576
|
+
Compiled application.js (47ms) (pid 92027)
|
|
10577
|
+
Completed 200 OK in 264ms (Views: 254.1ms)
|
|
10578
|
+
|
|
10579
|
+
|
|
10580
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10581
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10582
|
+
|
|
10583
|
+
|
|
10584
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10585
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10586
|
+
|
|
10587
|
+
|
|
10588
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10589
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10590
|
+
|
|
10591
|
+
|
|
10592
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10593
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10594
|
+
|
|
10595
|
+
|
|
10596
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10597
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10598
|
+
|
|
10599
|
+
|
|
10600
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10601
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10602
|
+
|
|
10603
|
+
|
|
10604
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10605
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10606
|
+
|
|
10607
|
+
|
|
10608
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:08:03 +0100
|
|
10609
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10610
|
+
|
|
10611
|
+
|
|
10612
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:08:09 +0100
|
|
10613
|
+
Processing by Medivo::LabsController#data as JS
|
|
10614
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10615
|
+
Completed 200 OK in 1205ms (Views: 4.7ms)
|
|
10616
|
+
|
|
10617
|
+
|
|
10618
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10619
|
+
Processing by LabsController#search as HTML
|
|
10620
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10621
|
+
Compiled medivo/models.js (206ms) (pid 92027)
|
|
10622
|
+
Compiled medivo/show_labs.js (164ms) (pid 92027)
|
|
10623
|
+
Compiled application.js (12ms) (pid 92027)
|
|
10624
|
+
Completed 200 OK in 451ms (Views: 412.7ms)
|
|
10625
|
+
|
|
10626
|
+
|
|
10627
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10628
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10629
|
+
|
|
10630
|
+
|
|
10631
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10632
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10633
|
+
|
|
10634
|
+
|
|
10635
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10636
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10637
|
+
|
|
10638
|
+
|
|
10639
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10640
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10641
|
+
|
|
10642
|
+
|
|
10643
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10644
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10645
|
+
|
|
10646
|
+
|
|
10647
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10648
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10649
|
+
|
|
10650
|
+
|
|
10651
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10652
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
10653
|
+
|
|
10654
|
+
|
|
10655
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:11:45 +0100
|
|
10656
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10657
|
+
|
|
10658
|
+
|
|
10659
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:11:52 +0100
|
|
10660
|
+
Processing by Medivo::LabsController#data as JS
|
|
10661
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10662
|
+
Completed 200 OK in 1234ms (Views: 6.2ms)
|
|
10663
|
+
|
|
10664
|
+
|
|
10665
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:12:02 +0100
|
|
10666
|
+
Processing by Medivo::LabsController#data as JS
|
|
10667
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10668
|
+
Completed 200 OK in 1216ms (Views: 7.8ms)
|
|
10669
|
+
|
|
10670
|
+
|
|
10671
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:13:04 +0100
|
|
10672
|
+
Processing by LabsController#search as HTML
|
|
10673
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10674
|
+
Compiled medivo/models.js (198ms) (pid 92027)
|
|
10675
|
+
Compiled medivo/show_labs.js (165ms) (pid 92027)
|
|
10676
|
+
Compiled application.js (12ms) (pid 92027)
|
|
10677
|
+
Completed 200 OK in 443ms (Views: 431.0ms)
|
|
10678
|
+
|
|
10679
|
+
|
|
10680
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10681
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10682
|
+
|
|
10683
|
+
|
|
10684
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10685
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10686
|
+
|
|
10687
|
+
|
|
10688
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10689
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10690
|
+
|
|
10691
|
+
|
|
10692
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10693
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10694
|
+
|
|
10695
|
+
|
|
10696
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10697
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10698
|
+
|
|
10699
|
+
|
|
10700
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10701
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
10702
|
+
|
|
10703
|
+
|
|
10704
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10705
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
10706
|
+
|
|
10707
|
+
|
|
10708
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:13:05 +0100
|
|
10709
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10710
|
+
|
|
10711
|
+
|
|
10712
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:13:09 +0100
|
|
10713
|
+
Processing by Medivo::LabsController#data as JS
|
|
10714
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10715
|
+
Completed 200 OK in 1170ms (Views: 4.8ms)
|
|
10716
|
+
|
|
10717
|
+
|
|
10718
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:13:11 +0100
|
|
10719
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
10720
|
+
|
|
10721
|
+
|
|
10722
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 11:13:11 +0100
|
|
10723
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
10724
|
+
|
|
10725
|
+
|
|
10726
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10727
|
+
Processing by LabsController#search as HTML
|
|
10728
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
10729
|
+
Compiled medivo/show_labs.js (167ms) (pid 92027)
|
|
10730
|
+
Compiled application.js (10ms) (pid 92027)
|
|
10731
|
+
Completed 200 OK in 246ms (Views: 236.9ms)
|
|
10732
|
+
|
|
10733
|
+
|
|
10734
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10735
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10736
|
+
|
|
10737
|
+
|
|
10738
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10739
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10740
|
+
|
|
10741
|
+
|
|
10742
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10743
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10744
|
+
|
|
10745
|
+
|
|
10746
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10747
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10748
|
+
|
|
10749
|
+
|
|
10750
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10751
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10752
|
+
|
|
10753
|
+
|
|
10754
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10755
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
10756
|
+
|
|
10757
|
+
|
|
10758
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10759
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
10760
|
+
|
|
10761
|
+
|
|
10762
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:14:17 +0100
|
|
10763
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10764
|
+
|
|
10765
|
+
|
|
10766
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:14:22 +0100
|
|
10767
|
+
Processing by Medivo::LabsController#data as JS
|
|
10768
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10769
|
+
Completed 200 OK in 1239ms (Views: 7.1ms)
|
|
10770
|
+
|
|
10771
|
+
|
|
10772
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:14:23 +0100
|
|
10773
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
10774
|
+
|
|
10775
|
+
|
|
10776
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 11:14:23 +0100
|
|
10777
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
10778
|
+
|
|
10779
|
+
|
|
10780
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:15:02 +0100
|
|
10781
|
+
Processing by LabsController#search as HTML
|
|
10782
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
10783
|
+
Compiled medivo/views.js (216ms) (pid 92027)
|
|
10784
|
+
Compiled medivo/show_labs.js (165ms) (pid 92027)
|
|
10785
|
+
Compiled application.js (12ms) (pid 92027)
|
|
10786
|
+
Completed 200 OK in 430ms (Views: 419.9ms)
|
|
10787
|
+
|
|
10788
|
+
|
|
10789
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10790
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10791
|
+
|
|
10792
|
+
|
|
10793
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10794
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10795
|
+
|
|
10796
|
+
|
|
10797
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10798
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10799
|
+
|
|
10800
|
+
|
|
10801
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10802
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10803
|
+
|
|
10804
|
+
|
|
10805
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10806
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
10807
|
+
|
|
10808
|
+
|
|
10809
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10810
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
10811
|
+
|
|
10812
|
+
|
|
10813
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10814
|
+
Served asset /medivo/show_labs.js - 200 OK (4ms)
|
|
10815
|
+
|
|
10816
|
+
|
|
10817
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:03 +0100
|
|
10818
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10819
|
+
|
|
10820
|
+
|
|
10821
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10822
|
+
Processing by LabsController#search as HTML
|
|
10823
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
10824
|
+
Compiled medivo/show_labs.js (187ms) (pid 92027)
|
|
10825
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10826
|
+
Completed 200 OK in 230ms (Views: 221.2ms)
|
|
10827
|
+
|
|
10828
|
+
|
|
10829
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10830
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10831
|
+
|
|
10832
|
+
|
|
10833
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10834
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10835
|
+
|
|
10836
|
+
|
|
10837
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10838
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10839
|
+
|
|
10840
|
+
|
|
10841
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10842
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10843
|
+
|
|
10844
|
+
|
|
10845
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10846
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
10847
|
+
|
|
10848
|
+
|
|
10849
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10850
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10851
|
+
|
|
10852
|
+
|
|
10853
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10854
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
10855
|
+
|
|
10856
|
+
|
|
10857
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:15:22 +0100
|
|
10858
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10859
|
+
|
|
10860
|
+
|
|
10861
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:15:29 +0100
|
|
10862
|
+
Processing by Medivo::LabsController#data as JS
|
|
10863
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10864
|
+
Completed 200 OK in 1498ms (Views: 5.4ms)
|
|
10865
|
+
|
|
10866
|
+
|
|
10867
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:15:30 +0100
|
|
10868
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
10869
|
+
|
|
10870
|
+
|
|
10871
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:16:42 +0100
|
|
10872
|
+
Processing by LabsController#search as HTML
|
|
10873
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
10874
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
10875
|
+
Compiled application.js (12ms) (pid 92027)
|
|
10876
|
+
Completed 200 OK in 234ms (Views: 201.0ms)
|
|
10877
|
+
|
|
10878
|
+
|
|
10879
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10880
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10881
|
+
|
|
10882
|
+
|
|
10883
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10884
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10885
|
+
|
|
10886
|
+
|
|
10887
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10888
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10889
|
+
|
|
10890
|
+
|
|
10891
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10892
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10893
|
+
|
|
10894
|
+
|
|
10895
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10896
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10897
|
+
|
|
10898
|
+
|
|
10899
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10900
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
10901
|
+
|
|
10902
|
+
|
|
10903
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10904
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
10905
|
+
|
|
10906
|
+
|
|
10907
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:16:43 +0100
|
|
10908
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10909
|
+
|
|
10910
|
+
|
|
10911
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:16:48 +0100
|
|
10912
|
+
Processing by Medivo::LabsController#data as JS
|
|
10913
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10914
|
+
Completed 200 OK in 1306ms (Views: 4.7ms)
|
|
10915
|
+
|
|
10916
|
+
|
|
10917
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:16:49 +0100
|
|
10918
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
10919
|
+
|
|
10920
|
+
|
|
10921
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 11:16:49 +0100
|
|
10922
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
10923
|
+
|
|
10924
|
+
|
|
10925
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:17:31 +0100
|
|
10926
|
+
Processing by LabsController#search as HTML
|
|
10927
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
10928
|
+
Compiled medivo/models.js (195ms) (pid 92027)
|
|
10929
|
+
Compiled application.js (11ms) (pid 92027)
|
|
10930
|
+
Completed 200 OK in 235ms (Views: 227.6ms)
|
|
10931
|
+
|
|
10932
|
+
|
|
10933
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10934
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10935
|
+
|
|
10936
|
+
|
|
10937
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10938
|
+
Served asset /jquery_ujs.js - 304 Not Modified (33ms)
|
|
10939
|
+
|
|
10940
|
+
|
|
10941
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10942
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
10943
|
+
|
|
10944
|
+
|
|
10945
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10946
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
10947
|
+
|
|
10948
|
+
|
|
10949
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10950
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
10951
|
+
|
|
10952
|
+
|
|
10953
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10954
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
10955
|
+
|
|
10956
|
+
|
|
10957
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10958
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
10959
|
+
|
|
10960
|
+
|
|
10961
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:32 +0100
|
|
10962
|
+
Served asset /application.js - 200 OK (0ms)
|
|
10963
|
+
|
|
10964
|
+
|
|
10965
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:17:35 +0100
|
|
10966
|
+
Processing by Medivo::LabsController#data as JS
|
|
10967
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
10968
|
+
Completed 200 OK in 1199ms (Views: 4.6ms)
|
|
10969
|
+
|
|
10970
|
+
|
|
10971
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:17:36 +0100
|
|
10972
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
10973
|
+
|
|
10974
|
+
|
|
10975
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 11:17:36 +0100
|
|
10976
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
10977
|
+
|
|
10978
|
+
|
|
10979
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:17:54 +0100
|
|
10980
|
+
Processing by LabsController#search as HTML
|
|
10981
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
10982
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
10983
|
+
Compiled application.js (48ms) (pid 92027)
|
|
10984
|
+
Completed 200 OK in 246ms (Views: 234.5ms)
|
|
10985
|
+
|
|
10986
|
+
|
|
10987
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
10988
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
10989
|
+
|
|
10990
|
+
|
|
10991
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
10992
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10993
|
+
|
|
10994
|
+
|
|
10995
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
10996
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
10997
|
+
|
|
10998
|
+
|
|
10999
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
11000
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11001
|
+
|
|
11002
|
+
|
|
11003
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
11004
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11005
|
+
|
|
11006
|
+
|
|
11007
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
11008
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11009
|
+
|
|
11010
|
+
|
|
11011
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
11012
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
11013
|
+
|
|
11014
|
+
|
|
11015
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:17:55 +0100
|
|
11016
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11017
|
+
|
|
11018
|
+
|
|
11019
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:17:58 +0100
|
|
11020
|
+
Processing by Medivo::LabsController#data as JS
|
|
11021
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11022
|
+
Completed 200 OK in 1389ms (Views: 5.0ms)
|
|
11023
|
+
|
|
11024
|
+
|
|
11025
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 11:18:00 +0100
|
|
11026
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
11027
|
+
|
|
11028
|
+
|
|
11029
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:18:00 +0100
|
|
11030
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11031
|
+
|
|
11032
|
+
|
|
11033
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11034
|
+
Processing by LabsController#search as HTML
|
|
11035
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11036
|
+
Compiled medivo/models.js (202ms) (pid 92027)
|
|
11037
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11038
|
+
Completed 200 OK in 265ms (Views: 233.6ms)
|
|
11039
|
+
|
|
11040
|
+
|
|
11041
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11042
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11043
|
+
|
|
11044
|
+
|
|
11045
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11046
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11047
|
+
|
|
11048
|
+
|
|
11049
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11050
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11051
|
+
|
|
11052
|
+
|
|
11053
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11054
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11055
|
+
|
|
11056
|
+
|
|
11057
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11058
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11059
|
+
|
|
11060
|
+
|
|
11061
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11062
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11063
|
+
|
|
11064
|
+
|
|
11065
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11066
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11067
|
+
|
|
11068
|
+
|
|
11069
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:18:49 +0100
|
|
11070
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11071
|
+
|
|
11072
|
+
|
|
11073
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11074
|
+
Processing by LabsController#search as HTML
|
|
11075
|
+
Rendered labs/search.html.haml within layouts/application (2.5ms)
|
|
11076
|
+
Compiled medivo/models.js (212ms) (pid 92027)
|
|
11077
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11078
|
+
Completed 200 OK in 256ms (Views: 245.2ms)
|
|
11079
|
+
|
|
11080
|
+
|
|
11081
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11082
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11083
|
+
|
|
11084
|
+
|
|
11085
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11086
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11087
|
+
|
|
11088
|
+
|
|
11089
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11090
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11091
|
+
|
|
11092
|
+
|
|
11093
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11094
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11095
|
+
|
|
11096
|
+
|
|
11097
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11098
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11099
|
+
|
|
11100
|
+
|
|
11101
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11102
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11103
|
+
|
|
11104
|
+
|
|
11105
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11106
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11107
|
+
|
|
11108
|
+
|
|
11109
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:25 +0100
|
|
11110
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11111
|
+
|
|
11112
|
+
|
|
11113
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:19:58 +0100
|
|
11114
|
+
Processing by LabsController#search as HTML
|
|
11115
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
11116
|
+
Compiled medivo/models.js (210ms) (pid 92027)
|
|
11117
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11118
|
+
Completed 200 OK in 251ms (Views: 242.9ms)
|
|
11119
|
+
|
|
11120
|
+
|
|
11121
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11122
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11123
|
+
|
|
11124
|
+
|
|
11125
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11126
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11127
|
+
|
|
11128
|
+
|
|
11129
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11130
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11131
|
+
|
|
11132
|
+
|
|
11133
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11134
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11135
|
+
|
|
11136
|
+
|
|
11137
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11138
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11139
|
+
|
|
11140
|
+
|
|
11141
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11142
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11143
|
+
|
|
11144
|
+
|
|
11145
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11146
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11147
|
+
|
|
11148
|
+
|
|
11149
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:19:59 +0100
|
|
11150
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11151
|
+
|
|
11152
|
+
|
|
11153
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:20:16 +0100
|
|
11154
|
+
Processing by LabsController#search as HTML
|
|
11155
|
+
Rendered labs/search.html.haml within layouts/application (2.6ms)
|
|
11156
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
11157
|
+
Compiled application.js (42ms) (pid 92027)
|
|
11158
|
+
Completed 200 OK in 257ms (Views: 249.2ms)
|
|
11159
|
+
|
|
11160
|
+
|
|
11161
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11162
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11163
|
+
|
|
11164
|
+
|
|
11165
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11166
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11167
|
+
|
|
11168
|
+
|
|
11169
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11170
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11171
|
+
|
|
11172
|
+
|
|
11173
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11174
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11175
|
+
|
|
11176
|
+
|
|
11177
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11178
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11179
|
+
|
|
11180
|
+
|
|
11181
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11182
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11183
|
+
|
|
11184
|
+
|
|
11185
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11186
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11187
|
+
|
|
11188
|
+
|
|
11189
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:17 +0100
|
|
11190
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11191
|
+
|
|
11192
|
+
|
|
11193
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:20:30 +0100
|
|
11194
|
+
Processing by LabsController#search as HTML
|
|
11195
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
11196
|
+
Compiled medivo/models.js (188ms) (pid 92027)
|
|
11197
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11198
|
+
Completed 200 OK in 259ms (Views: 251.2ms)
|
|
11199
|
+
|
|
11200
|
+
|
|
11201
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11202
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11203
|
+
|
|
11204
|
+
|
|
11205
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11206
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11207
|
+
|
|
11208
|
+
|
|
11209
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11210
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11211
|
+
|
|
11212
|
+
|
|
11213
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11214
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11215
|
+
|
|
11216
|
+
|
|
11217
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11218
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11219
|
+
|
|
11220
|
+
|
|
11221
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11222
|
+
Served asset /medivo/models.js - 200 OK (4ms)
|
|
11223
|
+
|
|
11224
|
+
|
|
11225
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11226
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11227
|
+
|
|
11228
|
+
|
|
11229
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:20:31 +0100
|
|
11230
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11231
|
+
|
|
11232
|
+
|
|
11233
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:21:36 +0100
|
|
11234
|
+
Processing by LabsController#search as HTML
|
|
11235
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11236
|
+
Compiled medivo/views.js (178ms) (pid 92027)
|
|
11237
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
11238
|
+
Compiled medivo/show_labs.js (162ms) (pid 92027)
|
|
11239
|
+
Compiled application.js (43ms) (pid 92027)
|
|
11240
|
+
Completed 200 OK in 613ms (Views: 603.7ms)
|
|
11241
|
+
|
|
11242
|
+
|
|
11243
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11244
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11245
|
+
|
|
11246
|
+
|
|
11247
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11248
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11249
|
+
|
|
11250
|
+
|
|
11251
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11252
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11253
|
+
|
|
11254
|
+
|
|
11255
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11256
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11257
|
+
|
|
11258
|
+
|
|
11259
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11260
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
11261
|
+
|
|
11262
|
+
|
|
11263
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11264
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
11265
|
+
|
|
11266
|
+
|
|
11267
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11268
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11269
|
+
|
|
11270
|
+
|
|
11271
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:21:37 +0100
|
|
11272
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11273
|
+
|
|
11274
|
+
|
|
11275
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:21:46 +0100
|
|
11276
|
+
Processing by Medivo::LabsController#data as JS
|
|
11277
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11278
|
+
Completed 200 OK in 1354ms (Views: 4.6ms)
|
|
11279
|
+
|
|
11280
|
+
|
|
11281
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:21:47 +0100
|
|
11282
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11283
|
+
|
|
11284
|
+
|
|
11285
|
+
Started GET "/assets/medivo/lab.png" for 127.0.0.1 at 2011-10-27 11:21:47 +0100
|
|
11286
|
+
Served asset /medivo/lab.png - 304 Not Modified (0ms)
|
|
11287
|
+
|
|
11288
|
+
|
|
11289
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11290
|
+
Processing by LabsController#search as HTML
|
|
11291
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11292
|
+
Compiled medivo/show_labs.js (164ms) (pid 92027)
|
|
11293
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11294
|
+
Completed 200 OK in 234ms (Views: 197.5ms)
|
|
11295
|
+
|
|
11296
|
+
|
|
11297
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11298
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11299
|
+
|
|
11300
|
+
|
|
11301
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11302
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11303
|
+
|
|
11304
|
+
|
|
11305
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11306
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11307
|
+
|
|
11308
|
+
|
|
11309
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11310
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11311
|
+
|
|
11312
|
+
|
|
11313
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11314
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
11315
|
+
|
|
11316
|
+
|
|
11317
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11318
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11319
|
+
|
|
11320
|
+
|
|
11321
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11322
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
11323
|
+
|
|
11324
|
+
|
|
11325
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:09 +0100
|
|
11326
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11327
|
+
|
|
11328
|
+
|
|
11329
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:22:14 +0100
|
|
11330
|
+
Processing by Medivo::LabsController#data as JS
|
|
11331
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11332
|
+
Completed 200 OK in 1494ms (Views: 4.6ms)
|
|
11333
|
+
|
|
11334
|
+
|
|
11335
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:22:16 +0100
|
|
11336
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11337
|
+
|
|
11338
|
+
|
|
11339
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11340
|
+
Processing by LabsController#search as HTML
|
|
11341
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11342
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
11343
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11344
|
+
Completed 200 OK in 229ms (Views: 220.5ms)
|
|
11345
|
+
|
|
11346
|
+
|
|
11347
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11348
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11349
|
+
|
|
11350
|
+
|
|
11351
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11352
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11353
|
+
|
|
11354
|
+
|
|
11355
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11356
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11357
|
+
|
|
11358
|
+
|
|
11359
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11360
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11361
|
+
|
|
11362
|
+
|
|
11363
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11364
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11365
|
+
|
|
11366
|
+
|
|
11367
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11368
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11369
|
+
|
|
11370
|
+
|
|
11371
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11372
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11373
|
+
|
|
11374
|
+
|
|
11375
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:22:38 +0100
|
|
11376
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11377
|
+
|
|
11378
|
+
|
|
11379
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:22:42 +0100
|
|
11380
|
+
Processing by Medivo::LabsController#data as JS
|
|
11381
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11382
|
+
Completed 200 OK in 1106ms (Views: 4.8ms)
|
|
11383
|
+
|
|
11384
|
+
|
|
11385
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:22:43 +0100
|
|
11386
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11387
|
+
|
|
11388
|
+
|
|
11389
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:24:07 +0100
|
|
11390
|
+
Processing by LabsController#search as HTML
|
|
11391
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11392
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
11393
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11394
|
+
Completed 200 OK in 263ms (Views: 255.5ms)
|
|
11395
|
+
|
|
11396
|
+
|
|
11397
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11398
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11399
|
+
|
|
11400
|
+
|
|
11401
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11402
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11403
|
+
|
|
11404
|
+
|
|
11405
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11406
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11407
|
+
|
|
11408
|
+
|
|
11409
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11410
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11411
|
+
|
|
11412
|
+
|
|
11413
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11414
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11415
|
+
|
|
11416
|
+
|
|
11417
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11418
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11419
|
+
|
|
11420
|
+
|
|
11421
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11422
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11423
|
+
|
|
11424
|
+
|
|
11425
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:24:08 +0100
|
|
11426
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11427
|
+
|
|
11428
|
+
|
|
11429
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:24:12 +0100
|
|
11430
|
+
Processing by Medivo::LabsController#data as JS
|
|
11431
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11432
|
+
Completed 200 OK in 1190ms (Views: 5.1ms)
|
|
11433
|
+
|
|
11434
|
+
|
|
11435
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:24:13 +0100
|
|
11436
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11437
|
+
|
|
11438
|
+
|
|
11439
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:24:13 +0100
|
|
11440
|
+
Served asset /medivo/markerA.png - 304 Not Modified (4ms)
|
|
11441
|
+
|
|
11442
|
+
|
|
11443
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11444
|
+
Processing by LabsController#search as HTML
|
|
11445
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
11446
|
+
Compiled medivo/models.js (212ms) (pid 92027)
|
|
11447
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11448
|
+
Completed 200 OK in 255ms (Views: 246.3ms)
|
|
11449
|
+
|
|
11450
|
+
|
|
11451
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11452
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11453
|
+
|
|
11454
|
+
|
|
11455
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11456
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11457
|
+
|
|
11458
|
+
|
|
11459
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11460
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11461
|
+
|
|
11462
|
+
|
|
11463
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11464
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11465
|
+
|
|
11466
|
+
|
|
11467
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11468
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11469
|
+
|
|
11470
|
+
|
|
11471
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11472
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11473
|
+
|
|
11474
|
+
|
|
11475
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11476
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11477
|
+
|
|
11478
|
+
|
|
11479
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:25:43 +0100
|
|
11480
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11481
|
+
|
|
11482
|
+
|
|
11483
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:25:47 +0100
|
|
11484
|
+
Processing by Medivo::LabsController#data as JS
|
|
11485
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11486
|
+
Completed 200 OK in 1276ms (Views: 5.2ms)
|
|
11487
|
+
|
|
11488
|
+
|
|
11489
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:25:48 +0100
|
|
11490
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11491
|
+
|
|
11492
|
+
|
|
11493
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:25:48 +0100
|
|
11494
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
11495
|
+
|
|
11496
|
+
|
|
11497
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 11:25:48 +0100
|
|
11498
|
+
Served asset /medivo/markerB.png - 304 Not Modified (3ms)
|
|
11499
|
+
|
|
11500
|
+
|
|
11501
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 11:25:48 +0100
|
|
11502
|
+
Served asset /medivo/markerC.png - 304 Not Modified (29ms)
|
|
11503
|
+
|
|
11504
|
+
|
|
11505
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:26:35 +0100
|
|
11506
|
+
Processing by LabsController#search as HTML
|
|
11507
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
11508
|
+
Compiled medivo/models.js (190ms) (pid 92027)
|
|
11509
|
+
Compiled application.js (10ms) (pid 92027)
|
|
11510
|
+
Completed 200 OK in 229ms (Views: 221.2ms)
|
|
11511
|
+
|
|
11512
|
+
|
|
11513
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11514
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11515
|
+
|
|
11516
|
+
|
|
11517
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11518
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11519
|
+
|
|
11520
|
+
|
|
11521
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11522
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11523
|
+
|
|
11524
|
+
|
|
11525
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11526
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11527
|
+
|
|
11528
|
+
|
|
11529
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11530
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11531
|
+
|
|
11532
|
+
|
|
11533
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11534
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11535
|
+
|
|
11536
|
+
|
|
11537
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11538
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11539
|
+
|
|
11540
|
+
|
|
11541
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:26:36 +0100
|
|
11542
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11543
|
+
|
|
11544
|
+
|
|
11545
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:26:42 +0100
|
|
11546
|
+
Processing by Medivo::LabsController#data as JS
|
|
11547
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11548
|
+
Completed 200 OK in 1010ms (Views: 4.9ms)
|
|
11549
|
+
|
|
11550
|
+
|
|
11551
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:26:43 +0100
|
|
11552
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
11553
|
+
|
|
11554
|
+
|
|
11555
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 11:26:43 +0100
|
|
11556
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
11557
|
+
|
|
11558
|
+
|
|
11559
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 11:26:43 +0100
|
|
11560
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
|
11561
|
+
|
|
11562
|
+
|
|
11563
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:26:43 +0100
|
|
11564
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11565
|
+
|
|
11566
|
+
|
|
11567
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:32:09 +0100
|
|
11568
|
+
Processing by LabsController#search as HTML
|
|
11569
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
11570
|
+
Compiled medivo/views.js (180ms) (pid 92027)
|
|
11571
|
+
Compiled medivo/models.js (188ms) (pid 92027)
|
|
11572
|
+
Compiled application.js (50ms) (pid 92027)
|
|
11573
|
+
Completed 200 OK in 456ms (Views: 447.4ms)
|
|
11574
|
+
|
|
11575
|
+
|
|
11576
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11577
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11578
|
+
|
|
11579
|
+
|
|
11580
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11581
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11582
|
+
|
|
11583
|
+
|
|
11584
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11585
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11586
|
+
|
|
11587
|
+
|
|
11588
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11589
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11590
|
+
|
|
11591
|
+
|
|
11592
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11593
|
+
Served asset /medivo/views.js - 304 Not Modified (2ms)
|
|
11594
|
+
|
|
11595
|
+
|
|
11596
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11597
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11598
|
+
|
|
11599
|
+
|
|
11600
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11601
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11602
|
+
|
|
11603
|
+
|
|
11604
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:32:10 +0100
|
|
11605
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11606
|
+
|
|
11607
|
+
|
|
11608
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:32:19 +0100
|
|
11609
|
+
Processing by Medivo::LabsController#data as JS
|
|
11610
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
11611
|
+
Completed 200 OK in 1052ms (Views: 5.8ms)
|
|
11612
|
+
|
|
11613
|
+
|
|
11614
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:32:20 +0100
|
|
11615
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
11616
|
+
|
|
11617
|
+
|
|
11618
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 11:32:20 +0100
|
|
11619
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
|
11620
|
+
|
|
11621
|
+
|
|
11622
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 11:32:20 +0100
|
|
11623
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
11624
|
+
|
|
11625
|
+
|
|
11626
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:32:20 +0100
|
|
11627
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
11628
|
+
|
|
11629
|
+
|
|
11630
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11631
|
+
Processing by LabsController#search as HTML
|
|
11632
|
+
Rendered labs/search.html.haml within layouts/application (3.6ms)
|
|
11633
|
+
Compiled medivo/models.js (190ms) (pid 92027)
|
|
11634
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11635
|
+
Completed 200 OK in 261ms (Views: 226.9ms)
|
|
11636
|
+
|
|
11637
|
+
|
|
11638
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11639
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11640
|
+
|
|
11641
|
+
|
|
11642
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11643
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11644
|
+
|
|
11645
|
+
|
|
11646
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11647
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11648
|
+
|
|
11649
|
+
|
|
11650
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11651
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11652
|
+
|
|
11653
|
+
|
|
11654
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11655
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11656
|
+
|
|
11657
|
+
|
|
11658
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11659
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11660
|
+
|
|
11661
|
+
|
|
11662
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11663
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11664
|
+
|
|
11665
|
+
|
|
11666
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:11 +0100
|
|
11667
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11668
|
+
|
|
11669
|
+
|
|
11670
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11671
|
+
Processing by LabsController#search as HTML
|
|
11672
|
+
Rendered labs/search.html.haml within layouts/application (2.5ms)
|
|
11673
|
+
Compiled medivo/models.js (210ms) (pid 92027)
|
|
11674
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11675
|
+
Completed 200 OK in 253ms (Views: 244.3ms)
|
|
11676
|
+
|
|
11677
|
+
|
|
11678
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11679
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11680
|
+
|
|
11681
|
+
|
|
11682
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11683
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11684
|
+
|
|
11685
|
+
|
|
11686
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11687
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11688
|
+
|
|
11689
|
+
|
|
11690
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11691
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11692
|
+
|
|
11693
|
+
|
|
11694
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11695
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11696
|
+
|
|
11697
|
+
|
|
11698
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11699
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11700
|
+
|
|
11701
|
+
|
|
11702
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11703
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11704
|
+
|
|
11705
|
+
|
|
11706
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:39 +0100
|
|
11707
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11708
|
+
|
|
11709
|
+
|
|
11710
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11711
|
+
Processing by LabsController#search as HTML
|
|
11712
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
11713
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
11714
|
+
Compiled application.js (42ms) (pid 92027)
|
|
11715
|
+
Completed 200 OK in 262ms (Views: 251.9ms)
|
|
11716
|
+
|
|
11717
|
+
|
|
11718
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11719
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11720
|
+
|
|
11721
|
+
|
|
11722
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11723
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11724
|
+
|
|
11725
|
+
|
|
11726
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11727
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11728
|
+
|
|
11729
|
+
|
|
11730
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11731
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11732
|
+
|
|
11733
|
+
|
|
11734
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11735
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11736
|
+
|
|
11737
|
+
|
|
11738
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11739
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11740
|
+
|
|
11741
|
+
|
|
11742
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11743
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11744
|
+
|
|
11745
|
+
|
|
11746
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:34:49 +0100
|
|
11747
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11748
|
+
|
|
11749
|
+
|
|
11750
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11751
|
+
Processing by LabsController#search as HTML
|
|
11752
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11753
|
+
Compiled medivo/models.js (188ms) (pid 92027)
|
|
11754
|
+
Compiled application.js (10ms) (pid 92027)
|
|
11755
|
+
Completed 200 OK in 258ms (Views: 249.7ms)
|
|
11756
|
+
|
|
11757
|
+
|
|
11758
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11759
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11760
|
+
|
|
11761
|
+
|
|
11762
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11763
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11764
|
+
|
|
11765
|
+
|
|
11766
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11767
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11768
|
+
|
|
11769
|
+
|
|
11770
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11771
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11772
|
+
|
|
11773
|
+
|
|
11774
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11775
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11776
|
+
|
|
11777
|
+
|
|
11778
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11779
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
11780
|
+
|
|
11781
|
+
|
|
11782
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11783
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11784
|
+
|
|
11785
|
+
|
|
11786
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:19 +0100
|
|
11787
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11788
|
+
|
|
11789
|
+
|
|
11790
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11791
|
+
Processing by LabsController#search as HTML
|
|
11792
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
11793
|
+
Compiled medivo/models.js (188ms) (pid 92027)
|
|
11794
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11795
|
+
Completed 200 OK in 229ms (Views: 219.8ms)
|
|
11796
|
+
|
|
11797
|
+
|
|
11798
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11799
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11800
|
+
|
|
11801
|
+
|
|
11802
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11803
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11804
|
+
|
|
11805
|
+
|
|
11806
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11807
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11808
|
+
|
|
11809
|
+
|
|
11810
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11811
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11812
|
+
|
|
11813
|
+
|
|
11814
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11815
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11816
|
+
|
|
11817
|
+
|
|
11818
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11819
|
+
Served asset /medivo/models.js - 200 OK (32ms)
|
|
11820
|
+
|
|
11821
|
+
|
|
11822
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11823
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11824
|
+
|
|
11825
|
+
|
|
11826
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:36 +0100
|
|
11827
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11828
|
+
|
|
11829
|
+
|
|
11830
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11831
|
+
Processing by LabsController#search as HTML
|
|
11832
|
+
Rendered labs/search.html.haml within layouts/application (2.4ms)
|
|
11833
|
+
Compiled medivo/models.js (195ms) (pid 92027)
|
|
11834
|
+
Compiled application.js (11ms) (pid 92027)
|
|
11835
|
+
Completed 200 OK in 236ms (Views: 227.4ms)
|
|
11836
|
+
|
|
11837
|
+
|
|
11838
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11839
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11840
|
+
|
|
11841
|
+
|
|
11842
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11843
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11844
|
+
|
|
11845
|
+
|
|
11846
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11847
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11848
|
+
|
|
11849
|
+
|
|
11850
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11851
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11852
|
+
|
|
11853
|
+
|
|
11854
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11855
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11856
|
+
|
|
11857
|
+
|
|
11858
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11859
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11860
|
+
|
|
11861
|
+
|
|
11862
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11863
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
11864
|
+
|
|
11865
|
+
|
|
11866
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:35:42 +0100
|
|
11867
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11868
|
+
|
|
11869
|
+
|
|
11870
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:36:01 +0100
|
|
11871
|
+
Processing by LabsController#search as HTML
|
|
11872
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
11873
|
+
Compiled medivo/models.js (189ms) (pid 92027)
|
|
11874
|
+
Cache for Asset (application.js) is stale
|
|
11875
|
+
Error: Parse error on line 8: Unexpected 'INDENT'
|
|
11876
|
+
Compiled application.js (12ms) (pid 92027)
|
|
11877
|
+
Completed 500 Internal Server Error in 633ms
|
|
11878
|
+
|
|
11879
|
+
ActionView::Template::Error (Error: Parse error on line 8: Unexpected 'INDENT'
|
|
11880
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/show_labs.coffee)):
|
|
11881
|
+
3: %title Dummy
|
|
11882
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
11883
|
+
5: = stylesheet_link_tag "application"
|
|
11884
|
+
6: = javascript_include_tag "application"
|
|
11885
|
+
7: = csrf_meta_tags
|
|
11886
|
+
8: %body
|
|
11887
|
+
9:
|
|
11888
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
11889
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
11890
|
+
|
|
11891
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
|
11892
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
|
11893
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms)
|
|
11894
|
+
|
|
11895
|
+
|
|
11896
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:36:04 +0100
|
|
11897
|
+
Processing by LabsController#search as HTML
|
|
11898
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
11899
|
+
Compiled medivo/show_labs.js (173ms) (pid 92027)
|
|
11900
|
+
Compiled application.js (10ms) (pid 92027)
|
|
11901
|
+
Completed 200 OK in 241ms (Views: 205.8ms)
|
|
11902
|
+
|
|
11903
|
+
|
|
11904
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11905
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11906
|
+
|
|
11907
|
+
|
|
11908
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11909
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11910
|
+
|
|
11911
|
+
|
|
11912
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11913
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11914
|
+
|
|
11915
|
+
|
|
11916
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11917
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
11918
|
+
|
|
11919
|
+
|
|
11920
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11921
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11922
|
+
|
|
11923
|
+
|
|
11924
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11925
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11926
|
+
|
|
11927
|
+
|
|
11928
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11929
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
11930
|
+
|
|
11931
|
+
|
|
11932
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:05 +0100
|
|
11933
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11934
|
+
|
|
11935
|
+
|
|
11936
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:36:20 +0100
|
|
11937
|
+
Processing by LabsController#search as HTML
|
|
11938
|
+
Rendered labs/search.html.haml within layouts/application (4.2ms)
|
|
11939
|
+
Compiled medivo/show_labs.js (194ms) (pid 92027)
|
|
11940
|
+
Compiled application.js (13ms) (pid 92027)
|
|
11941
|
+
Completed 200 OK in 243ms (Views: 232.0ms)
|
|
11942
|
+
|
|
11943
|
+
|
|
11944
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11945
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11946
|
+
|
|
11947
|
+
|
|
11948
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11949
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11950
|
+
|
|
11951
|
+
|
|
11952
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11953
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11954
|
+
|
|
11955
|
+
|
|
11956
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11957
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
11958
|
+
|
|
11959
|
+
|
|
11960
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11961
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
11962
|
+
|
|
11963
|
+
|
|
11964
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11965
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
11966
|
+
|
|
11967
|
+
|
|
11968
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11969
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
11970
|
+
|
|
11971
|
+
|
|
11972
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:21 +0100
|
|
11973
|
+
Served asset /application.js - 200 OK (0ms)
|
|
11974
|
+
|
|
11975
|
+
|
|
11976
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
11977
|
+
Processing by LabsController#search as HTML
|
|
11978
|
+
Rendered labs/search.html.haml within layouts/application (2.5ms)
|
|
11979
|
+
Compiled medivo/show_labs.js (170ms) (pid 92027)
|
|
11980
|
+
Compiled application.js (46ms) (pid 92027)
|
|
11981
|
+
Completed 200 OK in 249ms (Views: 237.7ms)
|
|
11982
|
+
|
|
11983
|
+
|
|
11984
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
11985
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
11986
|
+
|
|
11987
|
+
|
|
11988
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
11989
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
11990
|
+
|
|
11991
|
+
|
|
11992
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
11993
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
11994
|
+
|
|
11995
|
+
|
|
11996
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
11997
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
11998
|
+
|
|
11999
|
+
|
|
12000
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
12001
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12002
|
+
|
|
12003
|
+
|
|
12004
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
12005
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12006
|
+
|
|
12007
|
+
|
|
12008
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
12009
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
12010
|
+
|
|
12011
|
+
|
|
12012
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:41 +0100
|
|
12013
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12014
|
+
|
|
12015
|
+
|
|
12016
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12017
|
+
Processing by LabsController#search as HTML
|
|
12018
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
12019
|
+
Compiled medivo/show_labs.js (164ms) (pid 92027)
|
|
12020
|
+
Compiled application.js (12ms) (pid 92027)
|
|
12021
|
+
Completed 200 OK in 235ms (Views: 226.7ms)
|
|
12022
|
+
|
|
12023
|
+
|
|
12024
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12025
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12026
|
+
|
|
12027
|
+
|
|
12028
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12029
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12030
|
+
|
|
12031
|
+
|
|
12032
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12033
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12034
|
+
|
|
12035
|
+
|
|
12036
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12037
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12038
|
+
|
|
12039
|
+
|
|
12040
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12041
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
12042
|
+
|
|
12043
|
+
|
|
12044
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12045
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12046
|
+
|
|
12047
|
+
|
|
12048
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12049
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (4ms)
|
|
12050
|
+
|
|
12051
|
+
|
|
12052
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:36:51 +0100
|
|
12053
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
12054
|
+
|
|
12055
|
+
|
|
12056
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12057
|
+
Processing by LabsController#search as HTML
|
|
12058
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
12059
|
+
Compiled medivo/models.js (186ms) (pid 92027)
|
|
12060
|
+
Compiled application.js (10ms) (pid 92027)
|
|
12061
|
+
Completed 200 OK in 226ms (Views: 217.6ms)
|
|
12062
|
+
|
|
12063
|
+
|
|
12064
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12065
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12066
|
+
|
|
12067
|
+
|
|
12068
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12069
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12070
|
+
|
|
12071
|
+
|
|
12072
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12073
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12074
|
+
|
|
12075
|
+
|
|
12076
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12077
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
12078
|
+
|
|
12079
|
+
|
|
12080
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12081
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12082
|
+
|
|
12083
|
+
|
|
12084
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12085
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12086
|
+
|
|
12087
|
+
|
|
12088
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12089
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
12090
|
+
|
|
12091
|
+
|
|
12092
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:37:24 +0100
|
|
12093
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12094
|
+
|
|
12095
|
+
|
|
12096
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:38:34 +0100
|
|
12097
|
+
Processing by LabsController#search as HTML
|
|
12098
|
+
Rendered labs/search.html.haml within layouts/application (2.0ms)
|
|
12099
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
12100
|
+
Compiled application.js (10ms) (pid 92027)
|
|
12101
|
+
Completed 200 OK in 209ms (Views: 199.5ms)
|
|
12102
|
+
|
|
12103
|
+
|
|
12104
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12105
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12106
|
+
|
|
12107
|
+
|
|
12108
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12109
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12110
|
+
|
|
12111
|
+
|
|
12112
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12113
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12114
|
+
|
|
12115
|
+
|
|
12116
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12117
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
12118
|
+
|
|
12119
|
+
|
|
12120
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12121
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12122
|
+
|
|
12123
|
+
|
|
12124
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12125
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12126
|
+
|
|
12127
|
+
|
|
12128
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12129
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
12130
|
+
|
|
12131
|
+
|
|
12132
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:38:35 +0100
|
|
12133
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12134
|
+
|
|
12135
|
+
|
|
12136
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:38:39 +0100
|
|
12137
|
+
Processing by Medivo::LabsController#data as JS
|
|
12138
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
12139
|
+
Completed 200 OK in 1948ms (Views: 4.7ms)
|
|
12140
|
+
|
|
12141
|
+
|
|
12142
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:38:41 +0100
|
|
12143
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
12144
|
+
|
|
12145
|
+
|
|
12146
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 11:38:41 +0100
|
|
12147
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
|
12148
|
+
|
|
12149
|
+
|
|
12150
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 11:38:41 +0100
|
|
12151
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
12152
|
+
|
|
12153
|
+
|
|
12154
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:38:41 +0100
|
|
12155
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
12156
|
+
|
|
12157
|
+
|
|
12158
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12159
|
+
Processing by LabsController#search as HTML
|
|
12160
|
+
Rendered labs/search.html.haml within layouts/application (2.3ms)
|
|
12161
|
+
Compiled medivo/models.js (202ms) (pid 92027)
|
|
12162
|
+
Compiled medivo/show_labs.js (166ms) (pid 92027)
|
|
12163
|
+
Compiled application.js (10ms) (pid 92027)
|
|
12164
|
+
Completed 200 OK in 451ms (Views: 440.8ms)
|
|
12165
|
+
|
|
12166
|
+
|
|
12167
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12168
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12169
|
+
|
|
12170
|
+
|
|
12171
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12172
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12173
|
+
|
|
12174
|
+
|
|
12175
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12176
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12177
|
+
|
|
12178
|
+
|
|
12179
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12180
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12181
|
+
|
|
12182
|
+
|
|
12183
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12184
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12185
|
+
|
|
12186
|
+
|
|
12187
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12188
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
12189
|
+
|
|
12190
|
+
|
|
12191
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12192
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
12193
|
+
|
|
12194
|
+
|
|
12195
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:10 +0100
|
|
12196
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12197
|
+
|
|
12198
|
+
|
|
12199
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12200
|
+
Processing by LabsController#search as HTML
|
|
12201
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
12202
|
+
Compiled medivo/show_labs.js (167ms) (pid 92027)
|
|
12203
|
+
Compiled application.js (11ms) (pid 92027)
|
|
12204
|
+
Completed 200 OK in 210ms (Views: 200.7ms)
|
|
12205
|
+
|
|
12206
|
+
|
|
12207
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12208
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12209
|
+
|
|
12210
|
+
|
|
12211
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12212
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12213
|
+
|
|
12214
|
+
|
|
12215
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12216
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12217
|
+
|
|
12218
|
+
|
|
12219
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12220
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12221
|
+
|
|
12222
|
+
|
|
12223
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12224
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
12225
|
+
|
|
12226
|
+
|
|
12227
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12228
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12229
|
+
|
|
12230
|
+
|
|
12231
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12232
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
12233
|
+
|
|
12234
|
+
|
|
12235
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:39:52 +0100
|
|
12236
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12237
|
+
|
|
12238
|
+
|
|
12239
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:42:30 +0100
|
|
12240
|
+
Processing by LabsController#search as HTML
|
|
12241
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
12242
|
+
Compiled medivo/models.js (187ms) (pid 92027)
|
|
12243
|
+
Compiled medivo/show_labs.js (165ms) (pid 92027)
|
|
12244
|
+
Compiled application.js (10ms) (pid 92027)
|
|
12245
|
+
Completed 200 OK in 399ms (Views: 390.4ms)
|
|
12246
|
+
|
|
12247
|
+
|
|
12248
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:42:30 +0100
|
|
12249
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12250
|
+
|
|
12251
|
+
|
|
12252
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12253
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12254
|
+
|
|
12255
|
+
|
|
12256
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12257
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12258
|
+
|
|
12259
|
+
|
|
12260
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12261
|
+
Served asset /medivo/models.js - 200 OK (3ms)
|
|
12262
|
+
|
|
12263
|
+
|
|
12264
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12265
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12266
|
+
|
|
12267
|
+
|
|
12268
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12269
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12270
|
+
|
|
12271
|
+
|
|
12272
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12273
|
+
Served asset /medivo/show_labs.js - 200 OK (3ms)
|
|
12274
|
+
|
|
12275
|
+
|
|
12276
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:31 +0100
|
|
12277
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12278
|
+
|
|
12279
|
+
|
|
12280
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12281
|
+
Processing by LabsController#search as HTML
|
|
12282
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
12283
|
+
Compiled medivo/show_labs.js (168ms) (pid 92027)
|
|
12284
|
+
Compiled application.js (10ms) (pid 92027)
|
|
12285
|
+
Completed 200 OK in 215ms (Views: 201.4ms)
|
|
12286
|
+
|
|
12287
|
+
|
|
12288
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12289
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12290
|
+
|
|
12291
|
+
|
|
12292
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12293
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12294
|
+
|
|
12295
|
+
|
|
12296
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12297
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12298
|
+
|
|
12299
|
+
|
|
12300
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12301
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12302
|
+
|
|
12303
|
+
|
|
12304
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12305
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
|
12306
|
+
|
|
12307
|
+
|
|
12308
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12309
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
12310
|
+
|
|
12311
|
+
|
|
12312
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12313
|
+
Served asset /medivo/show_labs.js - 200 OK (2ms)
|
|
12314
|
+
|
|
12315
|
+
|
|
12316
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:42:39 +0100
|
|
12317
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12318
|
+
|
|
12319
|
+
|
|
12320
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:43:51 +0100
|
|
12321
|
+
Processing by LabsController#search as HTML
|
|
12322
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
12323
|
+
Compiled medivo/views.js (180ms) (pid 92027)
|
|
12324
|
+
Compiled medivo/models.js (184ms) (pid 92027)
|
|
12325
|
+
Compiled medivo/show_labs.js (164ms) (pid 92027)
|
|
12326
|
+
Compiled application.js (11ms) (pid 92027)
|
|
12327
|
+
Completed 200 OK in 612ms (Views: 572.7ms)
|
|
12328
|
+
|
|
12329
|
+
|
|
12330
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12331
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12332
|
+
|
|
12333
|
+
|
|
12334
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12335
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12336
|
+
|
|
12337
|
+
|
|
12338
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12339
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12340
|
+
|
|
12341
|
+
|
|
12342
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12343
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12344
|
+
|
|
12345
|
+
|
|
12346
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12347
|
+
Served asset /medivo/models.js - 200 OK (2ms)
|
|
12348
|
+
|
|
12349
|
+
|
|
12350
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12351
|
+
Served asset /medivo/views.js - 200 OK (2ms)
|
|
12352
|
+
|
|
12353
|
+
|
|
12354
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12355
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (2ms)
|
|
12356
|
+
|
|
12357
|
+
|
|
12358
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:43:52 +0100
|
|
12359
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12360
|
+
|
|
12361
|
+
|
|
12362
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12363
|
+
Processing by LabsController#search as HTML
|
|
12364
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
12365
|
+
Compiled medivo/views.js (179ms) (pid 92027)
|
|
12366
|
+
Compiled application.js (11ms) (pid 92027)
|
|
12367
|
+
Completed 200 OK in 220ms (Views: 211.1ms)
|
|
12368
|
+
|
|
12369
|
+
|
|
12370
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12371
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12372
|
+
|
|
12373
|
+
|
|
12374
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12375
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12376
|
+
|
|
12377
|
+
|
|
12378
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12379
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12380
|
+
|
|
12381
|
+
|
|
12382
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12383
|
+
Served asset /medivo/views.js - 200 OK (3ms)
|
|
12384
|
+
|
|
12385
|
+
|
|
12386
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12387
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12388
|
+
|
|
12389
|
+
|
|
12390
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12391
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
|
12392
|
+
|
|
12393
|
+
|
|
12394
|
+
Started GET "/assets/medivo/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12395
|
+
Served asset /medivo/show_labs.js - 304 Not Modified (0ms)
|
|
12396
|
+
|
|
12397
|
+
|
|
12398
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:44:40 +0100
|
|
12399
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12400
|
+
|
|
12401
|
+
|
|
12402
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:44:45 +0100
|
|
12403
|
+
Processing by Medivo::LabsController#data as JS
|
|
12404
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
12405
|
+
Completed 200 OK in 1267ms (Views: 4.8ms)
|
|
12406
|
+
|
|
12407
|
+
|
|
12408
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:44:46 +0100
|
|
12409
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
12410
|
+
|
|
12411
|
+
|
|
12412
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 11:44:46 +0100
|
|
12413
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
12414
|
+
|
|
12415
|
+
|
|
12416
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 11:44:46 +0100
|
|
12417
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
|
12418
|
+
|
|
12419
|
+
|
|
12420
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:44:46 +0100
|
|
12421
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
12422
|
+
|
|
12423
|
+
|
|
12424
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12425
|
+
Processing by LabsController#search as HTML
|
|
12426
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
12427
|
+
Compiled application.js (5ms) (pid 92027)
|
|
12428
|
+
Compiled medivo/lab_list/application.js (2ms) (pid 92027)
|
|
12429
|
+
Compiled medivo/lab_list/handle_ajax.js (167ms) (pid 92027)
|
|
12430
|
+
Compiled medivo/lab_list/models.js (186ms) (pid 92027)
|
|
12431
|
+
Compiled medivo/lab_list/sample/show_labs.js (158ms) (pid 92027)
|
|
12432
|
+
Compiled medivo/lab_list/views.js (179ms) (pid 92027)
|
|
12433
|
+
Completed 200 OK in 843ms (Views: 835.3ms)
|
|
12434
|
+
|
|
12435
|
+
|
|
12436
|
+
Started GET "/assets/medivo/lab_list/handle_ajax.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12437
|
+
Served asset /medivo/lab_list/handle_ajax.js - 200 OK (10ms)
|
|
12438
|
+
|
|
12439
|
+
|
|
12440
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12441
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 200 OK (2ms)
|
|
12442
|
+
|
|
12443
|
+
|
|
12444
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12445
|
+
Served asset /medivo/lab_list/views.js - 200 OK (2ms)
|
|
12446
|
+
|
|
12447
|
+
|
|
12448
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12449
|
+
Served asset /medivo/lab_list/application.js - 200 OK (5ms)
|
|
12450
|
+
|
|
12451
|
+
|
|
12452
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12453
|
+
Served asset /medivo/lab_list/models.js - 200 OK (2ms)
|
|
12454
|
+
|
|
12455
|
+
|
|
12456
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12457
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12458
|
+
|
|
12459
|
+
|
|
12460
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12461
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12462
|
+
|
|
12463
|
+
|
|
12464
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12465
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12466
|
+
|
|
12467
|
+
|
|
12468
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12469
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12470
|
+
|
|
12471
|
+
|
|
12472
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:54:18 +0100
|
|
12473
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12474
|
+
|
|
12475
|
+
|
|
12476
|
+
Started GET "/medivo/labs/data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 11:54:24 +0100
|
|
12477
|
+
Processing by Medivo::LabsController#data as JS
|
|
12478
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
12479
|
+
Completed 200 OK in 1457ms (Views: 8.5ms)
|
|
12480
|
+
|
|
12481
|
+
|
|
12482
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 11:54:25 +0100
|
|
12483
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
12484
|
+
|
|
12485
|
+
|
|
12486
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 11:54:25 +0100
|
|
12487
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
|
12488
|
+
|
|
12489
|
+
|
|
12490
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 11:54:25 +0100
|
|
12491
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
12492
|
+
|
|
12493
|
+
|
|
12494
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 11:54:25 +0100
|
|
12495
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
|
12496
|
+
|
|
12497
|
+
|
|
12498
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:55:20 +0100
|
|
12499
|
+
Processing by LabsController#search as HTML
|
|
12500
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
12501
|
+
Cache for Asset (application.js) is stale
|
|
12502
|
+
Error: Parse error on line 1: Unexpected 'INDENT'
|
|
12503
|
+
Compiled application.js (8ms) (pid 92027)
|
|
12504
|
+
Cache for Asset (medivo/lab_list/application.js) is stale
|
|
12505
|
+
Error: Parse error on line 1: Unexpected 'INDENT'
|
|
12506
|
+
Compiled medivo/lab_list/application.js (5ms) (pid 92027)
|
|
12507
|
+
Completed 500 Internal Server Error in 640ms
|
|
12508
|
+
|
|
12509
|
+
ActionView::Template::Error (Error: Parse error on line 1: Unexpected 'INDENT'
|
|
12510
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/lab_list/sample/show_labs.coffee)):
|
|
12511
|
+
3: %title Dummy
|
|
12512
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
12513
|
+
5: = stylesheet_link_tag "application"
|
|
12514
|
+
6: = javascript_include_tag "application"
|
|
12515
|
+
7: = csrf_meta_tags
|
|
12516
|
+
8: %body
|
|
12517
|
+
9:
|
|
12518
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
12519
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
12520
|
+
|
|
12521
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
|
|
12522
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
|
12523
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.3ms)
|
|
12524
|
+
|
|
12525
|
+
|
|
12526
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:57:32 +0100
|
|
12527
|
+
Processing by LabsController#search as HTML
|
|
12528
|
+
Rendered labs/search.html.haml within layouts/application (3.2ms)
|
|
12529
|
+
Cache for Asset (application.js) is stale
|
|
12530
|
+
Error: Parse error on line 2: Unexpected 'INDENT'
|
|
12531
|
+
Compiled application.js (8ms) (pid 92027)
|
|
12532
|
+
Cache for Asset (medivo/lab_list/application.js) is stale
|
|
12533
|
+
Error: Parse error on line 2: Unexpected 'INDENT'
|
|
12534
|
+
Compiled medivo/lab_list/application.js (4ms) (pid 92027)
|
|
12535
|
+
Completed 500 Internal Server Error in 605ms
|
|
12536
|
+
|
|
12537
|
+
ActionView::Template::Error (Error: Parse error on line 2: Unexpected 'INDENT'
|
|
12538
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/lab_list/sample/show_labs.coffee)):
|
|
12539
|
+
3: %title Dummy
|
|
12540
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
12541
|
+
5: = stylesheet_link_tag "application"
|
|
12542
|
+
6: = javascript_include_tag "application"
|
|
12543
|
+
7: = csrf_meta_tags
|
|
12544
|
+
8: %body
|
|
12545
|
+
9:
|
|
12546
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
12547
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
12548
|
+
|
|
12549
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
|
12550
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
|
12551
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (36.9ms)
|
|
12552
|
+
|
|
12553
|
+
|
|
12554
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:57:35 +0100
|
|
12555
|
+
Processing by LabsController#search as HTML
|
|
12556
|
+
Rendered labs/search.html.haml within layouts/application (2.6ms)
|
|
12557
|
+
Cache for Asset (application.js) is stale
|
|
12558
|
+
Error: Parse error on line 2: Unexpected 'INDENT'
|
|
12559
|
+
Compiled application.js (7ms) (pid 92027)
|
|
12560
|
+
Cache for Asset (medivo/lab_list/application.js) is stale
|
|
12561
|
+
Error: Parse error on line 2: Unexpected 'INDENT'
|
|
12562
|
+
Compiled medivo/lab_list/application.js (4ms) (pid 92027)
|
|
12563
|
+
Completed 500 Internal Server Error in 597ms
|
|
12564
|
+
|
|
12565
|
+
ActionView::Template::Error (Error: Parse error on line 2: Unexpected 'INDENT'
|
|
12566
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/lab_list/sample/show_labs.coffee)):
|
|
12567
|
+
3: %title Dummy
|
|
12568
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
12569
|
+
5: = stylesheet_link_tag "application"
|
|
12570
|
+
6: = javascript_include_tag "application"
|
|
12571
|
+
7: = csrf_meta_tags
|
|
12572
|
+
8: %body
|
|
12573
|
+
9:
|
|
12574
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
12575
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
12576
|
+
|
|
12577
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
|
|
12578
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
|
12579
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
|
|
12580
|
+
|
|
12581
|
+
|
|
12582
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12583
|
+
Processing by LabsController#search as HTML
|
|
12584
|
+
Rendered labs/search.html.haml within layouts/application (2.7ms)
|
|
12585
|
+
Compiled medivo/lab_list/sample/show_labs.js (158ms) (pid 92027)
|
|
12586
|
+
Compiled medivo/lab_list/application.js (3ms) (pid 92027)
|
|
12587
|
+
Compiled application.js (6ms) (pid 92027)
|
|
12588
|
+
Completed 200 OK in 215ms (Views: 205.9ms)
|
|
12589
|
+
|
|
12590
|
+
|
|
12591
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12592
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12593
|
+
|
|
12594
|
+
|
|
12595
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12596
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12597
|
+
|
|
12598
|
+
|
|
12599
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12600
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12601
|
+
|
|
12602
|
+
|
|
12603
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12604
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12605
|
+
|
|
12606
|
+
|
|
12607
|
+
Started GET "/assets/medivo/lab_list/handle_ajax.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12608
|
+
Served asset /medivo/lab_list/handle_ajax.js - 304 Not Modified (0ms)
|
|
12609
|
+
|
|
12610
|
+
|
|
12611
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12612
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
|
12613
|
+
|
|
12614
|
+
|
|
12615
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12616
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 200 OK (3ms)
|
|
12617
|
+
|
|
12618
|
+
|
|
12619
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12620
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
|
12621
|
+
|
|
12622
|
+
|
|
12623
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12624
|
+
Served asset /medivo/lab_list/application.js - 200 OK (4ms)
|
|
12625
|
+
|
|
12626
|
+
|
|
12627
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 11:57:57 +0100
|
|
12628
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12629
|
+
|
|
12630
|
+
|
|
12631
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 11:59:22 +0100
|
|
12632
|
+
Processing by LabsController#search as HTML
|
|
12633
|
+
Rendered labs/search.html.haml within layouts/application (2.2ms)
|
|
12634
|
+
Compiled medivo/lab_list/sample/show_labs.js (158ms) (pid 92027)
|
|
12635
|
+
Cache for Asset (application.js) is stale
|
|
12636
|
+
couldn't find file 'models'
|
|
12637
|
+
Compiled application.js (6ms) (pid 92027)
|
|
12638
|
+
Completed 500 Internal Server Error in 230ms
|
|
12639
|
+
|
|
12640
|
+
ActionView::Template::Error (couldn't find file 'models'
|
|
12641
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/lab_list/application.js:7)):
|
|
12642
|
+
3: %title Dummy
|
|
12643
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
12644
|
+
5: = stylesheet_link_tag "application"
|
|
12645
|
+
6: = javascript_include_tag "application"
|
|
12646
|
+
7: = csrf_meta_tags
|
|
12647
|
+
8: %body
|
|
12648
|
+
9:
|
|
12649
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
12650
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
12651
|
+
|
|
12652
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
|
12653
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
|
|
12654
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.7ms)
|
|
12655
|
+
|
|
12656
|
+
|
|
12657
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 12:00:06 +0100
|
|
12658
|
+
Processing by LabsController#search as HTML
|
|
12659
|
+
Rendered labs/search.html.haml within layouts/application (2.6ms)
|
|
12660
|
+
Cache for Asset (application.js) is stale
|
|
12661
|
+
couldn't find file 'views'
|
|
12662
|
+
Compiled application.js (5ms) (pid 92027)
|
|
12663
|
+
Completed 500 Internal Server Error in 69ms
|
|
12664
|
+
|
|
12665
|
+
ActionView::Template::Error (couldn't find file 'views'
|
|
12666
|
+
(in /Users/danielsudol/projects/medivo/medivo_resource/app/assets/javascripts/medivo/lab_list/application.js:8)):
|
|
12667
|
+
3: %title Dummy
|
|
12668
|
+
4: %script{ :type=>"text/javascript", :src=>"https://maps.google.com/maps/api/js?sensor=false"}
|
|
12669
|
+
5: = stylesheet_link_tag "application"
|
|
12670
|
+
6: = javascript_include_tag "application"
|
|
12671
|
+
7: = csrf_meta_tags
|
|
12672
|
+
8: %body
|
|
12673
|
+
9:
|
|
12674
|
+
app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__832357861476209749_2170588360'
|
|
12675
|
+
app/controllers/labs_controller.rb:5:in `search'
|
|
12676
|
+
|
|
12677
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
|
12678
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
|
12679
|
+
Rendered /Users/danielsudol/.rvm/gems/ruby-1.9.2-p290@medivo_resource/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.7ms)
|
|
12680
|
+
|
|
12681
|
+
|
|
12682
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12683
|
+
Processing by LabsController#search as HTML
|
|
12684
|
+
Rendered labs/search.html.haml within layouts/application (1.9ms)
|
|
12685
|
+
Compiled medivo/lab_list/application.js (6ms) (pid 92027)
|
|
12686
|
+
Compiled medivo/lab_list/init.js (190ms) (pid 92027)
|
|
12687
|
+
Compiled application.js (7ms) (pid 92027)
|
|
12688
|
+
Completed 200 OK in 254ms (Views: 245.8ms)
|
|
12689
|
+
|
|
12690
|
+
|
|
12691
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12692
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12693
|
+
|
|
12694
|
+
|
|
12695
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12696
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12697
|
+
|
|
12698
|
+
|
|
12699
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12700
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12701
|
+
|
|
12702
|
+
|
|
12703
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12704
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12705
|
+
|
|
12706
|
+
|
|
12707
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12708
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
|
12709
|
+
|
|
12710
|
+
|
|
12711
|
+
Started GET "/assets/medivo/lab_list/init.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12712
|
+
Served asset /medivo/lab_list/init.js - 200 OK (2ms)
|
|
12713
|
+
|
|
12714
|
+
|
|
12715
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12716
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
|
12717
|
+
|
|
12718
|
+
|
|
12719
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12720
|
+
Served asset /medivo/lab_list/application.js - 200 OK (3ms)
|
|
12721
|
+
|
|
12722
|
+
|
|
12723
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12724
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 200 OK (3ms)
|
|
12725
|
+
|
|
12726
|
+
|
|
12727
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 12:00:22 +0100
|
|
12728
|
+
Served asset /application.js - 200 OK (0ms)
|
|
12729
|
+
|
|
12730
|
+
|
|
12731
|
+
Started GET "/labs/search" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12732
|
+
Processing by LabsController#search as HTML
|
|
12733
|
+
Rendered labs/search.html.haml within layouts/application (2.1ms)
|
|
12734
|
+
Compiled medivo/lab_list/init.js (166ms) (pid 92027)
|
|
12735
|
+
Compiled medivo/lab_list/application.js (8ms) (pid 92027)
|
|
12736
|
+
Compiled application.js (6ms) (pid 92027)
|
|
12737
|
+
Completed 200 OK in 220ms (Views: 212.3ms)
|
|
12738
|
+
|
|
12739
|
+
|
|
12740
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12741
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
12742
|
+
|
|
12743
|
+
|
|
12744
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12745
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
12746
|
+
|
|
12747
|
+
|
|
12748
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12749
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
12750
|
+
|
|
12751
|
+
|
|
12752
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12753
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
|
12754
|
+
|
|
12755
|
+
|
|
12756
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12757
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
|
12758
|
+
|
|
12759
|
+
|
|
12760
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12761
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
|
12762
|
+
|
|
12763
|
+
|
|
12764
|
+
Started GET "/assets/medivo/lab_list/init.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12765
|
+
Served asset /medivo/lab_list/init.js - 304 Not Modified (3ms)
|
|
12766
|
+
|
|
12767
|
+
|
|
12768
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12769
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (3ms)
|
|
12770
|
+
|
|
12771
|
+
|
|
12772
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12773
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
|
12774
|
+
|
|
12775
|
+
|
|
12776
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-27 12:04:34 +0100
|
|
12777
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
12778
|
+
|
|
12779
|
+
|
|
12780
|
+
Started GET "/medivo/labs/lab_data?utf8=%E2%9C%93&zip_code=32206&commit=Search" for 127.0.0.1 at 2011-10-27 12:04:41 +0100
|
|
12781
|
+
Processing by Medivo::LabsController#lab_data as JS
|
|
12782
|
+
Parameters: {"utf8"=>"✓", "zip_code"=>"32206", "commit"=>"Search"}
|
|
12783
|
+
Completed 200 OK in 1769ms (Views: 7.8ms)
|
|
12784
|
+
|
|
12785
|
+
|
|
12786
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-10-27 12:04:43 +0100
|
|
12787
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
|
12788
|
+
|
|
12789
|
+
|
|
12790
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-10-27 12:04:43 +0100
|
|
12791
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
|
12792
|
+
|
|
12793
|
+
|
|
12794
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-10-27 12:04:43 +0100
|
|
12795
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
12796
|
+
|
|
12797
|
+
|
|
12798
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-10-27 12:04:43 +0100
|
|
12799
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|