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,99 @@
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
+ <table cellpadding="0" cellspacing="0" summary="Warning message"><tr><td>
36
+
37
+
38
+
39
+
40
+ <span class="InfoBeanError"><font color="red"><b>Processor Runtime Error: The Processor com.ontira.octranspo.mobileweb.schedules.RouteListProc threw exception {1}</b></font><br/></span>
41
+
42
+
43
+ </td></tr></table>
44
+
45
+
46
+
47
+
48
+ <form action="post.routelist.schedules.oci;jsessionid=3D853AC49A81897C92A86EAD753898F2" method="get">
49
+ <table id="SchedulesRouteListRouteTable" cellpadding="0" cellspacing="0" border="0">
50
+ <tr>
51
+ <td class="header">
52
+
53
+
54
+ There were 1 matches found.
55
+ </td>
56
+ </tr>
57
+ <tr><td>&nbsp;</td></tr>
58
+ <tr>
59
+ <td class="question">Please select from the list.</td>
60
+ </tr>
61
+
62
+ <tr>
63
+ <td class="list">
64
+ <input type="radio" name="routeIndex" value="0" />
65
+ <a href="post.routelist.schedules.oci;jsessionid=3D853AC49A81897C92A86EAD753898F2?lang=en&amp;route=&amp;day=20090323&amp;rangeIndex=5&amp;routeIndex=0">
66
+
67
+ 123 Gloucester N. & Blair
68
+
69
+ </td>
70
+ </tr>
71
+
72
+ <tr>
73
+ <td class="button">
74
+ <input name="lang" id="lang" type="hidden" value="en"/>
75
+ <input name="route" id="route" type="hidden" value=""/>
76
+ <input name="day" id="day" type="hidden" value="20090323"/>
77
+ <input name="rangeIndex" id="rangeIndex" type="hidden" value="5"/>
78
+ <input class="button" name="continue" type="submit" value="Continue"/>
79
+ </td>
80
+ </tr>
81
+ <tr><td>&nbsp;</td></tr>
82
+ </table>
83
+ </form>
84
+ <table id="SchedulesRouteListLinksTable" cellpadding="0" cellspacing="0" border="0">
85
+ <tr>
86
+ <td class="link"><a href="start.schedules.oci;jsessionid=3D853AC49A81897C92A86EAD753898F2?lang=en">Choose a new route</a></td>
87
+ </tr>
88
+ </table>
89
+
90
+
91
+
92
+
93
+ <br/>
94
+ <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>
95
+ </body>
96
+ </html>
97
+
98
+
99
+
@@ -0,0 +1,700 @@
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
+
39
+
40
+
41
+ <form action="post.stoplist.schedules.oci;jsessionid=ABA2B373F51EA9A89D150A172D8BA05A" method="get">
42
+ <table id="SchedulesStopListStopsTable" cellpadding="0" cellspacing="0" border="0">
43
+ <tr>
44
+ <td class="header" valign="top">Route:</td><td class="selected">
45
+
46
+ 1 Ottawa-Rockcliffe
47
+ .</td>
48
+ </tr>
49
+ <tr><td colspan="2">&nbsp;</td></tr>
50
+ <tr>
51
+ <td class="question" colspan="2">
52
+
53
+
54
+ Please select up to 3 stops:
55
+ </td>
56
+ </tr>
57
+
58
+ <tr>
59
+ <td class="checkbox" colspan="2">
60
+ <input type="checkbox" name="check0" id="check0"/>
61
+
62
+
63
+ GREENBORO 1A (3037)
64
+ </td>
65
+ </tr>
66
+
67
+ <tr>
68
+ <td class="checkbox" colspan="2">
69
+ <input type="checkbox" name="check1" id="check1"/>
70
+
71
+
72
+ SOUTH KEYS 1B (3038)
73
+ </td>
74
+ </tr>
75
+
76
+ <tr>
77
+ <td class="checkbox" colspan="2">
78
+ <input type="checkbox" name="check2" id="check2"/>
79
+
80
+
81
+ HUNT CLUB LOOP - BOUCLE / STOP - ARR�T 1A (8668)
82
+ </td>
83
+ </tr>
84
+
85
+ <tr>
86
+ <td class="checkbox" colspan="2">
87
+ <input type="checkbox" name="check3" id="check3"/>
88
+
89
+
90
+ HUNT CLUB / BRIDLE PATH (1969)
91
+ </td>
92
+ </tr>
93
+
94
+ <tr>
95
+ <td class="checkbox" colspan="2">
96
+ <input type="checkbox" name="check4" id="check4"/>
97
+
98
+
99
+ HUNT CLUB / BRIDLE PATH (4247)
100
+ </td>
101
+ </tr>
102
+
103
+ <tr>
104
+ <td class="checkbox" colspan="2">
105
+ <input type="checkbox" name="check5" id="check5"/>
106
+
107
+
108
+ HUNT CLUB / BANK (8383)
109
+ </td>
110
+ </tr>
111
+
112
+ <tr>
113
+ <td class="checkbox" colspan="2">
114
+ <input type="checkbox" name="check6" id="check6"/>
115
+
116
+
117
+ BANK / HUNT CLUB (4244)
118
+ </td>
119
+ </tr>
120
+
121
+ <tr>
122
+ <td class="checkbox" colspan="2">
123
+ <input type="checkbox" name="check7" id="check7"/>
124
+
125
+
126
+ BANK / AD. 2401 (5726)
127
+ </td>
128
+ </tr>
129
+
130
+ <tr>
131
+ <td class="checkbox" colspan="2">
132
+ <input type="checkbox" name="check8" id="check8"/>
133
+
134
+
135
+ BANK / CAHILL (0885)
136
+ </td>
137
+ </tr>
138
+
139
+ <tr>
140
+ <td class="checkbox" colspan="2">
141
+ <input type="checkbox" name="check9" id="check9"/>
142
+
143
+
144
+ BANK / VISITOR (4221)
145
+ </td>
146
+ </tr>
147
+
148
+ <tr>
149
+ <td class="checkbox" colspan="2">
150
+ <input type="checkbox" name="check10" id="check10"/>
151
+
152
+
153
+ BANK / JOHNSTON (4835)
154
+ </td>
155
+ </tr>
156
+
157
+ <tr>
158
+ <td class="checkbox" colspan="2">
159
+ <input type="checkbox" name="check11" id="check11"/>
160
+
161
+
162
+ BANK / KITCHENER (4220)
163
+ </td>
164
+ </tr>
165
+
166
+ <tr>
167
+ <td class="checkbox" colspan="2">
168
+ <input type="checkbox" name="check12" id="check12"/>
169
+
170
+
171
+ BANK / NOTTINGHILL (8861)
172
+ </td>
173
+ </tr>
174
+
175
+ <tr>
176
+ <td class="checkbox" colspan="2">
177
+ <input type="checkbox" name="check13" id="check13"/>
178
+
179
+
180
+ BANK / WALKLEY (8436)
181
+ </td>
182
+ </tr>
183
+
184
+ <tr>
185
+ <td class="checkbox" colspan="2">
186
+ <input type="checkbox" name="check14" id="check14"/>
187
+
188
+
189
+ BANK / ALTA VISTA (4107)
190
+ </td>
191
+ </tr>
192
+
193
+ <tr>
194
+ <td class="checkbox" colspan="2">
195
+ <input type="checkbox" name="check15" id="check15"/>
196
+
197
+
198
+ BANK / ERIE (4106)
199
+ </td>
200
+ </tr>
201
+
202
+ <tr>
203
+ <td class="checkbox" colspan="2">
204
+ <input type="checkbox" name="check16" id="check16"/>
205
+
206
+
207
+ BANK / COLLINS (8435)
208
+ </td>
209
+ </tr>
210
+
211
+ <tr>
212
+ <td class="checkbox" colspan="2">
213
+ <input type="checkbox" name="check17" id="check17"/>
214
+
215
+
216
+ BANK / HERON (4104)
217
+ </td>
218
+ </tr>
219
+
220
+ <tr>
221
+ <td class="checkbox" colspan="2">
222
+ <input type="checkbox" name="check18" id="check18"/>
223
+
224
+
225
+ BANK / EVANS (4103)
226
+ </td>
227
+ </tr>
228
+
229
+ <tr>
230
+ <td class="checkbox" colspan="2">
231
+ <input type="checkbox" name="check19" id="check19"/>
232
+
233
+
234
+ BANK / ROCKINGHAM (8469)
235
+ </td>
236
+ </tr>
237
+
238
+ <tr>
239
+ <td class="checkbox" colspan="2">
240
+ <input type="checkbox" name="check20" id="check20"/>
241
+
242
+
243
+ BANK / KILBORN (8296)
244
+ </td>
245
+ </tr>
246
+
247
+ <tr>
248
+ <td class="checkbox" colspan="2">
249
+ <input type="checkbox" name="check21" id="check21"/>
250
+
251
+
252
+ BANK / OHIO (8295)
253
+ </td>
254
+ </tr>
255
+
256
+ <tr>
257
+ <td class="checkbox" colspan="2">
258
+ <input type="checkbox" name="check22" id="check22"/>
259
+
260
+
261
+ BILLINGS BRIDGE / BANK (3034)
262
+ </td>
263
+ </tr>
264
+
265
+ <tr>
266
+ <td class="checkbox" colspan="2">
267
+ <input type="checkbox" name="check23" id="check23"/>
268
+
269
+
270
+ BILLINGS BRIDGE 4C (3034)
271
+ </td>
272
+ </tr>
273
+
274
+ <tr>
275
+ <td class="checkbox" colspan="2">
276
+ <input type="checkbox" name="check24" id="check24"/>
277
+
278
+
279
+ BANK / RIVERSIDE (4100)
280
+ </td>
281
+ </tr>
282
+
283
+ <tr>
284
+ <td class="checkbox" colspan="2">
285
+ <input type="checkbox" name="check25" id="check25"/>
286
+
287
+
288
+ BANK / RIVERSIDE (8298)
289
+ </td>
290
+ </tr>
291
+
292
+ <tr>
293
+ <td class="checkbox" colspan="2">
294
+ <input type="checkbox" name="check26" id="check26"/>
295
+
296
+
297
+ BANK / RIVERDALE (6741)
298
+ </td>
299
+ </tr>
300
+
301
+ <tr>
302
+ <td class="checkbox" colspan="2">
303
+ <input type="checkbox" name="check27" id="check27"/>
304
+
305
+
306
+ BANK / OSSINGTON (7653)
307
+ </td>
308
+ </tr>
309
+
310
+ <tr>
311
+ <td class="checkbox" colspan="2">
312
+ <input type="checkbox" name="check28" id="check28"/>
313
+
314
+
315
+ BANK / BELMONT (2414)
316
+ </td>
317
+ </tr>
318
+
319
+ <tr>
320
+ <td class="checkbox" colspan="2">
321
+ <input type="checkbox" name="check29" id="check29"/>
322
+
323
+
324
+ BANK / SUNNYSIDE (7655)
325
+ </td>
326
+ </tr>
327
+
328
+ <tr>
329
+ <td class="checkbox" colspan="2">
330
+ <input type="checkbox" name="check30" id="check30"/>
331
+
332
+
333
+ BANK / AYLMER (6773)
334
+ </td>
335
+ </tr>
336
+
337
+ <tr>
338
+ <td class="checkbox" colspan="2">
339
+ <input type="checkbox" name="check31" id="check31"/>
340
+
341
+
342
+ BANK / WILTON (6839)
343
+ </td>
344
+ </tr>
345
+
346
+ <tr>
347
+ <td class="checkbox" colspan="2">
348
+ <input type="checkbox" name="check32" id="check32"/>
349
+
350
+
351
+ BANK / PARC LANSDOWNE PARK (7658)
352
+ </td>
353
+ </tr>
354
+
355
+ <tr>
356
+ <td class="checkbox" colspan="2">
357
+ <input type="checkbox" name="check33" id="check33"/>
358
+
359
+
360
+ BANK / HOLMWOOD (6840)
361
+ </td>
362
+ </tr>
363
+
364
+ <tr>
365
+ <td class="checkbox" colspan="2">
366
+ <input type="checkbox" name="check34" id="check34"/>
367
+
368
+
369
+ BANK / FIFTH (7659)
370
+ </td>
371
+ </tr>
372
+
373
+ <tr>
374
+ <td class="checkbox" colspan="2">
375
+ <input type="checkbox" name="check35" id="check35"/>
376
+
377
+
378
+ BANK / THIRD (6841)
379
+ </td>
380
+ </tr>
381
+
382
+ <tr>
383
+ <td class="checkbox" colspan="2">
384
+ <input type="checkbox" name="check36" id="check36"/>
385
+
386
+
387
+ BANK / FIRST (7661)
388
+ </td>
389
+ </tr>
390
+
391
+ <tr>
392
+ <td class="checkbox" colspan="2">
393
+ <input type="checkbox" name="check37" id="check37"/>
394
+
395
+
396
+ BANK / GLEBE (6842)
397
+ </td>
398
+ </tr>
399
+
400
+ <tr>
401
+ <td class="checkbox" colspan="2">
402
+ <input type="checkbox" name="check38" id="check38"/>
403
+
404
+
405
+ BANK / PATTERSON (7664)
406
+ </td>
407
+ </tr>
408
+
409
+ <tr>
410
+ <td class="checkbox" colspan="2">
411
+ <input type="checkbox" name="check39" id="check39"/>
412
+
413
+
414
+ BANK / ISABELLA (6844)
415
+ </td>
416
+ </tr>
417
+
418
+ <tr>
419
+ <td class="checkbox" colspan="2">
420
+ <input type="checkbox" name="check40" id="check40"/>
421
+
422
+
423
+ BANK / CATHERINE (8895)
424
+ </td>
425
+ </tr>
426
+
427
+ <tr>
428
+ <td class="checkbox" colspan="2">
429
+ <input type="checkbox" name="check41" id="check41"/>
430
+
431
+
432
+ BANK / FLORA (7667)
433
+ </td>
434
+ </tr>
435
+
436
+ <tr>
437
+ <td class="checkbox" colspan="2">
438
+ <input type="checkbox" name="check42" id="check42"/>
439
+
440
+
441
+ BANK / GLADSTONE (8798)
442
+ </td>
443
+ </tr>
444
+
445
+ <tr>
446
+ <td class="checkbox" colspan="2">
447
+ <input type="checkbox" name="check43" id="check43"/>
448
+
449
+
450
+ BANK / LEWIS (2483)
451
+ </td>
452
+ </tr>
453
+
454
+ <tr>
455
+ <td class="checkbox" colspan="2">
456
+ <input type="checkbox" name="check44" id="check44"/>
457
+
458
+
459
+ BANK / SOMERSET (1902)
460
+ </td>
461
+ </tr>
462
+
463
+ <tr>
464
+ <td class="checkbox" colspan="2">
465
+ <input type="checkbox" name="check45" id="check45"/>
466
+
467
+
468
+ BANK / GLOUCESTER (2484)
469
+ </td>
470
+ </tr>
471
+
472
+ <tr>
473
+ <td class="checkbox" colspan="2">
474
+ <input type="checkbox" name="check46" id="check46"/>
475
+
476
+
477
+ BANK / SLATER (7688)
478
+ </td>
479
+ </tr>
480
+
481
+ <tr>
482
+ <td class="checkbox" colspan="2">
483
+ <input type="checkbox" name="check47" id="check47"/>
484
+
485
+
486
+ BANK / SPARKS (7546)
487
+ </td>
488
+ </tr>
489
+
490
+ <tr>
491
+ <td class="checkbox" colspan="2">
492
+ <input type="checkbox" name="check48" id="check48"/>
493
+
494
+
495
+ WELLINGTON / O'CONNOR (7693)
496
+ </td>
497
+ </tr>
498
+
499
+ <tr>
500
+ <td class="checkbox" colspan="2">
501
+ <input type="checkbox" name="check49" id="check49"/>
502
+
503
+
504
+ WELLINGTON / ELGIN (7694)
505
+ </td>
506
+ </tr>
507
+
508
+ <tr>
509
+ <td class="checkbox" colspan="2">
510
+ <input type="checkbox" name="check50" id="check50"/>
511
+
512
+
513
+ RIDEAU 3A (3009)
514
+ </td>
515
+ </tr>
516
+
517
+ <tr>
518
+ <td class="checkbox" colspan="2">
519
+ <input type="checkbox" name="check51" id="check51"/>
520
+
521
+
522
+ DALHOUSIE / RIDEAU (7577)
523
+ </td>
524
+ </tr>
525
+
526
+ <tr>
527
+ <td class="checkbox" colspan="2">
528
+ <input type="checkbox" name="check52" id="check52"/>
529
+
530
+
531
+ DALHOUSIE / CLARENCE (6837)
532
+ </td>
533
+ </tr>
534
+
535
+ <tr>
536
+ <td class="checkbox" colspan="2">
537
+ <input type="checkbox" name="check53" id="check53"/>
538
+
539
+
540
+ MURRAY / DALHOUSIE (2322)
541
+ </td>
542
+ </tr>
543
+
544
+ <tr>
545
+ <td class="checkbox" colspan="2">
546
+ <input type="checkbox" name="check54" id="check54"/>
547
+
548
+
549
+ MURRAY / CUMBERLAND (7575)
550
+ </td>
551
+ </tr>
552
+
553
+ <tr>
554
+ <td class="checkbox" colspan="2">
555
+ <input type="checkbox" name="check55" id="check55"/>
556
+
557
+
558
+ MURRAY / KING EDWARD (2320)
559
+ </td>
560
+ </tr>
561
+
562
+ <tr>
563
+ <td class="checkbox" colspan="2">
564
+ <input type="checkbox" name="check56" id="check56"/>
565
+
566
+
567
+ BEAUSOLEIL / ST PATRICK (1904)
568
+ </td>
569
+ </tr>
570
+
571
+ <tr>
572
+ <td class="checkbox" colspan="2">
573
+ <input type="checkbox" name="check57" id="check57"/>
574
+
575
+
576
+ OLD ST PATRICK / �.S. DE LA SALLE (6827)
577
+ </td>
578
+ </tr>
579
+
580
+ <tr>
581
+ <td class="checkbox" colspan="2">
582
+ <input type="checkbox" name="check58" id="check58"/>
583
+
584
+
585
+ OLD ST PATRICK / COBOURG (2964)
586
+ </td>
587
+ </tr>
588
+
589
+ <tr>
590
+ <td class="checkbox" colspan="2">
591
+ <input type="checkbox" name="check59" id="check59"/>
592
+
593
+
594
+ ST PATRICK / COBOURG (7571)
595
+ </td>
596
+ </tr>
597
+
598
+ <tr>
599
+ <td class="checkbox" colspan="2">
600
+ <input type="checkbox" name="check60" id="check60"/>
601
+
602
+
603
+ ST PATRICK / CHARLOTTE (6826)
604
+ </td>
605
+ </tr>
606
+
607
+ <tr>
608
+ <td class="checkbox" colspan="2">
609
+ <input type="checkbox" name="check61" id="check61"/>
610
+
611
+
612
+ ST PATRICK / VANIER (9800)
613
+ </td>
614
+ </tr>
615
+
616
+ <tr>
617
+ <td class="checkbox" colspan="2">
618
+ <input type="checkbox" name="check62" id="check62"/>
619
+
620
+
621
+ BEECHWOOD / CHARLEVOIX (8793)
622
+ </td>
623
+ </tr>
624
+
625
+ <tr>
626
+ <td class="checkbox" colspan="2">
627
+ <input type="checkbox" name="check63" id="check63"/>
628
+
629
+
630
+ SPRINGFIELD / BEECHWOOD (8788)
631
+ </td>
632
+ </tr>
633
+
634
+ <tr>
635
+ <td class="checkbox" colspan="2">
636
+ <input type="checkbox" name="check64" id="check64"/>
637
+
638
+
639
+ SPRINGFIELD / PUTMAN (7021)
640
+ </td>
641
+ </tr>
642
+
643
+ <tr>
644
+ <td class="checkbox" colspan="2">
645
+ <input type="checkbox" name="check65" id="check65"/>
646
+
647
+
648
+ SPRINGFIELD / RIDEAU (7022)
649
+ </td>
650
+ </tr>
651
+
652
+ <tr>
653
+ <td class="checkbox" colspan="2">
654
+ <input type="checkbox" name="check66" id="check66"/>
655
+
656
+
657
+ SPRINGFIELD / LINDENLEA (7023)
658
+ </td>
659
+ </tr>
660
+
661
+ <tr>
662
+ <td class="checkbox" colspan="2">
663
+ <input type="checkbox" name="check67" id="check67"/>
664
+
665
+
666
+ MAPLE LANE / SPRINGFIELD (8789)
667
+ </td>
668
+ </tr>
669
+
670
+ <tr>
671
+ <td class="button" colspan="2">
672
+ <input name="lang" id="lang" type="hidden" value="en"/>
673
+ <input name="route" id="route" type="hidden" value="1"/>
674
+ <input name="direction" id="direction" type="hidden" value="Direction2"/>
675
+ <input name="day" id="day" type="hidden" value="20090323"/>
676
+ <input name="rangeIndex" id="rangeIndex" type="hidden" value="5"/>
677
+ <input class="button" name="continue" type="submit" value="Continue"/>
678
+ </td>
679
+ </tr>
680
+ <tr><td colspan="2">&nbsp;</td></tr>
681
+ </table>
682
+ </form>
683
+ <table id="SchedulesStopListLinksTable" cellpadding="0" cellspacing="0" border="0">
684
+ <tr>
685
+ <td class="link"><a href="post.dateroute.schedules.oci;jsessionid=ABA2B373F51EA9A89D150A172D8BA05A?lang=en&amp;route=1&amp;day=20090323&amp;rangeIndex=5">Choose a new direction</a></td>
686
+ </tr>
687
+ <tr>
688
+ <td class="link"><a href="start.schedules.oci;jsessionid=ABA2B373F51EA9A89D150A172D8BA05A?lang=en">Choose a new route</a></td>
689
+ </tr>
690
+ </table>
691
+
692
+
693
+
694
+ <br/>
695
+ <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>
696
+ </body>
697
+ </html>
698
+
699
+
700
+