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,1038 @@
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
+ 18 Britannia
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
+ QUILL / GLYNN </td>
71
+
72
+ </tr>
73
+
74
+ <tr>
75
+
76
+ <td valign="top" nowrap="NOWRAP">
77
+
78
+
79
+
80
+
81
+ 6:12 AM
82
+
83
+
84
+
85
+ [D]
86
+
87
+
88
+ </td>
89
+
90
+ </tr>
91
+
92
+ <tr>
93
+
94
+ <td valign="top" nowrap="NOWRAP">
95
+
96
+
97
+
98
+
99
+ 6:37 AM
100
+
101
+
102
+
103
+ [D]
104
+
105
+
106
+ </td>
107
+
108
+ </tr>
109
+
110
+ <tr>
111
+
112
+ <td valign="top" nowrap="NOWRAP">
113
+
114
+
115
+
116
+
117
+ 6:57 AM
118
+
119
+
120
+
121
+ [D]
122
+
123
+
124
+ </td>
125
+
126
+ </tr>
127
+
128
+ <tr>
129
+
130
+ <td valign="top" nowrap="NOWRAP">
131
+
132
+
133
+
134
+
135
+ 7:18 AM
136
+
137
+
138
+
139
+ [D]
140
+
141
+
142
+ </td>
143
+
144
+ </tr>
145
+
146
+ <tr>
147
+
148
+ <td valign="top" nowrap="NOWRAP">
149
+
150
+
151
+
152
+
153
+ 7:33 AM
154
+
155
+
156
+
157
+ [D]
158
+
159
+
160
+ </td>
161
+
162
+ </tr>
163
+
164
+ <tr>
165
+
166
+ <td valign="top" nowrap="NOWRAP">
167
+
168
+
169
+
170
+
171
+ 7:43 AM
172
+
173
+
174
+
175
+ [y]
176
+
177
+
178
+ </td>
179
+
180
+ </tr>
181
+
182
+ <tr>
183
+
184
+ <td valign="top" nowrap="NOWRAP">
185
+
186
+
187
+
188
+
189
+ 7:53 AM
190
+
191
+
192
+
193
+ [D]
194
+
195
+
196
+ </td>
197
+
198
+ </tr>
199
+
200
+ <tr>
201
+
202
+ <td valign="top" nowrap="NOWRAP">
203
+
204
+
205
+
206
+
207
+ 8:07 AM
208
+
209
+
210
+
211
+ [D]
212
+
213
+
214
+ </td>
215
+
216
+ </tr>
217
+
218
+ <tr>
219
+
220
+ <td valign="top" nowrap="NOWRAP">
221
+
222
+
223
+
224
+
225
+ 8:23 AM
226
+
227
+
228
+
229
+ [D]
230
+
231
+
232
+ </td>
233
+
234
+ </tr>
235
+
236
+ <tr>
237
+
238
+ <td valign="top" nowrap="NOWRAP">
239
+
240
+
241
+
242
+
243
+ 8:43 AM
244
+
245
+
246
+
247
+ [x]
248
+
249
+
250
+ </td>
251
+
252
+ </tr>
253
+
254
+ <tr>
255
+
256
+ <td valign="top" nowrap="NOWRAP">
257
+
258
+
259
+
260
+
261
+ 9:03 AM
262
+
263
+
264
+
265
+ [D]
266
+
267
+
268
+ </td>
269
+
270
+ </tr>
271
+
272
+ <tr>
273
+
274
+ <td valign="top" nowrap="NOWRAP">
275
+
276
+
277
+
278
+
279
+ 9:21 AM
280
+
281
+
282
+
283
+ [x]
284
+
285
+
286
+ </td>
287
+
288
+ </tr>
289
+
290
+ <tr>
291
+
292
+ <td valign="top" nowrap="NOWRAP">
293
+
294
+
295
+
296
+
297
+ 9:41 AM
298
+
299
+
300
+
301
+ [D]
302
+
303
+
304
+ </td>
305
+
306
+ </tr>
307
+
308
+ <tr>
309
+
310
+ <td valign="top" nowrap="NOWRAP">
311
+
312
+
313
+
314
+
315
+ 10:01 AM
316
+
317
+
318
+
319
+ [x]
320
+
321
+
322
+ </td>
323
+
324
+ </tr>
325
+
326
+ <tr>
327
+
328
+ <td valign="top" nowrap="NOWRAP">
329
+
330
+
331
+
332
+
333
+ 10:21 AM
334
+
335
+
336
+
337
+ [D]
338
+
339
+
340
+ </td>
341
+
342
+ </tr>
343
+
344
+ <tr>
345
+
346
+ <td valign="top" nowrap="NOWRAP">
347
+
348
+
349
+
350
+
351
+ 10:41 AM
352
+
353
+
354
+
355
+ [x]
356
+
357
+
358
+ </td>
359
+
360
+ </tr>
361
+
362
+ <tr>
363
+
364
+ <td valign="top" nowrap="NOWRAP">
365
+
366
+
367
+
368
+
369
+ 11:01 AM
370
+
371
+
372
+
373
+ [D]
374
+
375
+
376
+ </td>
377
+
378
+ </tr>
379
+
380
+ <tr>
381
+
382
+ <td valign="top" nowrap="NOWRAP">
383
+
384
+
385
+
386
+
387
+ 11:21 AM
388
+
389
+
390
+
391
+ [x]
392
+
393
+
394
+ </td>
395
+
396
+ </tr>
397
+
398
+ <tr>
399
+
400
+ <td valign="top" nowrap="NOWRAP">
401
+
402
+
403
+
404
+
405
+ 11:41 AM
406
+
407
+
408
+
409
+ [D]
410
+
411
+
412
+ </td>
413
+
414
+ </tr>
415
+
416
+ <tr>
417
+
418
+ <td valign="top" nowrap="NOWRAP">
419
+
420
+
421
+
422
+
423
+ 12:01 PM
424
+
425
+
426
+
427
+ [x]
428
+
429
+
430
+ </td>
431
+
432
+ </tr>
433
+
434
+ <tr>
435
+
436
+ <td valign="top" nowrap="NOWRAP">
437
+
438
+
439
+
440
+
441
+ 12:21 PM
442
+
443
+
444
+
445
+ [D]
446
+
447
+
448
+ </td>
449
+
450
+ </tr>
451
+
452
+ <tr>
453
+
454
+ <td valign="top" nowrap="NOWRAP">
455
+
456
+
457
+
458
+
459
+ 12:41 PM
460
+
461
+
462
+
463
+ [x]
464
+
465
+
466
+ </td>
467
+
468
+ </tr>
469
+
470
+ <tr>
471
+
472
+ <td valign="top" nowrap="NOWRAP">
473
+
474
+
475
+
476
+
477
+ 1:01 PM
478
+
479
+
480
+
481
+ [D]
482
+
483
+
484
+ </td>
485
+
486
+ </tr>
487
+
488
+ <tr>
489
+
490
+ <td valign="top" nowrap="NOWRAP">
491
+
492
+
493
+
494
+
495
+ 1:21 PM
496
+
497
+
498
+
499
+ [x]
500
+
501
+
502
+ </td>
503
+
504
+ </tr>
505
+
506
+ <tr>
507
+
508
+ <td valign="top" nowrap="NOWRAP">
509
+
510
+
511
+
512
+
513
+ 1:41 PM
514
+
515
+
516
+
517
+ [D]
518
+
519
+
520
+ </td>
521
+
522
+ </tr>
523
+
524
+ <tr>
525
+
526
+ <td valign="top" nowrap="NOWRAP">
527
+
528
+
529
+
530
+
531
+ 2:01 PM
532
+
533
+
534
+
535
+ [x]
536
+
537
+
538
+ </td>
539
+
540
+ </tr>
541
+
542
+ <tr>
543
+
544
+ <td valign="top" nowrap="NOWRAP">
545
+
546
+
547
+
548
+
549
+ 2:22 PM
550
+
551
+
552
+
553
+ [D]
554
+
555
+
556
+ </td>
557
+
558
+ </tr>
559
+
560
+ <tr>
561
+
562
+ <td valign="top" nowrap="NOWRAP">
563
+
564
+
565
+
566
+
567
+ 2:42 PM
568
+
569
+
570
+
571
+ [x]
572
+
573
+
574
+ </td>
575
+
576
+ </tr>
577
+
578
+ <tr>
579
+
580
+ <td valign="top" nowrap="NOWRAP">
581
+
582
+
583
+
584
+
585
+ 3:02 PM
586
+
587
+
588
+
589
+ [D]
590
+
591
+
592
+ </td>
593
+
594
+ </tr>
595
+
596
+ <tr>
597
+
598
+ <td valign="top" nowrap="NOWRAP">
599
+
600
+
601
+
602
+
603
+ 3:17 PM
604
+
605
+
606
+
607
+ [x]
608
+
609
+
610
+ </td>
611
+
612
+ </tr>
613
+
614
+ <tr>
615
+
616
+ <td valign="top" nowrap="NOWRAP">
617
+
618
+
619
+
620
+
621
+ 3:38 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
+ 3:59 PM
640
+
641
+
642
+
643
+ [D]
644
+
645
+
646
+ </td>
647
+
648
+ </tr>
649
+
650
+ <tr>
651
+
652
+ <td valign="top" nowrap="NOWRAP">
653
+
654
+
655
+
656
+
657
+ 4:19 PM
658
+
659
+
660
+
661
+ [D]
662
+
663
+
664
+ </td>
665
+
666
+ </tr>
667
+
668
+ <tr>
669
+
670
+ <td valign="top" nowrap="NOWRAP">
671
+
672
+
673
+
674
+
675
+ 4:38 PM
676
+
677
+
678
+
679
+ [D]
680
+
681
+
682
+ </td>
683
+
684
+ </tr>
685
+
686
+ <tr>
687
+
688
+ <td valign="top" nowrap="NOWRAP">
689
+
690
+
691
+
692
+
693
+ 4:57 PM
694
+
695
+
696
+
697
+ [D]
698
+
699
+
700
+ </td>
701
+
702
+ </tr>
703
+
704
+ <tr>
705
+
706
+ <td valign="top" nowrap="NOWRAP">
707
+
708
+
709
+
710
+
711
+ 5:17 PM
712
+
713
+
714
+
715
+ [D]
716
+
717
+
718
+ </td>
719
+
720
+ </tr>
721
+
722
+ <tr>
723
+
724
+ <td valign="top" nowrap="NOWRAP">
725
+
726
+
727
+
728
+
729
+ 5:37 PM
730
+
731
+
732
+
733
+ [D]
734
+
735
+
736
+ </td>
737
+
738
+ </tr>
739
+
740
+ <tr>
741
+
742
+ <td valign="top" nowrap="NOWRAP">
743
+
744
+
745
+
746
+
747
+ 5:56 PM
748
+
749
+
750
+
751
+
752
+ </td>
753
+
754
+ </tr>
755
+
756
+ <tr>
757
+
758
+ <td valign="top" nowrap="NOWRAP">
759
+
760
+
761
+
762
+
763
+ 6:16 PM
764
+
765
+
766
+
767
+ [D]
768
+
769
+
770
+ </td>
771
+
772
+ </tr>
773
+
774
+ <tr>
775
+
776
+ <td valign="top" nowrap="NOWRAP">
777
+
778
+
779
+
780
+
781
+ 6:31 PM
782
+
783
+
784
+
785
+
786
+ </td>
787
+
788
+ </tr>
789
+
790
+ <tr>
791
+
792
+ <td valign="top" nowrap="NOWRAP">
793
+
794
+
795
+
796
+
797
+ 6:50 PM
798
+
799
+
800
+
801
+ [D]
802
+
803
+
804
+ </td>
805
+
806
+ </tr>
807
+
808
+ <tr>
809
+
810
+ <td valign="top" nowrap="NOWRAP">
811
+
812
+
813
+
814
+
815
+ 7:10 PM
816
+
817
+
818
+
819
+
820
+ </td>
821
+
822
+ </tr>
823
+
824
+ <tr>
825
+
826
+ <td valign="top" nowrap="NOWRAP">
827
+
828
+
829
+
830
+
831
+ 7:30 PM
832
+
833
+
834
+
835
+ [D]
836
+
837
+
838
+ </td>
839
+
840
+ </tr>
841
+
842
+ <tr>
843
+
844
+ <td valign="top" nowrap="NOWRAP">
845
+
846
+
847
+
848
+
849
+ 7:50 PM
850
+
851
+
852
+
853
+
854
+ </td>
855
+
856
+ </tr>
857
+
858
+ <tr>
859
+
860
+ <td valign="top" nowrap="NOWRAP">
861
+
862
+
863
+
864
+
865
+ 8:10 PM
866
+
867
+
868
+
869
+ [D]
870
+
871
+
872
+ </td>
873
+
874
+ </tr>
875
+
876
+ <tr>
877
+
878
+ <td valign="top" nowrap="NOWRAP">
879
+
880
+
881
+
882
+
883
+ 8:30 PM
884
+
885
+
886
+
887
+
888
+ </td>
889
+
890
+ </tr>
891
+
892
+ <tr>
893
+
894
+ <td valign="top" nowrap="NOWRAP">
895
+
896
+
897
+
898
+
899
+ 8:50 PM
900
+
901
+
902
+
903
+ [D]
904
+
905
+
906
+ </td>
907
+
908
+ </tr>
909
+
910
+ <tr>
911
+
912
+ <td valign="top" nowrap="NOWRAP">
913
+
914
+
915
+
916
+
917
+ 9:17 PM
918
+
919
+
920
+
921
+
922
+ </td>
923
+
924
+ </tr>
925
+
926
+ <tr>
927
+
928
+ <td valign="top" nowrap="NOWRAP">
929
+
930
+
931
+
932
+
933
+ 9:42 PM
934
+
935
+
936
+
937
+ [D]
938
+
939
+
940
+ </td>
941
+
942
+ </tr>
943
+
944
+ <tr>
945
+
946
+ <td valign="top" nowrap="NOWRAP">
947
+
948
+
949
+
950
+
951
+ 10:12 PM
952
+
953
+
954
+
955
+
956
+ </td>
957
+
958
+ </tr>
959
+
960
+ <tr>
961
+
962
+ <td valign="top" nowrap="NOWRAP">
963
+
964
+
965
+
966
+
967
+ 10:42 PM
968
+
969
+
970
+
971
+ [D]
972
+
973
+
974
+ </td>
975
+
976
+ </tr>
977
+
978
+ <tr>
979
+
980
+ <td valign="top" nowrap="NOWRAP">
981
+
982
+
983
+
984
+
985
+ 11:47 PM
986
+
987
+
988
+
989
+
990
+ </td>
991
+
992
+ </tr>
993
+
994
+ </table>
995
+ <table id="SchedulesTimesNotesTable" cellpadding="0" cellspacing="0" border="0">
996
+
997
+ <tr>
998
+ <td valign="top" class="notes">[D]</td>
999
+ <td valign="top" class="notes">Destination VIA CASSELS BRADFORD</td>
1000
+ </tr>
1001
+
1002
+ <tr>
1003
+ <td valign="top" class="notes">[x]</td>
1004
+ <td valign="top" class="notes">Destination VIA CROYDON REGINA</td>
1005
+ </tr>
1006
+
1007
+ <tr>
1008
+ <td valign="top" class="notes">[y]</td>
1009
+ <td valign="top" class="notes">Destination DOWNTOWN CENTRE-VILLE</td>
1010
+ </tr>
1011
+
1012
+ </table>
1013
+
1014
+ <table id="SchedulesTimesLinksTable" cellpadding="0" cellspacing="0" border="0">
1015
+ <tr>
1016
+ <td class="link">&nbsp;</td>
1017
+ </tr>
1018
+ <tr>
1019
+ <td class="link"><a href="post.routelist.schedules.oci;jsessionid=37E1405D46180EFDCB0C7EE39F59233C?lang=en&amp;route=18&amp;direction=Direction2&amp;day=20090323&amp;rangeIndex=5">Choose new stops</a></td>
1020
+ </tr>
1021
+ <tr>
1022
+ <td class="link"><a href="post.dateroute.schedules.oci;jsessionid=37E1405D46180EFDCB0C7EE39F59233C?lang=en&amp;route=18&amp;day=20090323&amp;rangeIndex=5">Choose a new direction</a></td>
1023
+ </tr>
1024
+ <tr>
1025
+ <td class="link"><a href="start.schedules.oci;jsessionid=37E1405D46180EFDCB0C7EE39F59233C?lang=en">Choose a new route</a></td>
1026
+ </tr>
1027
+ </table>
1028
+
1029
+
1030
+
1031
+
1032
+ <br/>
1033
+ <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>
1034
+ </body>
1035
+ </html>
1036
+
1037
+
1038
+