octranspo 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/.gitignore +3 -0
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +26 -0
  4. data/Rakefile +8 -0
  5. data/lib/octranspo.rb +20 -0
  6. data/lib/octranspo/headsign.rb +2539 -0
  7. data/lib/octranspo/headsigns.yml +40565 -0
  8. data/lib/octranspo/landmarks.rb +37 -0
  9. data/lib/octranspo/lingo.rb +125 -0
  10. data/lib/octranspo/lingo/headsign_messages.yml +104 -0
  11. data/lib/octranspo/lingo/headsign_signatures.yml +3 -0
  12. data/lib/octranspo/lingo/landmarks.yml +205 -0
  13. data/lib/octranspo/lingo/roadways.yml +1957 -0
  14. data/lib/octranspo/mobile_resource_methods.rb +98 -0
  15. data/lib/octranspo/mobile_route_data.rb +85 -0
  16. data/lib/octranspo/mobile_route_schedule.rb +118 -0
  17. data/lib/octranspo/mobile_stop_schedule.rb +137 -0
  18. data/lib/octranspo/remote_resource_methods.rb +89 -0
  19. data/lib/octranspo/route.rb +31 -0
  20. data/lib/octranspo/routes.yml +507 -0
  21. data/lib/octranspo/service_date.rb +17 -0
  22. data/lib/octranspo/stations.yml +77 -0
  23. data/lib/octranspo/stop.rb +69 -0
  24. data/lib/octranspo/stop_resource.rb +46 -0
  25. data/lib/octranspo/stops.yml +30696 -0
  26. data/lib/octranspo/version.rb +3 -0
  27. data/octranspo.gemspec +22 -0
  28. data/test/fixtures/mobile_route_data/20090323/route_123_index_0.html +457 -0
  29. data/test/fixtures/mobile_route_data/20090323/route_123_index_1.html +99 -0
  30. data/test/fixtures/mobile_route_data/20090323/route_1_index_0.html +700 -0
  31. data/test/fixtures/mobile_route_data/20090323/route_1_index_1.html +691 -0
  32. data/test/fixtures/mobile_route_data/20090323/route_2_index_0.html +682 -0
  33. data/test/fixtures/mobile_route_data/20090323/route_2_index_1.html +646 -0
  34. data/test/fixtures/mobile_route_data/20100323/route_123_index_0.html +469 -0
  35. data/test/fixtures/mobile_route_data/20100323/route_123_index_1.html +105 -0
  36. data/test/fixtures/mobile_route_data/20100323/route_1_index_0.html +703 -0
  37. data/test/fixtures/mobile_route_data/20100323/route_1_index_1.html +694 -0
  38. data/test/fixtures/mobile_route_data/20100323/route_2_index_0.html +685 -0
  39. data/test/fixtures/mobile_route_data/20100323/route_2_index_1.html +649 -0
  40. data/test/fixtures/mobile_route_data/20100323/route_3_index_0.html +649 -0
  41. data/test/fixtures/mobile_route_data/20100323/route_3_index_1.html +721 -0
  42. data/test/fixtures/mobile_route_schedule/20090323/route_18_direction_2_location_25.html +1038 -0
  43. data/test/fixtures/mobile_route_schedule/20090323/route_1_direction_1_location_0.html +1127 -0
  44. data/test/fixtures/mobile_route_schedule/20090323/route_2_direction_2_location_11.html +1430 -0
  45. data/test/fixtures/mobile_route_schedule/20090323/route_2_direction__location_11.html +104 -0
  46. data/test/fixtures/mobile_route_schedule/20100323/route_1_direction_1_location_0.html +1180 -0
  47. data/test/fixtures/mobile_route_schedule/20100323/route_2_direction_2_location_11.html +1554 -0
  48. data/test/fixtures/mobile_route_schedule/20100323/route_3_direction_1_location_0.html +1082 -0
  49. data/test/fixtures/mobile_route_schedule/20100323/route_3_direction_1_location_1.html +1082 -0
  50. data/test/fixtures/mobile_stop_schedule/20090323/location_1987.yml +198 -0
  51. data/test/fixtures/mobile_stop_schedule/20090323/location_1987_route_index_0.html +1283 -0
  52. data/test/fixtures/mobile_stop_schedule/20090323/location_1987_route_index_1.html +194 -0
  53. data/test/fixtures/mobile_stop_schedule/20090323/location_1987_route_index_2.html +116 -0
  54. data/test/fixtures/mobile_stop_schedule/20090323/location_3058_route_index_12.html +149 -0
  55. data/test/fixtures/mobile_stop_schedule/20090323/location_8789_route_index_0.html +1002 -0
  56. data/test/fixtures/mobile_stop_schedule/20100323/location_1987.yml +209 -0
  57. data/test/fixtures/mobile_stop_schedule/20100323/location_1987_route_index_0.html +1393 -0
  58. data/test/fixtures/mobile_stop_schedule/20100323/location_1987_route_index_1.html +206 -0
  59. data/test/fixtures/mobile_stop_schedule/20100323/location_1987_route_index_2.html +123 -0
  60. data/test/fixtures/mobile_stop_schedule/20100323/location_3058_route_index_12.html +278 -0
  61. data/test/fixtures/mobile_stop_schedule/20100323/location_7558_route_index_0.html +979 -0
  62. data/test/fixtures/mobile_stop_schedule/20100323/location_8789_route_index_0.html +1059 -0
  63. data/test/fixtures/stop_resource/1987.html +126 -0
  64. data/test/test_helper.rb +15 -0
  65. data/test/unit/headsign_test.rb +34 -0
  66. data/test/unit/lingo_test.rb +139 -0
  67. data/test/unit/mobile_resource_methods_test.rb +25 -0
  68. data/test/unit/mobile_route_data_test.rb +124 -0
  69. data/test/unit/mobile_route_schedule_test.rb +210 -0
  70. data/test/unit/mobile_stop_schedule_test.rb +153 -0
  71. data/test/unit/service_date_test.rb +27 -0
  72. data/test/unit/stop_resource_test.rb +26 -0
  73. metadata +251 -0
