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,104 @@
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
+ <table cellpadding="0" cellspacing="0" summary="Warning message"><tr><td>
42
+
43
+
44
+
45
+
46
+ <span class="InfoBeanError"><font color="red"><b>Processor Runtime Error: The Processor com.ontira.octranspo.mobileweb.schedules.StopListProc threw exception {1}</b></font><br/></span>
47
+
48
+
49
+ </td></tr></table>
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+ <form action="post.stoplist.schedules.oci;jsessionid=D07E614B9B70E15AE49FBFA4CF0ADA50" method="get">
58
+ <table id="SchedulesStopListStopsTable" cellpadding="0" cellspacing="0" border="0">
59
+ <tr>
60
+ <td class="header" valign="top">Route:</td><td class="selected">
61
+
62
+
63
+ .</td>
64
+ </tr>
65
+ <tr><td colspan="2">&nbsp;</td></tr>
66
+ <tr>
67
+ <td class="question" colspan="2">
68
+
69
+
70
+ Please select up to 3 stops:
71
+ </td>
72
+ </tr>
73
+
74
+ <tr>
75
+ <td class="button" colspan="2">
76
+ <input name="lang" id="lang" type="hidden" value="en"/>
77
+ <input name="route" id="route" type="hidden" value="2"/>
78
+ <input name="direction" id="direction" type="hidden" value="Direction"/>
79
+ <input name="day" id="day" type="hidden" value="20090323"/>
80
+ <input name="rangeIndex" id="rangeIndex" type="hidden" value="5"/>
81
+ <input class="button" name="continue" type="submit" value="Continue"/>
82
+ </td>
83
+ </tr>
84
+ <tr><td colspan="2">&nbsp;</td></tr>
85
+ </table>
86
+ </form>
87
+ <table id="SchedulesStopListLinksTable" cellpadding="0" cellspacing="0" border="0">
88
+ <tr>
89
+ <td class="link"><a href="post.dateroute.schedules.oci;jsessionid=D07E614B9B70E15AE49FBFA4CF0ADA50?lang=en&amp;route=2&amp;day=20090323&amp;rangeIndex=5">Choose a new direction</a></td>
90
+ </tr>
91
+ <tr>
92
+ <td class="link"><a href="start.schedules.oci;jsessionid=D07E614B9B70E15AE49FBFA4CF0ADA50?lang=en">Choose a new route</a></td>
93
+ </tr>
94
+ </table>
95
+
96
+
97
+
98
+ <br/>
99
+ <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>
100
+ </body>
101
+ </html>
102
+
103
+
104
+
@@ -0,0 +1,1180 @@
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
+ 1 South Keys
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
+ MAPLE LANE / SPRINGFIELD (8789)</td>
77
+
78
+ </tr>
79
+
80
+ <tr>
81
+
82
+ <td valign="top" nowrap="NOWRAP">
83
+
84
+
85
+
86
+
87
+ 5:52 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:14 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:26 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
+ 6:38 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
+ 6:50 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:04 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
+ 7:16 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
+ 7:28 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
+ 7:41 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
+ 7:53 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
+ 8:04 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
+ 8:16 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
+ 8:28 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
+ 8:40 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
+ 8:48 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
+ 9:02 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
+ 9:17 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
+ 9:32 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
+ 9:47 AM
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
+ 10:02 AM
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
+ 10:17 AM
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
+ 10:32 AM
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
+ 10:47 AM
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
+ 11:02 AM
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
+ 11:17 AM
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
+ 11:32 AM
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
+ 11:47 AM
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
+ 12:02 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
+ 12:17 PM
564
+
565
+
566
+
567
+
568
+
569
+ </td>
570
+
571
+ </tr>
572
+
573
+ <tr>
574
+
575
+ <td valign="top" nowrap="NOWRAP">
576
+
577
+
578
+
579
+
580
+ 12:32 PM
581
+
582
+
583
+
584
+
585
+
586
+ </td>
587
+
588
+ </tr>
589
+
590
+ <tr>
591
+
592
+ <td valign="top" nowrap="NOWRAP">
593
+
594
+
595
+
596
+
597
+ 12:47 PM
598
+
599
+
600
+
601
+
602
+
603
+ </td>
604
+
605
+ </tr>
606
+
607
+ <tr>
608
+
609
+ <td valign="top" nowrap="NOWRAP">
610
+
611
+
612
+
613
+
614
+ 1:02 PM
615
+
616
+
617
+
618
+
619
+
620
+ </td>
621
+
622
+ </tr>
623
+
624
+ <tr>
625
+
626
+ <td valign="top" nowrap="NOWRAP">
627
+
628
+
629
+
630
+
631
+ 1:17 PM
632
+
633
+
634
+
635
+
636
+
637
+ </td>
638
+
639
+ </tr>
640
+
641
+ <tr>
642
+
643
+ <td valign="top" nowrap="NOWRAP">
644
+
645
+
646
+
647
+
648
+ 1:32 PM
649
+
650
+
651
+
652
+
653
+
654
+ </td>
655
+
656
+ </tr>
657
+
658
+ <tr>
659
+
660
+ <td valign="top" nowrap="NOWRAP">
661
+
662
+
663
+
664
+
665
+ 1:47 PM
666
+
667
+
668
+
669
+
670
+
671
+ </td>
672
+
673
+ </tr>
674
+
675
+ <tr>
676
+
677
+ <td valign="top" nowrap="NOWRAP">
678
+
679
+
680
+
681
+
682
+ 2:02 PM
683
+
684
+
685
+
686
+
687
+
688
+ </td>
689
+
690
+ </tr>
691
+
692
+ <tr>
693
+
694
+ <td valign="top" nowrap="NOWRAP">
695
+
696
+
697
+
698
+
699
+ 2:17 PM
700
+
701
+
702
+
703
+
704
+
705
+ </td>
706
+
707
+ </tr>
708
+
709
+ <tr>
710
+
711
+ <td valign="top" nowrap="NOWRAP">
712
+
713
+
714
+
715
+
716
+ 2:32 PM
717
+
718
+
719
+
720
+
721
+
722
+ </td>
723
+
724
+ </tr>
725
+
726
+ <tr>
727
+
728
+ <td valign="top" nowrap="NOWRAP">
729
+
730
+
731
+
732
+
733
+ 2:47 PM
734
+
735
+
736
+
737
+
738
+
739
+ </td>
740
+
741
+ </tr>
742
+
743
+ <tr>
744
+
745
+ <td valign="top" nowrap="NOWRAP">
746
+
747
+
748
+
749
+
750
+ 3:02 PM
751
+
752
+
753
+
754
+
755
+
756
+ </td>
757
+
758
+ </tr>
759
+
760
+ <tr>
761
+
762
+ <td valign="top" nowrap="NOWRAP">
763
+
764
+
765
+
766
+
767
+ 3:15 PM
768
+
769
+
770
+
771
+
772
+
773
+ </td>
774
+
775
+ </tr>
776
+
777
+ <tr>
778
+
779
+ <td valign="top" nowrap="NOWRAP">
780
+
781
+
782
+
783
+
784
+ 3:30 PM
785
+
786
+
787
+
788
+
789
+
790
+ </td>
791
+
792
+ </tr>
793
+
794
+ <tr>
795
+
796
+ <td valign="top" nowrap="NOWRAP">
797
+
798
+
799
+
800
+
801
+ 3:42 PM
802
+
803
+
804
+
805
+
806
+
807
+ </td>
808
+
809
+ </tr>
810
+
811
+ <tr>
812
+
813
+ <td valign="top" nowrap="NOWRAP">
814
+
815
+
816
+
817
+
818
+ 4:06 PM
819
+
820
+
821
+
822
+
823
+
824
+ </td>
825
+
826
+ </tr>
827
+
828
+ <tr>
829
+
830
+ <td valign="top" nowrap="NOWRAP">
831
+
832
+
833
+
834
+
835
+ 4:18 PM
836
+
837
+
838
+
839
+
840
+
841
+ </td>
842
+
843
+ </tr>
844
+
845
+ <tr>
846
+
847
+ <td valign="top" nowrap="NOWRAP">
848
+
849
+
850
+
851
+
852
+ 4:30 PM
853
+
854
+
855
+
856
+
857
+
858
+ </td>
859
+
860
+ </tr>
861
+
862
+ <tr>
863
+
864
+ <td valign="top" nowrap="NOWRAP">
865
+
866
+
867
+
868
+
869
+ 4:42 PM
870
+
871
+
872
+
873
+
874
+
875
+ </td>
876
+
877
+ </tr>
878
+
879
+ <tr>
880
+
881
+ <td valign="top" nowrap="NOWRAP">
882
+
883
+
884
+
885
+
886
+ 4:54 PM
887
+
888
+
889
+
890
+
891
+
892
+ </td>
893
+
894
+ </tr>
895
+
896
+ <tr>
897
+
898
+ <td valign="top" nowrap="NOWRAP">
899
+
900
+
901
+
902
+
903
+ 5:06 PM
904
+
905
+
906
+
907
+
908
+
909
+ </td>
910
+
911
+ </tr>
912
+
913
+ <tr>
914
+
915
+ <td valign="top" nowrap="NOWRAP">
916
+
917
+
918
+
919
+
920
+ 5:18 PM
921
+
922
+
923
+
924
+
925
+
926
+ </td>
927
+
928
+ </tr>
929
+
930
+ <tr>
931
+
932
+ <td valign="top" nowrap="NOWRAP">
933
+
934
+
935
+
936
+
937
+ 5:44 PM
938
+
939
+
940
+
941
+
942
+
943
+ </td>
944
+
945
+ </tr>
946
+
947
+ <tr>
948
+
949
+ <td valign="top" nowrap="NOWRAP">
950
+
951
+
952
+
953
+
954
+ 5:57 PM
955
+
956
+
957
+
958
+
959
+
960
+ </td>
961
+
962
+ </tr>
963
+
964
+ <tr>
965
+
966
+ <td valign="top" nowrap="NOWRAP">
967
+
968
+
969
+
970
+
971
+ 6:19 PM
972
+
973
+
974
+
975
+
976
+
977
+ </td>
978
+
979
+ </tr>
980
+
981
+ <tr>
982
+
983
+ <td valign="top" nowrap="NOWRAP">
984
+
985
+
986
+
987
+
988
+ 6:39 PM
989
+
990
+
991
+
992
+
993
+
994
+ </td>
995
+
996
+ </tr>
997
+
998
+ <tr>
999
+
1000
+ <td valign="top" nowrap="NOWRAP">
1001
+
1002
+
1003
+
1004
+
1005
+ 7:10 PM
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+ </td>
1012
+
1013
+ </tr>
1014
+
1015
+ <tr>
1016
+
1017
+ <td valign="top" nowrap="NOWRAP">
1018
+
1019
+
1020
+
1021
+
1022
+ 7:40 PM
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+ </td>
1029
+
1030
+ </tr>
1031
+
1032
+ <tr>
1033
+
1034
+ <td valign="top" nowrap="NOWRAP">
1035
+
1036
+
1037
+
1038
+
1039
+ 8:11 PM
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+ </td>
1046
+
1047
+ </tr>
1048
+
1049
+ <tr>
1050
+
1051
+ <td valign="top" nowrap="NOWRAP">
1052
+
1053
+
1054
+
1055
+
1056
+ 8:41 PM
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+ </td>
1063
+
1064
+ </tr>
1065
+
1066
+ <tr>
1067
+
1068
+ <td valign="top" nowrap="NOWRAP">
1069
+
1070
+
1071
+
1072
+
1073
+ 9:11 PM
1074
+
1075
+
1076
+
1077
+
1078
+
1079
+ </td>
1080
+
1081
+ </tr>
1082
+
1083
+ <tr>
1084
+
1085
+ <td valign="top" nowrap="NOWRAP">
1086
+
1087
+
1088
+
1089
+
1090
+ 9:41 PM
1091
+
1092
+
1093
+
1094
+
1095
+
1096
+ </td>
1097
+
1098
+ </tr>
1099
+
1100
+ <tr>
1101
+
1102
+ <td valign="top" nowrap="NOWRAP">
1103
+
1104
+
1105
+
1106
+
1107
+ 10:11 PM
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+ </td>
1114
+
1115
+ </tr>
1116
+
1117
+ <tr>
1118
+
1119
+ <td valign="top" nowrap="NOWRAP">
1120
+
1121
+
1122
+
1123
+
1124
+ 10:41 PM
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+ </td>
1131
+
1132
+ </tr>
1133
+
1134
+ <tr>
1135
+
1136
+ <td valign="top" nowrap="NOWRAP">
1137
+
1138
+
1139
+
1140
+
1141
+ 11:11 PM
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+ </td>
1148
+
1149
+ </tr>
1150
+
1151
+ </table>
1152
+ <table id="SchedulesTimesNotesTable" cellpadding="0" cellspacing="0" border="0">
1153
+
1154
+ </table>
1155
+
1156
+ <table id="SchedulesTimesLinksTable" cellpadding="0" cellspacing="0" border="0">
1157
+ <tr>
1158
+ <td class="link">&nbsp;</td>
1159
+ </tr>
1160
+ <tr>
1161
+ <td class="link"><a href="post.routelist.schedules.oci;jsessionid=3225602ABFFCFBC84AD7EC8FCAA42131?lang=en&amp;route=1&amp;direction=Direction1&amp;day=20100323&amp;rangeIndex=5">Choose new stops</a></td>
1162
+ </tr>
1163
+ <tr>
1164
+ <td class="link"><a href="post.dateroute.schedules.oci;jsessionid=3225602ABFFCFBC84AD7EC8FCAA42131?lang=en&amp;route=1&amp;day=20100323&amp;rangeIndex=5">Choose a new direction</a></td>
1165
+ </tr>
1166
+ <tr>
1167
+ <td class="link"><a href="start.schedules.oci;jsessionid=3225602ABFFCFBC84AD7EC8FCAA42131?lang=en">Choose a new route</a></td>
1168
+ </tr>
1169
+ </table>
1170
+
1171
+
1172
+
1173
+
1174
+ <br/>
1175
+ <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>
1176
+ </body>
1177
+ </html>
1178
+
1179
+
1180
+