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