@@ -0,0 +1,1430 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
9
+ <html>
10
+ <head>
11
+ <title>OCTranspo Schedules</title>
12
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
13
+ <meta http-equiv="Content-Language" content="en-us"/>
14
+ <link rel="stylesheet" type="text/css" href="mobileweb.css"/>
15
+
16
+
17
+
18
+
19
+
20
+
21
+ </head>
22
+ <body>
23
+ <p id="TemplateHeader" class="TemplateHeader"><img src="logo.jpg" width="80" height="20" alt="octranspo" align="left"/>&nbsp;Schedules</p>
24
+ <br/>
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+ <table id="SchedulesTimesSelectedTable" cellpadding="0" cellspacing="0" border="0">
39
+ <tr>
40
+ <td class="header" valign="top">Date:</td>
41
+ <td class="selected">
42
+
43
+
44
+
45
+ Mon, Mar 23, 2009
46
+
47
+
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td class="header" valign="top">Time:</td><td class="selected">All Day (3am-3am)</td>
52
+ </tr>
53
+ <tr>
54
+ <td class="header" valign="top">Route:</td><td class="selected">
55
+
56
+ 2 Bayshore
57
+ .</td>
58
+ </tr>
59
+ <tr><td colspan="2">&nbsp;</td></tr>
60
+ <tr>
61
+ <td class="header" valign="top" colspan="2">All times</td>
62
+ </tr>
63
+ <tr><td colspan="2">&nbsp;</td></tr>
64
+ </table>
65
+ <table id="SchedulesTimesListTable" cellpadding="0" cellspacing="0" border="1" width="100%">
66
+ <tr>
67
+
68
+ <td class="header" valign="top">
69
+
70
+ SOMERSET O-W / BRONSON (1987)</td>
71
+
72
+ </tr>
73
+
74
+ <tr>
75
+
76
+ <td valign="top" nowrap="NOWRAP">
77
+
78
+
79
+
80
+
81
+ 5:03 AM
82
+
83
+
84
+
85
+
86
+ </td>
87
+
88
+ </tr>
89
+
90
+ <tr>
91
+
92
+ <td valign="top" nowrap="NOWRAP">
93
+
94
+
95
+
96
+
97
+ 5:33 AM
98
+
99
+
100
+
101
+
102
+ </td>
103
+
104
+ </tr>
105
+
106
+ <tr>
107
+
108
+ <td valign="top" nowrap="NOWRAP">
109
+
110
+
111
+
112
+
113
+ 6:02 AM
114
+
115
+
116
+
117
+
118
+ </td>
119
+
120
+ </tr>
121
+
122
+ <tr>
123
+
124
+ <td valign="top" nowrap="NOWRAP">
125
+
126
+
127
+
128
+
129
+ 6:26 AM
130
+
131
+
132
+
133
+
134
+ </td>
135
+
136
+ </tr>
137
+
138
+ <tr>
139
+
140
+ <td valign="top" nowrap="NOWRAP">
141
+
142
+
143
+
144
+
145
+ 6:41 AM
146
+
147
+
148
+
149
+ [D]
150
+
151
+
152
+ </td>
153
+
154
+ </tr>
155
+
156
+ <tr>
157
+
158
+ <td valign="top" nowrap="NOWRAP">
159
+
160
+
161
+
162
+
163
+ 6:56 AM
164
+
165
+
166
+
167
+
168
+ </td>
169
+
170
+ </tr>
171
+
172
+ <tr>
173
+
174
+ <td valign="top" nowrap="NOWRAP">
175
+
176
+
177
+
178
+
179
+ 7:11 AM
180
+
181
+
182
+
183
+ [D]
184
+
185
+
186
+ </td>
187
+
188
+ </tr>
189
+
190
+ <tr>
191
+
192
+ <td valign="top" nowrap="NOWRAP">
193
+
194
+
195
+
196
+
197
+ 7:26 AM
198
+
199
+
200
+
201
+
202
+ </td>
203
+
204
+ </tr>
205
+
206
+ <tr>
207
+
208
+ <td valign="top" nowrap="NOWRAP">
209
+
210
+
211
+
212
+
213
+ 7:41 AM
214
+
215
+
216
+
217
+ [D]
218
+
219
+
220
+ </td>
221
+
222
+ </tr>
223
+
224
+ <tr>
225
+
226
+ <td valign="top" nowrap="NOWRAP">
227
+
228
+
229
+
230
+
231
+ 7:56 AM
232
+
233
+
234
+
235
+
236
+ </td>
237
+
238
+ </tr>
239
+
240
+ <tr>
241
+
242
+ <td valign="top" nowrap="NOWRAP">
243
+
244
+
245
+
246
+
247
+ 8:11 AM
248
+
249
+
250
+
251
+ [D]
252
+
253
+
254
+ </td>
255
+
256
+ </tr>
257
+
258
+ <tr>
259
+
260
+ <td valign="top" nowrap="NOWRAP">
261
+
262
+
263
+
264
+
265
+ 8:26 AM
266
+
267
+
268
+
269
+
270
+ </td>
271
+
272
+ </tr>
273
+
274
+ <tr>
275
+
276
+ <td valign="top" nowrap="NOWRAP">
277
+
278
+
279
+
280
+
281
+ 8:41 AM
282
+
283
+
284
+
285
+ [D]
286
+
287
+
288
+ </td>
289
+
290
+ </tr>
291
+
292
+ <tr>
293
+
294
+ <td valign="top" nowrap="NOWRAP">
295
+
296
+
297
+
298
+
299
+ 8:56 AM
300
+
301
+
302
+
303
+
304
+ </td>
305
+
306
+ </tr>
307
+
308
+ <tr>
309
+
310
+ <td valign="top" nowrap="NOWRAP">
311
+
312
+
313
+
314
+
315
+ 9:11 AM
316
+
317
+
318
+
319
+ [D]
320
+
321
+
322
+ </td>
323
+
324
+ </tr>
325
+
326
+ <tr>
327
+
328
+ <td valign="top" nowrap="NOWRAP">
329
+
330
+
331
+
332
+
333
+ 9:26 AM
334
+
335
+
336
+
337
+
338
+ </td>
339
+
340
+ </tr>
341
+
342
+ <tr>
343
+
344
+ <td valign="top" nowrap="NOWRAP">
345
+
346
+
347
+
348
+
349
+ 9:41 AM
350
+
351
+
352
+
353
+ [D]
354
+
355
+
356
+ </td>
357
+
358
+ </tr>
359
+
360
+ <tr>
361
+
362
+ <td valign="top" nowrap="NOWRAP">
363
+
364
+
365
+
366
+
367
+ 9:56 AM
368
+
369
+
370
+
371
+
372
+ </td>
373
+
374
+ </tr>
375
+
376
+ <tr>
377
+
378
+ <td valign="top" nowrap="NOWRAP">
379
+
380
+
381
+
382
+
383
+ 10:11 AM
384
+
385
+
386
+
387
+ [D]
388
+
389
+
390
+ </td>
391
+
392
+ </tr>
393
+
394
+ <tr>
395
+
396
+ <td valign="top" nowrap="NOWRAP">
397
+
398
+
399
+
400
+
401
+ 10:26 AM
402
+
403
+
404
+
405
+
406
+ </td>
407
+
408
+ </tr>
409
+
410
+ <tr>
411
+
412
+ <td valign="top" nowrap="NOWRAP">
413
+
414
+
415
+
416
+
417
+ 10:41 AM
418
+
419
+
420
+
421
+ [D]
422
+
423
+
424
+ </td>
425
+
426
+ </tr>
427
+
428
+ <tr>
429
+
430
+ <td valign="top" nowrap="NOWRAP">
431
+
432
+
433
+
434
+
435
+ 10:56 AM
436
+
437
+
438
+
439
+
440
+ </td>
441
+
442
+ </tr>
443
+
444
+ <tr>
445
+
446
+ <td valign="top" nowrap="NOWRAP">
447
+
448
+
449
+
450
+
451
+ 11:11 AM
452
+
453
+
454
+
455
+ [D]
456
+
457
+
458
+ </td>
459
+
460
+ </tr>
461
+
462
+ <tr>
463
+
464
+ <td valign="top" nowrap="NOWRAP">
465
+
466
+
467
+
468
+
469
+ 11:26 AM
470
+
471
+
472
+
473
+
474
+ </td>
475
+
476
+ </tr>
477
+
478
+ <tr>
479
+
480
+ <td valign="top" nowrap="NOWRAP">
481
+
482
+
483
+
484
+
485
+ 11:41 AM
486
+
487
+
488
+
489
+ [D]
490
+
491
+
492
+ </td>
493
+
494
+ </tr>
495
+
496
+ <tr>
497
+
498
+ <td valign="top" nowrap="NOWRAP">
499
+
500
+
501
+
502
+
503
+ 11:56 AM
504
+
505
+
506
+
507
+
508
+ </td>
509
+
510
+ </tr>
511
+
512
+ <tr>
513
+
514
+ <td valign="top" nowrap="NOWRAP">
515
+
516
+
517
+
518
+
519
+ 12:11 PM
520
+
521
+
522
+
523
+ [D]
524
+
525
+
526
+ </td>
527
+
528
+ </tr>
529
+
530
+ <tr>
531
+
532
+ <td valign="top" nowrap="NOWRAP">
533
+
534
+
535
+
536
+
537
+ 12:26 PM
538
+
539
+
540
+
541
+
542
+ </td>
543
+
544
+ </tr>
545
+
546
+ <tr>
547
+
548
+ <td valign="top" nowrap="NOWRAP">
549
+
550
+
551
+
552
+
553
+ 12:41 PM
554
+
555
+
556
+
557
+ [D]
558
+
559
+
560
+ </td>
561
+
562
+ </tr>
563
+
564
+ <tr>
565
+
566
+ <td valign="top" nowrap="NOWRAP">
567
+
568
+
569
+
570
+
571
+ 12:56 PM
572
+
573
+
574
+
575
+
576
+ </td>
577
+
578
+ </tr>
579
+
580
+ <tr>
581
+
582
+ <td valign="top" nowrap="NOWRAP">
583
+
584
+
585
+
586
+
587
+ 1:11 PM
588
+
589
+
590
+
591
+ [D]
592
+
593
+
594
+ </td>
595
+
596
+ </tr>
597
+
598
+ <tr>
599
+
600
+ <td valign="top" nowrap="NOWRAP">
601
+
602
+
603
+
604
+
605
+ 1:26 PM
606
+
607
+
608
+
609
+
610
+ </td>
611
+
612
+ </tr>
613
+
614
+ <tr>
615
+
616
+ <td valign="top" nowrap="NOWRAP">
617
+
618
+
619
+
620
+
621
+ 1:41 PM
622
+
623
+
624
+
625
+ [D]
626
+
627
+
628
+ </td>
629
+
630
+ </tr>
631
+
632
+ <tr>
633
+
634
+ <td valign="top" nowrap="NOWRAP">
635
+
636
+
637
+
638
+
639
+ 1:56 PM
640
+
641
+
642
+
643
+
644
+ </td>
645
+
646
+ </tr>
647
+
648
+ <tr>
649
+
650
+ <td valign="top" nowrap="NOWRAP">
651
+
652
+
653
+
654
+
655
+ 2:11 PM
656
+
657
+
658
+
659
+ [D]
660
+
661
+
662
+ </td>
663
+
664
+ </tr>
665
+
666
+ <tr>
667
+
668
+ <td valign="top" nowrap="NOWRAP">
669
+
670
+
671
+
672
+
673
+ 2:29 PM
674
+
675
+
676
+
677
+
678
+ </td>
679
+
680
+ </tr>
681
+
682
+ <tr>
683
+
684
+ <td valign="top" nowrap="NOWRAP">
685
+
686
+
687
+
688
+
689
+ 2:44 PM
690
+
691
+
692
+
693
+ [D]
694
+
695
+
696
+ </td>
697
+
698
+ </tr>
699
+
700
+ <tr>
701
+
702
+ <td valign="top" nowrap="NOWRAP">
703
+
704
+
705
+
706
+
707
+ 2:59 PM
708
+
709
+
710
+
711
+
712
+ </td>
713
+
714
+ </tr>
715
+
716
+ <tr>
717
+
718
+ <td valign="top" nowrap="NOWRAP">
719
+
720
+
721
+
722
+
723
+ 3:14 PM
724
+
725
+
726
+
727
+ [D]
728
+
729
+
730
+ </td>
731
+
732
+ </tr>
733
+
734
+ <tr>
735
+
736
+ <td valign="top" nowrap="NOWRAP">
737
+
738
+
739
+
740
+
741
+ 3:29 PM
742
+
743
+
744
+
745
+
746
+ </td>
747
+
748
+ </tr>
749
+
750
+ <tr>
751
+
752
+ <td valign="top" nowrap="NOWRAP">
753
+
754
+
755
+
756
+
757
+ 3:39 PM
758
+
759
+
760
+
761
+ [D]
762
+
763
+
764
+ </td>
765
+
766
+ </tr>
767
+
768
+ <tr>
769
+
770
+ <td valign="top" nowrap="NOWRAP">
771
+
772
+
773
+
774
+
775
+ 3:49 PM
776
+
777
+
778
+
779
+ [D]
780
+
781
+
782
+ </td>
783
+
784
+ </tr>
785
+
786
+ <tr>
787
+
788
+ <td valign="top" nowrap="NOWRAP">
789
+
790
+
791
+
792
+
793
+ 3:59 PM
794
+
795
+
796
+
797
+
798
+ </td>
799
+
800
+ </tr>
801
+
802
+ <tr>
803
+
804
+ <td valign="top" nowrap="NOWRAP">
805
+
806
+
807
+
808
+
809
+ 4:09 PM
810
+
811
+
812
+
813
+ [D]
814
+
815
+
816
+ </td>
817
+
818
+ </tr>
819
+
820
+ <tr>
821
+
822
+ <td valign="top" nowrap="NOWRAP">
823
+
824
+
825
+
826
+
827
+ 4:19 PM
828
+
829
+
830
+
831
+ [D]
832
+
833
+
834
+ </td>
835
+
836
+ </tr>
837
+
838
+ <tr>
839
+
840
+ <td valign="top" nowrap="NOWRAP">
841
+
842
+
843
+
844
+
845
+ 4:29 PM
846
+
847
+
848
+
849
+
850
+ </td>
851
+
852
+ </tr>
853
+
854
+ <tr>
855
+
856
+ <td valign="top" nowrap="NOWRAP">
857
+
858
+
859
+
860
+
861
+ 4:39 PM
862
+
863
+
864
+
865
+ [D]
866
+
867
+
868
+ </td>
869
+
870
+ </tr>
871
+
872
+ <tr>
873
+
874
+ <td valign="top" nowrap="NOWRAP">
875
+
876
+
877
+
878
+
879
+ 4:49 PM
880
+
881
+
882
+
883
+ [D]
884
+
885
+
886
+ </td>
887
+
888
+ </tr>
889
+
890
+ <tr>
891
+
892
+ <td valign="top" nowrap="NOWRAP">
893
+
894
+
895
+
896
+
897
+ 4:59 PM
898
+
899
+
900
+
901
+
902
+ </td>
903
+
904
+ </tr>
905
+
906
+ <tr>
907
+
908
+ <td valign="top" nowrap="NOWRAP">
909
+
910
+
911
+
912
+
913
+ 5:09 PM
914
+
915
+
916
+
917
+ [D]
918
+
919
+
920
+ </td>
921
+
922
+ </tr>
923
+
924
+ <tr>
925
+
926
+ <td valign="top" nowrap="NOWRAP">
927
+
928
+
929
+
930
+
931
+ 5:19 PM
932
+
933
+
934
+
935
+ [D]
936
+
937
+
938
+ </td>
939
+
940
+ </tr>
941
+
942
+ <tr>
943
+
944
+ <td valign="top" nowrap="NOWRAP">
945
+
946
+
947
+
948
+
949
+ 5:29 PM
950
+
951
+
952
+
953
+
954
+ </td>
955
+
956
+ </tr>
957
+
958
+ <tr>
959
+
960
+ <td valign="top" nowrap="NOWRAP">
961
+
962
+
963
+
964
+
965
+ 5:39 PM
966
+
967
+
968
+
969
+ [D]
970
+
971
+
972
+ </td>
973
+
974
+ </tr>
975
+
976
+ <tr>
977
+
978
+ <td valign="top" nowrap="NOWRAP">
979
+
980
+
981
+
982
+
983
+ 5:49 PM
984
+
985
+
986
+
987
+ [D]
988
+
989
+
990
+ </td>
991
+
992
+ </tr>
993
+
994
+ <tr>
995
+
996
+ <td valign="top" nowrap="NOWRAP">
997
+
998
+
999
+
1000
+
1001
+ 5:59 PM
1002
+
1003
+
1004
+
1005
+
1006
+ </td>
1007
+
1008
+ </tr>
1009
+
1010
+ <tr>
1011
+
1012
+ <td valign="top" nowrap="NOWRAP">
1013
+
1014
+
1015
+
1016
+
1017
+ 6:09 PM
1018
+
1019
+
1020
+
1021
+ [D]
1022
+
1023
+
1024
+ </td>
1025
+
1026
+ </tr>
1027
+
1028
+ <tr>
1029
+
1030
+ <td valign="top" nowrap="NOWRAP">
1031
+
1032
+
1033
+
1034
+
1035
+ 6:19 PM
1036
+
1037
+
1038
+
1039
+ [D]
1040
+
1041
+
1042
+ </td>
1043
+
1044
+ </tr>
1045
+
1046
+ <tr>
1047
+
1048
+ <td valign="top" nowrap="NOWRAP">
1049
+
1050
+
1051
+
1052
+
1053
+ 6:29 PM
1054
+
1055
+
1056
+
1057
+
1058
+ </td>
1059
+
1060
+ </tr>
1061
+
1062
+ <tr>
1063
+
1064
+ <td valign="top" nowrap="NOWRAP">
1065
+
1066
+
1067
+
1068
+
1069
+ 6:44 PM
1070
+
1071
+
1072
+
1073
+ [D]
1074
+
1075
+
1076
+ </td>
1077
+
1078
+ </tr>
1079
+
1080
+ <tr>
1081
+
1082
+ <td valign="top" nowrap="NOWRAP">
1083
+
1084
+
1085
+
1086
+
1087
+ 6:58 PM
1088
+
1089
+
1090
+
1091
+
1092
+ </td>
1093
+
1094
+ </tr>
1095
+
1096
+ <tr>
1097
+
1098
+ <td valign="top" nowrap="NOWRAP">
1099
+
1100
+
1101
+
1102
+
1103
+ 7:13 PM
1104
+
1105
+
1106
+
1107
+ [D]
1108
+
1109
+
1110
+ </td>
1111
+
1112
+ </tr>
1113
+
1114
+ <tr>
1115
+
1116
+ <td valign="top" nowrap="NOWRAP">
1117
+
1118
+
1119
+
1120
+
1121
+ 7:26 PM
1122
+
1123
+
1124
+
1125
+
1126
+ </td>
1127
+
1128
+ </tr>
1129
+
1130
+ <tr>
1131
+
1132
+ <td valign="top" nowrap="NOWRAP">
1133
+
1134
+
1135
+
1136
+
1137
+ 7:41 PM
1138
+
1139
+
1140
+
1141
+ [D]
1142
+
1143
+
1144
+ </td>
1145
+
1146
+ </tr>
1147
+
1148
+ <tr>
1149
+
1150
+ <td valign="top" nowrap="NOWRAP">
1151
+
1152
+
1153
+
1154
+
1155
+ 7:56 PM
1156
+
1157
+
1158
+
1159
+
1160
+ </td>
1161
+
1162
+ </tr>
1163
+
1164
+ <tr>
1165
+
1166
+ <td valign="top" nowrap="NOWRAP">
1167
+
1168
+
1169
+
1170
+
1171
+ 8:11 PM
1172
+
1173
+
1174
+
1175
+ [D]
1176
+
1177
+
1178
+ </td>
1179
+
1180
+ </tr>
1181
+
1182
+ <tr>
1183
+
1184
+ <td valign="top" nowrap="NOWRAP">
1185
+
1186
+
1187
+
1188
+
1189
+ 8:28 PM
1190
+
1191
+
1192
+
1193
+
1194
+ </td>
1195
+
1196
+ </tr>
1197
+
1198
+ <tr>
1199
+
1200
+ <td valign="top" nowrap="NOWRAP">
1201
+
1202
+
1203
+
1204
+
1205
+ 8:43 PM
1206
+
1207
+
1208
+
1209
+ [D]
1210
+
1211
+
1212
+ </td>
1213
+
1214
+ </tr>
1215
+
1216
+ <tr>
1217
+
1218
+ <td valign="top" nowrap="NOWRAP">
1219
+
1220
+
1221
+
1222
+
1223
+ 8:59 PM
1224
+
1225
+
1226
+
1227
+
1228
+ </td>
1229
+
1230
+ </tr>
1231
+
1232
+ <tr>
1233
+
1234
+ <td valign="top" nowrap="NOWRAP">
1235
+
1236
+
1237
+
1238
+
1239
+ 9:12 PM
1240
+
1241
+
1242
+
1243
+ [D]
1244
+
1245
+
1246
+ </td>
1247
+
1248
+ </tr>
1249
+
1250
+ <tr>
1251
+
1252
+ <td valign="top" nowrap="NOWRAP">
1253
+
1254
+
1255
+
1256
+
1257
+ 9:27 PM
1258
+
1259
+
1260
+
1261
+
1262
+ </td>
1263
+
1264
+ </tr>
1265
+
1266
+ <tr>
1267
+
1268
+ <td valign="top" nowrap="NOWRAP">
1269
+
1270
+
1271
+
1272
+
1273
+ 9:47 PM
1274
+
1275
+
1276
+
1277
+ [D]
1278
+
1279
+
1280
+ </td>
1281
+
1282
+ </tr>
1283
+
1284
+ <tr>
1285
+
1286
+ <td valign="top" nowrap="NOWRAP">
1287
+
1288
+
1289
+
1290
+
1291
+ 10:07 PM
1292
+
1293
+
1294
+
1295
+
1296
+ </td>
1297
+
1298
+ </tr>
1299
+
1300
+ <tr>
1301
+
1302
+ <td valign="top" nowrap="NOWRAP">
1303
+
1304
+
1305
+
1306
+
1307
+ 10:37 PM
1308
+
1309
+
1310
+
1311
+
1312
+ </td>
1313
+
1314
+ </tr>
1315
+
1316
+ <tr>
1317
+
1318
+ <td valign="top" nowrap="NOWRAP">
1319
+
1320
+
1321
+
1322
+
1323
+ 11:10 PM
1324
+
1325
+
1326
+
1327
+
1328
+ </td>
1329
+
1330
+ </tr>
1331
+
1332
+ <tr>
1333
+
1334
+ <td valign="top" nowrap="NOWRAP">
1335
+
1336
+
1337
+
1338
+
1339
+ 11:38 PM
1340
+
1341
+
1342
+
1343
+
1344
+ </td>
1345
+
1346
+ </tr>
1347
+
1348
+ <tr>
1349
+
1350
+ <td valign="top" nowrap="NOWRAP">
1351
+
1352
+
1353
+
1354
+
1355
+ 12:10 AM
1356
+
1357
+
1358
+
1359
+
1360
+ </td>
1361
+
1362
+ </tr>
1363
+
1364
+ <tr>
1365
+
1366
+ <td valign="top" nowrap="NOWRAP">
1367
+
1368
+
1369
+
1370
+
1371
+ 12:45 AM
1372
+
1373
+
1374
+
1375
+
1376
+ </td>
1377
+
1378
+ </tr>
1379
+
1380
+ <tr>
1381
+
1382
+ <td valign="top" nowrap="NOWRAP">
1383
+
1384
+
1385
+
1386
+
1387
+ 1:20 AM
1388
+
1389
+
1390
+
1391
+
1392
+ </td>
1393
+
1394
+ </tr>
1395
+
1396
+ </table>
1397
+ <table id="SchedulesTimesNotesTable" cellpadding="0" cellspacing="0" border="0">
1398
+
1399
+ <tr>
1400
+ <td valign="top" class="notes">[D]</td>
1401
+ <td valign="top" class="notes">Destination WESTBORO</td>
1402
+ </tr>
1403
+
1404
+ </table>
1405
+
1406
+ <table id="SchedulesTimesLinksTable" cellpadding="0" cellspacing="0" border="0">
1407
+ <tr>
1408
+ <td class="link">&nbsp;</td>
1409
+ </tr>
1410
+ <tr>
1411
+ <td class="link"><a href="post.routelist.schedules.oci;jsessionid=BA7428C73F70FAD81BFF5C409E7EDA46?lang=en&amp;route=2&amp;direction=Direction2&amp;day=20090323&amp;rangeIndex=5">Choose new stops</a></td>
1412
+ </tr>
1413
+ <tr>
1414
+ <td class="link"><a href="post.dateroute.schedules.oci;jsessionid=BA7428C73F70FAD81BFF5C409E7EDA46?lang=en&amp;route=2&amp;day=20090323&amp;rangeIndex=5">Choose a new direction</a></td>
1415
+ </tr>
1416
+ <tr>
1417
+ <td class="link"><a href="start.schedules.oci;jsessionid=BA7428C73F70FAD81BFF5C409E7EDA46?lang=en">Choose a new route</a></td>
1418
+ </tr>
1419
+ </table>
1420
+
1421
+
1422
+
1423
+
1424
+ <br/>
1425
+ <p id="TemplateFooter" class="TemplateFooter"><a href="startFR.schedules.oci">Fran�ais</a> | <a href="startEN.stoptimes.oci">Stop Times</a> | <a href="startEN.tripplan.oci">Travel Planner</a></p>
1426
+ </body>
1427
+ </html>
1428
+
1429
+
1430
+