using a trip_id containing a Hash # raises exception while using ScheduleViewer:
e.g. trip_id=LILLE_TRAM_T#a
problem seems to be caused by the creation of the url for displaying the trip
rows (index.html, line 619):
html += svgTag("/ttablegraph?height=100&trip=" + tripId, "height='115'
width='100%'");
it should probably be:
html += svgTag("/ttablegraph?height=100&trip=" + encodeURIComponent(tripId),
"height='115' width='100%'");
Original issue reported on code.google.com by n...@google.com on 19 Nov 2010 at 10:43
Original issue reported on code.google.com by
n...@google.com
on 19 Nov 2010 at 10:43