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