medivo 0.1.4 → 0.1.5
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/lab_appointment/handlers.coffee +11 -8
- data/lib/medivo/version.rb +1 -1
- data/spec/dummy/log/development.log +1083 -0
- data/spec/dummy/tmp/cache/assets/D41/250/sprockets%2F7b3c4426715dcd1feedc4a95e5444256 +0 -0
- data/spec/dummy/tmp/cache/assets/D60/030/sprockets%2Ffc9485f617fc5e9b8918755d2e08ecc6 +0 -0
- data/spec/dummy/tmp/cache/assets/D69/130/sprockets%2Fbaa4ec50a34ce938c986612c2a47a64e +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/spec/dummy/tmp/cache/assets/DCE/E80/sprockets%2Fc71ec62157b9cc7aabfc030955cef87b +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- metadata +19 -19
@@ -1,9 +1,15 @@
|
|
1
1
|
$(document).ready ->
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
###### set the lab code in the appointment form ########
|
4
|
+
# using click handler cause it fires before the submit
|
5
|
+
# request
|
6
|
+
$("#find_appointments").bind('click', ->
|
7
|
+
selected_lab = $('#lab_list_container input:radio:checked')
|
8
|
+
lab_code = $('#lab_list_container input:radio:checked').parent('li').find('form input#lab_code').val()
|
9
|
+
$("form#appointment_data_search input#lab_code").val(lab_code)
|
10
|
+
)
|
5
11
|
|
6
|
-
###### handle ajax appointment data search ########
|
12
|
+
###### handle ajax appointment data search submit ########
|
7
13
|
$("form#appointment_data_search")
|
8
14
|
.bind('ajax:beforeSend', (event, data)->
|
9
15
|
form = $(this)
|
@@ -11,11 +17,8 @@ $(document).ready ->
|
|
11
17
|
date = form.find('input#appointment_date').val()
|
12
18
|
valid_date = Date.parseExact(date, "M/d/yyyy")
|
13
19
|
messages.push("Date is invalid, must be mm/dd/yyyy format") unless valid_date
|
14
|
-
#
|
15
|
-
|
16
|
-
lab_code = $('#lab_list_container input:radio:checked').parent('li').find('form > input#lab_code').val()
|
17
|
-
# set the value in this forms lab_code input field
|
18
|
-
form.find('input#lab_code').val(lab_code)
|
20
|
+
# trying to set the lab code here did not work. so had to use click handler above
|
21
|
+
lab_code = form.find('input#lab_code').val()
|
19
22
|
messages.push("Labcode is missing") unless lab_code
|
20
23
|
if (messages.length > 0)
|
21
24
|
span = $("<span>#{messages.join("<br>")}</span>")
|
data/lib/medivo/version.rb
CHANGED
@@ -1078,3 +1078,1086 @@ Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
|
1078
1078
|
|
1079
1079
|
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:27:11 -0400
|
1080
1080
|
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1081
|
+
|
1082
|
+
|
1083
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:40:21 -0400
|
1084
|
+
Processing by LabsController#lab_search as HTML
|
1085
|
+
Parameters: {"zip_code"=>"90210"}
|
1086
|
+
Rendered labs/search.html.haml within layouts/application (20.1ms)
|
1087
|
+
Compiled medivo/lab_appointment/handlers.js (166ms) (pid 50391)
|
1088
|
+
Compiled medivo/lab_appointment/application.js (11ms) (pid 50391)
|
1089
|
+
Compiled application.js (9ms) (pid 50391)
|
1090
|
+
Completed 200 OK in 2401ms (Views: 271.8ms)
|
1091
|
+
|
1092
|
+
|
1093
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1094
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1095
|
+
|
1096
|
+
|
1097
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1098
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1099
|
+
|
1100
|
+
|
1101
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1102
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1106
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1107
|
+
|
1108
|
+
|
1109
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1110
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1111
|
+
|
1112
|
+
|
1113
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1114
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1115
|
+
|
1116
|
+
|
1117
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1118
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1119
|
+
|
1120
|
+
|
1121
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1122
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1123
|
+
|
1124
|
+
|
1125
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1126
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1127
|
+
|
1128
|
+
|
1129
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1130
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1131
|
+
|
1132
|
+
|
1133
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1134
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1135
|
+
|
1136
|
+
|
1137
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1138
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1139
|
+
|
1140
|
+
|
1141
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1142
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1143
|
+
|
1144
|
+
|
1145
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1146
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1147
|
+
|
1148
|
+
|
1149
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1150
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1154
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (2ms)
|
1155
|
+
|
1156
|
+
|
1157
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1158
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (4ms)
|
1159
|
+
|
1160
|
+
|
1161
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1162
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1163
|
+
|
1164
|
+
|
1165
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1166
|
+
Served asset /application.js - 200 OK (1ms)
|
1167
|
+
|
1168
|
+
|
1169
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1170
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1171
|
+
|
1172
|
+
|
1173
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1174
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1175
|
+
|
1176
|
+
|
1177
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1178
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1179
|
+
|
1180
|
+
|
1181
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:40:24 -0400
|
1182
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1183
|
+
|
1184
|
+
|
1185
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:40:40 -0400
|
1186
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1187
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1188
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1189
|
+
|
1190
|
+
|
1191
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=20060&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:40:58 -0400
|
1192
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1193
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"20060", "commit"=>"Search for appointments"}
|
1194
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1195
|
+
|
1196
|
+
|
1197
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:41:03 -0400
|
1198
|
+
Processing by LabsController#lab_search as HTML
|
1199
|
+
Parameters: {"zip_code"=>"90210"}
|
1200
|
+
Rendered labs/search.html.haml within layouts/application (10.7ms)
|
1201
|
+
Completed 200 OK in 1160ms (Views: 18.2ms)
|
1202
|
+
|
1203
|
+
|
1204
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1205
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1206
|
+
|
1207
|
+
|
1208
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1209
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1210
|
+
|
1211
|
+
|
1212
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1213
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1214
|
+
|
1215
|
+
|
1216
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1217
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1218
|
+
|
1219
|
+
|
1220
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1221
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1222
|
+
|
1223
|
+
|
1224
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1225
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1226
|
+
|
1227
|
+
|
1228
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1229
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1230
|
+
|
1231
|
+
|
1232
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1233
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1234
|
+
|
1235
|
+
|
1236
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1237
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1238
|
+
|
1239
|
+
|
1240
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1241
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1242
|
+
|
1243
|
+
|
1244
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1245
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1246
|
+
|
1247
|
+
|
1248
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1249
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1250
|
+
|
1251
|
+
|
1252
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1253
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1254
|
+
|
1255
|
+
|
1256
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1257
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1258
|
+
|
1259
|
+
|
1260
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1261
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1262
|
+
|
1263
|
+
|
1264
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1265
|
+
Served asset /medivo/lab_appointment/handlers.js - 304 Not Modified (0ms)
|
1266
|
+
|
1267
|
+
|
1268
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1269
|
+
Served asset /medivo/lab_appointment/application.js - 304 Not Modified (0ms)
|
1270
|
+
|
1271
|
+
|
1272
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1273
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1274
|
+
|
1275
|
+
|
1276
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1277
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
1278
|
+
|
1279
|
+
|
1280
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1281
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1282
|
+
|
1283
|
+
|
1284
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1285
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1286
|
+
|
1287
|
+
|
1288
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1289
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1290
|
+
|
1291
|
+
|
1292
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:41:05 -0400
|
1293
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1294
|
+
|
1295
|
+
|
1296
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:41:11 -0400
|
1297
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1298
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1299
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1300
|
+
|
1301
|
+
|
1302
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:42:47 -0400
|
1303
|
+
Processing by LabsController#lab_search as HTML
|
1304
|
+
Parameters: {"zip_code"=>"90210"}
|
1305
|
+
Rendered labs/search.html.haml within layouts/application (12.0ms)
|
1306
|
+
Compiled medivo/lab_appointment/handlers.js (168ms) (pid 50391)
|
1307
|
+
Compiled medivo/lab_appointment/application.js (11ms) (pid 50391)
|
1308
|
+
Compiled application.js (9ms) (pid 50391)
|
1309
|
+
Completed 200 OK in 1579ms (Views: 264.3ms)
|
1310
|
+
|
1311
|
+
|
1312
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1313
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1314
|
+
|
1315
|
+
|
1316
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1317
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1318
|
+
|
1319
|
+
|
1320
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1321
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1322
|
+
|
1323
|
+
|
1324
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1325
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1326
|
+
|
1327
|
+
|
1328
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1329
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1330
|
+
|
1331
|
+
|
1332
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1333
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1334
|
+
|
1335
|
+
|
1336
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1337
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1338
|
+
|
1339
|
+
|
1340
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1341
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1342
|
+
|
1343
|
+
|
1344
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1345
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1346
|
+
|
1347
|
+
|
1348
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1349
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1350
|
+
|
1351
|
+
|
1352
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1353
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1354
|
+
|
1355
|
+
|
1356
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1357
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1361
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1362
|
+
|
1363
|
+
|
1364
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1365
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1369
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1373
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (3ms)
|
1374
|
+
|
1375
|
+
|
1376
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1377
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (7ms)
|
1378
|
+
|
1379
|
+
|
1380
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1381
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1382
|
+
|
1383
|
+
|
1384
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1385
|
+
Served asset /application.js - 200 OK (1ms)
|
1386
|
+
|
1387
|
+
|
1388
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1389
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1390
|
+
|
1391
|
+
|
1392
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1393
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1394
|
+
|
1395
|
+
|
1396
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1397
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1398
|
+
|
1399
|
+
|
1400
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1401
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1402
|
+
|
1403
|
+
|
1404
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1405
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1406
|
+
|
1407
|
+
|
1408
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1409
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1410
|
+
|
1411
|
+
|
1412
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1413
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1414
|
+
|
1415
|
+
|
1416
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1417
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1418
|
+
|
1419
|
+
|
1420
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1421
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1422
|
+
|
1423
|
+
|
1424
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1425
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1426
|
+
|
1427
|
+
|
1428
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1429
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1430
|
+
|
1431
|
+
|
1432
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1433
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1434
|
+
|
1435
|
+
|
1436
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1437
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1441
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1442
|
+
|
1443
|
+
|
1444
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1445
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1446
|
+
|
1447
|
+
|
1448
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1449
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1450
|
+
|
1451
|
+
|
1452
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1453
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1454
|
+
|
1455
|
+
|
1456
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1457
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1458
|
+
|
1459
|
+
|
1460
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:42:49 -0400
|
1461
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1462
|
+
|
1463
|
+
|
1464
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:44:04 -0400
|
1465
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1466
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1467
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1468
|
+
|
1469
|
+
|
1470
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:51:20 -0400
|
1471
|
+
Processing by LabsController#lab_search as HTML
|
1472
|
+
Parameters: {"zip_code"=>"90210"}
|
1473
|
+
Rendered labs/search.html.haml within layouts/application (10.7ms)
|
1474
|
+
Compiled medivo/lab_appointment/handlers.js (167ms) (pid 50391)
|
1475
|
+
Compiled medivo/lab_appointment/application.js (46ms) (pid 50391)
|
1476
|
+
Compiled application.js (8ms) (pid 50391)
|
1477
|
+
Completed 200 OK in 2123ms (Views: 266.8ms)
|
1478
|
+
|
1479
|
+
|
1480
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1481
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1482
|
+
|
1483
|
+
|
1484
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1485
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1486
|
+
|
1487
|
+
|
1488
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1489
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1490
|
+
|
1491
|
+
|
1492
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1493
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1494
|
+
|
1495
|
+
|
1496
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1497
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1498
|
+
|
1499
|
+
|
1500
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1501
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1502
|
+
|
1503
|
+
|
1504
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1505
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1506
|
+
|
1507
|
+
|
1508
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1509
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1510
|
+
|
1511
|
+
|
1512
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1513
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1514
|
+
|
1515
|
+
|
1516
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1517
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1518
|
+
|
1519
|
+
|
1520
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1521
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1522
|
+
|
1523
|
+
|
1524
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1525
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1526
|
+
|
1527
|
+
|
1528
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1529
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1530
|
+
|
1531
|
+
|
1532
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1533
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1534
|
+
|
1535
|
+
|
1536
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1537
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1538
|
+
|
1539
|
+
|
1540
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1541
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (2ms)
|
1542
|
+
|
1543
|
+
|
1544
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1545
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (4ms)
|
1546
|
+
|
1547
|
+
|
1548
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1549
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1550
|
+
|
1551
|
+
|
1552
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1553
|
+
Served asset /application.js - 200 OK (1ms)
|
1554
|
+
|
1555
|
+
|
1556
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1557
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1558
|
+
|
1559
|
+
|
1560
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1561
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1562
|
+
|
1563
|
+
|
1564
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1565
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1566
|
+
|
1567
|
+
|
1568
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:51:23 -0400
|
1569
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1570
|
+
|
1571
|
+
|
1572
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:51:32 -0400
|
1573
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1574
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1575
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1576
|
+
|
1577
|
+
|
1578
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=20060&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:51:36 -0400
|
1579
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1580
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"20060", "commit"=>"Search for appointments"}
|
1581
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1582
|
+
|
1583
|
+
|
1584
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=20060&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:51:42 -0400
|
1585
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1586
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"20060", "commit"=>"Search for appointments"}
|
1587
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1588
|
+
|
1589
|
+
|
1590
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=22974&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:51:44 -0400
|
1591
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1592
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"22974", "commit"=>"Search for appointments"}
|
1593
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1594
|
+
|
1595
|
+
|
1596
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:51:58 -0400
|
1597
|
+
Processing by LabsController#lab_search as HTML
|
1598
|
+
Parameters: {"zip_code"=>"90210"}
|
1599
|
+
Rendered labs/search.html.haml within layouts/application (10.2ms)
|
1600
|
+
Compiled medivo/lab_appointment/handlers.js (167ms) (pid 50391)
|
1601
|
+
Compiled medivo/lab_appointment/application.js (45ms) (pid 50391)
|
1602
|
+
Compiled application.js (8ms) (pid 50391)
|
1603
|
+
Completed 200 OK in 1463ms (Views: 261.8ms)
|
1604
|
+
|
1605
|
+
|
1606
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1607
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1608
|
+
|
1609
|
+
|
1610
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1611
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1612
|
+
|
1613
|
+
|
1614
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1615
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1616
|
+
|
1617
|
+
|
1618
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1619
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1620
|
+
|
1621
|
+
|
1622
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1623
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1624
|
+
|
1625
|
+
|
1626
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1627
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1628
|
+
|
1629
|
+
|
1630
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1631
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1632
|
+
|
1633
|
+
|
1634
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1635
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1636
|
+
|
1637
|
+
|
1638
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1639
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1640
|
+
|
1641
|
+
|
1642
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1643
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1644
|
+
|
1645
|
+
|
1646
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1647
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1648
|
+
|
1649
|
+
|
1650
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1651
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1652
|
+
|
1653
|
+
|
1654
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1655
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1656
|
+
|
1657
|
+
|
1658
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1659
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1660
|
+
|
1661
|
+
|
1662
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1663
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1664
|
+
|
1665
|
+
|
1666
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1667
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (2ms)
|
1668
|
+
|
1669
|
+
|
1670
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1671
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (4ms)
|
1672
|
+
|
1673
|
+
|
1674
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1675
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1676
|
+
|
1677
|
+
|
1678
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1679
|
+
Served asset /application.js - 200 OK (1ms)
|
1680
|
+
|
1681
|
+
|
1682
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1683
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1684
|
+
|
1685
|
+
|
1686
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1687
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1688
|
+
|
1689
|
+
|
1690
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:51:59 -0400
|
1691
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1692
|
+
|
1693
|
+
|
1694
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:52:00 -0400
|
1695
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1696
|
+
|
1697
|
+
|
1698
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:52:07 -0400
|
1699
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1700
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1701
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1702
|
+
|
1703
|
+
|
1704
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:52:10 -0400
|
1705
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1706
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1707
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1708
|
+
|
1709
|
+
|
1710
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:52:11 -0400
|
1711
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1712
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1713
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1714
|
+
|
1715
|
+
|
1716
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:54:13 -0400
|
1717
|
+
Processing by LabsController#lab_search as HTML
|
1718
|
+
Parameters: {"zip_code"=>"90210"}
|
1719
|
+
Rendered labs/search.html.haml within layouts/application (10.4ms)
|
1720
|
+
Compiled medivo/lab_appointment/handlers.js (168ms) (pid 50391)
|
1721
|
+
Compiled medivo/lab_appointment/application.js (47ms) (pid 50391)
|
1722
|
+
Compiled application.js (8ms) (pid 50391)
|
1723
|
+
Completed 200 OK in 1399ms (Views: 264.9ms)
|
1724
|
+
|
1725
|
+
|
1726
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:54:14 -0400
|
1727
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1728
|
+
|
1729
|
+
|
1730
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1731
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1732
|
+
|
1733
|
+
|
1734
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1735
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1736
|
+
|
1737
|
+
|
1738
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1739
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1740
|
+
|
1741
|
+
|
1742
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1743
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1744
|
+
|
1745
|
+
|
1746
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1747
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1748
|
+
|
1749
|
+
|
1750
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1751
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1752
|
+
|
1753
|
+
|
1754
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1755
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1756
|
+
|
1757
|
+
|
1758
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1759
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1760
|
+
|
1761
|
+
|
1762
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1763
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1764
|
+
|
1765
|
+
|
1766
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1767
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1768
|
+
|
1769
|
+
|
1770
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1771
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1772
|
+
|
1773
|
+
|
1774
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1775
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1776
|
+
|
1777
|
+
|
1778
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1779
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1780
|
+
|
1781
|
+
|
1782
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1783
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1784
|
+
|
1785
|
+
|
1786
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1787
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (3ms)
|
1788
|
+
|
1789
|
+
|
1790
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1791
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (5ms)
|
1792
|
+
|
1793
|
+
|
1794
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1795
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1796
|
+
|
1797
|
+
|
1798
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1799
|
+
Served asset /application.js - 200 OK (0ms)
|
1800
|
+
|
1801
|
+
|
1802
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1803
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1804
|
+
|
1805
|
+
|
1806
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1807
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1808
|
+
|
1809
|
+
|
1810
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1811
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1812
|
+
|
1813
|
+
|
1814
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:54:15 -0400
|
1815
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1816
|
+
|
1817
|
+
|
1818
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:54:18 -0400
|
1819
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1820
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1821
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1822
|
+
|
1823
|
+
|
1824
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:55:26 -0400
|
1825
|
+
Processing by LabsController#lab_search as HTML
|
1826
|
+
Parameters: {"zip_code"=>"90210"}
|
1827
|
+
Rendered labs/search.html.haml within layouts/application (10.8ms)
|
1828
|
+
Compiled medivo/lab_appointment/handlers.js (168ms) (pid 50391)
|
1829
|
+
Compiled medivo/lab_appointment/application.js (10ms) (pid 50391)
|
1830
|
+
Compiled application.js (8ms) (pid 50391)
|
1831
|
+
Completed 200 OK in 2463ms (Views: 265.1ms)
|
1832
|
+
|
1833
|
+
|
1834
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1835
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1836
|
+
|
1837
|
+
|
1838
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1839
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1840
|
+
|
1841
|
+
|
1842
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1843
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1844
|
+
|
1845
|
+
|
1846
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1847
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1848
|
+
|
1849
|
+
|
1850
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1851
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1852
|
+
|
1853
|
+
|
1854
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1855
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1856
|
+
|
1857
|
+
|
1858
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1859
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1860
|
+
|
1861
|
+
|
1862
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1863
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1864
|
+
|
1865
|
+
|
1866
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1867
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1868
|
+
|
1869
|
+
|
1870
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1871
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1872
|
+
|
1873
|
+
|
1874
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1875
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1876
|
+
|
1877
|
+
|
1878
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1879
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1880
|
+
|
1881
|
+
|
1882
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1883
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1884
|
+
|
1885
|
+
|
1886
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1887
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1888
|
+
|
1889
|
+
|
1890
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1891
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
1892
|
+
|
1893
|
+
|
1894
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1895
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (2ms)
|
1896
|
+
|
1897
|
+
|
1898
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1899
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (5ms)
|
1900
|
+
|
1901
|
+
|
1902
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1903
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
1904
|
+
|
1905
|
+
|
1906
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:55:28 -0400
|
1907
|
+
Served asset /application.js - 200 OK (1ms)
|
1908
|
+
|
1909
|
+
|
1910
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:55:29 -0400
|
1911
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
1912
|
+
|
1913
|
+
|
1914
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:55:29 -0400
|
1915
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
1916
|
+
|
1917
|
+
|
1918
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:55:29 -0400
|
1919
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
1920
|
+
|
1921
|
+
|
1922
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:55:29 -0400
|
1923
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
1924
|
+
|
1925
|
+
|
1926
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:55:35 -0400
|
1927
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
1928
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
1929
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
1930
|
+
|
1931
|
+
|
1932
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:55:59 -0400
|
1933
|
+
Processing by LabsController#lab_search as HTML
|
1934
|
+
Parameters: {"zip_code"=>"90210"}
|
1935
|
+
Rendered labs/search.html.haml within layouts/application (10.5ms)
|
1936
|
+
Compiled medivo/lab_appointment/handlers.js (189ms) (pid 50391)
|
1937
|
+
Compiled medivo/lab_appointment/application.js (12ms) (pid 50391)
|
1938
|
+
Compiled application.js (9ms) (pid 50391)
|
1939
|
+
Completed 200 OK in 1382ms (Views: 257.2ms)
|
1940
|
+
|
1941
|
+
|
1942
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1943
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1944
|
+
|
1945
|
+
|
1946
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1947
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1948
|
+
|
1949
|
+
|
1950
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1951
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1952
|
+
|
1953
|
+
|
1954
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1955
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
1956
|
+
|
1957
|
+
|
1958
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1959
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
1960
|
+
|
1961
|
+
|
1962
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1963
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
1964
|
+
|
1965
|
+
|
1966
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1967
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
1968
|
+
|
1969
|
+
|
1970
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1971
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
1972
|
+
|
1973
|
+
|
1974
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1975
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
1976
|
+
|
1977
|
+
|
1978
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1979
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
1980
|
+
|
1981
|
+
|
1982
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1983
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
1984
|
+
|
1985
|
+
|
1986
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1987
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
1988
|
+
|
1989
|
+
|
1990
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1991
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
1992
|
+
|
1993
|
+
|
1994
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1995
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
1996
|
+
|
1997
|
+
|
1998
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
1999
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
2000
|
+
|
2001
|
+
|
2002
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2003
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (3ms)
|
2004
|
+
|
2005
|
+
|
2006
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2007
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (28ms)
|
2008
|
+
|
2009
|
+
|
2010
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2011
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
2012
|
+
|
2013
|
+
|
2014
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2015
|
+
Served asset /application.js - 200 OK (0ms)
|
2016
|
+
|
2017
|
+
|
2018
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2019
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
2020
|
+
|
2021
|
+
|
2022
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2023
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
2024
|
+
|
2025
|
+
|
2026
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2027
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
2028
|
+
|
2029
|
+
|
2030
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:56:00 -0400
|
2031
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
2032
|
+
|
2033
|
+
|
2034
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:56:07 -0400
|
2035
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
2036
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"", "commit"=>"Search for appointments"}
|
2037
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
2038
|
+
|
2039
|
+
|
2040
|
+
Started GET "/labs/lab_search?zip_code=90210" for 127.0.0.1 at 2011-11-04 15:56:19 -0400
|
2041
|
+
Processing by LabsController#lab_search as HTML
|
2042
|
+
Parameters: {"zip_code"=>"90210"}
|
2043
|
+
Rendered labs/search.html.haml within layouts/application (33.5ms)
|
2044
|
+
Compiled medivo/lab_appointment/handlers.js (167ms) (pid 50391)
|
2045
|
+
Compiled medivo/lab_appointment/application.js (12ms) (pid 50391)
|
2046
|
+
Compiled application.js (9ms) (pid 50391)
|
2047
|
+
Completed 200 OK in 1277ms (Views: 259.8ms)
|
2048
|
+
|
2049
|
+
|
2050
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2051
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2052
|
+
|
2053
|
+
|
2054
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2055
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2056
|
+
|
2057
|
+
|
2058
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2059
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2060
|
+
|
2061
|
+
|
2062
|
+
Started GET "/assets/medivo/handlebars.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2063
|
+
Served asset /medivo/handlebars.js - 304 Not Modified (0ms)
|
2064
|
+
|
2065
|
+
|
2066
|
+
Started GET "/assets/medivo/helpers.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2067
|
+
Served asset /medivo/helpers.js - 304 Not Modified (0ms)
|
2068
|
+
|
2069
|
+
|
2070
|
+
Started GET "/assets/medivo/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2071
|
+
Served asset /medivo/models.js - 304 Not Modified (0ms)
|
2072
|
+
|
2073
|
+
|
2074
|
+
Started GET "/assets/medivo/lab_list/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2075
|
+
Served asset /medivo/lab_list/models.js - 304 Not Modified (0ms)
|
2076
|
+
|
2077
|
+
|
2078
|
+
Started GET "/assets/medivo/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2079
|
+
Served asset /medivo/views.js - 304 Not Modified (0ms)
|
2080
|
+
|
2081
|
+
|
2082
|
+
Started GET "/assets/medivo/lab_list/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2083
|
+
Served asset /medivo/lab_list/views.js - 304 Not Modified (0ms)
|
2084
|
+
|
2085
|
+
|
2086
|
+
Started GET "/assets/medivo/lab_list/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2087
|
+
Served asset /medivo/lab_list/handlers.js - 304 Not Modified (0ms)
|
2088
|
+
|
2089
|
+
|
2090
|
+
Started GET "/assets/medivo/lab_list/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2091
|
+
Served asset /medivo/lab_list/application.js - 304 Not Modified (0ms)
|
2092
|
+
|
2093
|
+
|
2094
|
+
Started GET "/assets/medivo/lab_list/sample/show_labs.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2095
|
+
Served asset /medivo/lab_list/sample/show_labs.js - 304 Not Modified (0ms)
|
2096
|
+
|
2097
|
+
|
2098
|
+
Started GET "/assets/medivo/date.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2099
|
+
Served asset /medivo/date.js - 304 Not Modified (0ms)
|
2100
|
+
|
2101
|
+
|
2102
|
+
Started GET "/assets/medivo/lab_appointment/models.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2103
|
+
Served asset /medivo/lab_appointment/models.js - 304 Not Modified (0ms)
|
2104
|
+
|
2105
|
+
|
2106
|
+
Started GET "/assets/medivo/lab_appointment/views.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2107
|
+
Served asset /medivo/lab_appointment/views.js - 304 Not Modified (0ms)
|
2108
|
+
|
2109
|
+
|
2110
|
+
Started GET "/assets/medivo/lab_appointment/handlers.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2111
|
+
Served asset /medivo/lab_appointment/handlers.js - 200 OK (2ms)
|
2112
|
+
|
2113
|
+
|
2114
|
+
Started GET "/assets/medivo/lab_appointment/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2115
|
+
Served asset /medivo/lab_appointment/application.js - 200 OK (4ms)
|
2116
|
+
|
2117
|
+
|
2118
|
+
Started GET "/assets/medivo/lab_appointment/sample/show_appointments.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2119
|
+
Served asset /medivo/lab_appointment/sample/show_appointments.js - 304 Not Modified (0ms)
|
2120
|
+
|
2121
|
+
|
2122
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2123
|
+
Served asset /application.js - 200 OK (1ms)
|
2124
|
+
|
2125
|
+
|
2126
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2127
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
2128
|
+
|
2129
|
+
|
2130
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2131
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
2132
|
+
|
2133
|
+
|
2134
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2135
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
2136
|
+
|
2137
|
+
|
2138
|
+
Started GET "/assets/medivo/arrow.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2139
|
+
Served asset /medivo/arrow.png - 304 Not Modified (0ms)
|
2140
|
+
|
2141
|
+
|
2142
|
+
Started GET "/assets/medivo/markerA.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2143
|
+
Served asset /medivo/markerA.png - 304 Not Modified (0ms)
|
2144
|
+
|
2145
|
+
|
2146
|
+
Started GET "/assets/medivo/markerB.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2147
|
+
Served asset /medivo/markerB.png - 304 Not Modified (0ms)
|
2148
|
+
|
2149
|
+
|
2150
|
+
Started GET "/assets/medivo/markerC.png" for 127.0.0.1 at 2011-11-04 15:56:21 -0400
|
2151
|
+
Served asset /medivo/markerC.png - 304 Not Modified (0ms)
|
2152
|
+
|
2153
|
+
|
2154
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=20060&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:56:25 -0400
|
2155
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
2156
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"20060", "commit"=>"Search for appointments"}
|
2157
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
2158
|
+
|
2159
|
+
|
2160
|
+
Started GET "/medivo/labs/appointment_data?utf8=%E2%9C%93&appointment_date=11%2F07%2F2011&lab_code=22974&commit=Search+for+appointments" for 127.0.0.1 at 2011-11-04 15:56:34 -0400
|
2161
|
+
Processing by Medivo::LabsController#appointment_data as JS
|
2162
|
+
Parameters: {"utf8"=>"✓", "appointment_date"=>"11/07/2011", "lab_code"=>"22974", "commit"=>"Search for appointments"}
|
2163
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: medivo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,7 @@ default_executable:
|
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
17
|
-
requirement: &
|
17
|
+
requirement: &2173831600 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: 3.1.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2173831600
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: jquery-rails
|
28
|
-
requirement: &
|
28
|
+
requirement: &2173831180 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ! '>='
|
@@ -33,10 +33,10 @@ dependencies:
|
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *2173831180
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: coffee-script
|
39
|
-
requirement: &
|
39
|
+
requirement: &2173830700 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
42
42
|
- - ! '>='
|
@@ -44,10 +44,10 @@ dependencies:
|
|
44
44
|
version: '0'
|
45
45
|
type: :runtime
|
46
46
|
prerelease: false
|
47
|
-
version_requirements: *
|
47
|
+
version_requirements: *2173830700
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: haml-rails
|
50
|
-
requirement: &
|
50
|
+
requirement: &2173830280 !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
53
53
|
- - ! '>='
|
@@ -55,10 +55,10 @@ dependencies:
|
|
55
55
|
version: '0'
|
56
56
|
type: :runtime
|
57
57
|
prerelease: false
|
58
|
-
version_requirements: *
|
58
|
+
version_requirements: *2173830280
|
59
59
|
- !ruby/object:Gem::Dependency
|
60
60
|
name: geocoder
|
61
|
-
requirement: &
|
61
|
+
requirement: &2173829840 !ruby/object:Gem::Requirement
|
62
62
|
none: false
|
63
63
|
requirements:
|
64
64
|
- - ! '>='
|
@@ -66,10 +66,10 @@ dependencies:
|
|
66
66
|
version: '0'
|
67
67
|
type: :runtime
|
68
68
|
prerelease: false
|
69
|
-
version_requirements: *
|
69
|
+
version_requirements: *2173829840
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: rest-client
|
72
|
-
requirement: &
|
72
|
+
requirement: &2173829420 !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
74
|
requirements:
|
75
75
|
- - ! '>='
|
@@ -77,10 +77,10 @@ dependencies:
|
|
77
77
|
version: '0'
|
78
78
|
type: :runtime
|
79
79
|
prerelease: false
|
80
|
-
version_requirements: *
|
80
|
+
version_requirements: *2173829420
|
81
81
|
- !ruby/object:Gem::Dependency
|
82
82
|
name: pdf-toolkit
|
83
|
-
requirement: &
|
83
|
+
requirement: &2173828980 !ruby/object:Gem::Requirement
|
84
84
|
none: false
|
85
85
|
requirements:
|
86
86
|
- - ! '>='
|
@@ -88,10 +88,10 @@ dependencies:
|
|
88
88
|
version: '0'
|
89
89
|
type: :runtime
|
90
90
|
prerelease: false
|
91
|
-
version_requirements: *
|
91
|
+
version_requirements: *2173828980
|
92
92
|
- !ruby/object:Gem::Dependency
|
93
93
|
name: pdfkit
|
94
|
-
requirement: &
|
94
|
+
requirement: &2173828540 !ruby/object:Gem::Requirement
|
95
95
|
none: false
|
96
96
|
requirements:
|
97
97
|
- - ! '>='
|
@@ -99,7 +99,7 @@ dependencies:
|
|
99
99
|
version: '0'
|
100
100
|
type: :runtime
|
101
101
|
prerelease: false
|
102
|
-
version_requirements: *
|
102
|
+
version_requirements: *2173828540
|
103
103
|
description: Use the medivo platform to find lab locations, make labcorp appointments,
|
104
104
|
place lab orders
|
105
105
|
email:
|
@@ -289,7 +289,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
289
289
|
version: '0'
|
290
290
|
segments:
|
291
291
|
- 0
|
292
|
-
hash:
|
292
|
+
hash: 2469472185808359
|
293
293
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
294
294
|
none: false
|
295
295
|
requirements:
|
@@ -298,7 +298,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
298
298
|
version: '0'
|
299
299
|
segments:
|
300
300
|
- 0
|
301
|
-
hash:
|
301
|
+
hash: 2469472185808359
|
302
302
|
requirements: []
|
303
303
|
rubyforge_project:
|
304
304
|
rubygems_version: 1.6.2
|