Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Contents of /trunk/web/translations/router.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1536 - (show annotations) (download) (as text)
Tue Apr 1 18:08:21 2014 UTC (11 years ago) by amb
File MIME type: text/html
File size: 31002 byte(s)
Use '~~' delimiters in the templates for the special-case replacement strings
(like the language name).

1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html>
3
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6 <meta name="keywords" content="openstreetmap routing route planner">
7 <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
8
9 <title>Routino : @@ROUTER-TITLE@@</title>
10
11 <!--
12 Routino router web page.
13
14 Part of the Routino routing software.
15
16 This file Copyright 2008-2014 Andrew M. Bishop
17
18 This program is free software: you can redistribute it and/or modify
19 it under the terms of the GNU Affero General Public License as published by
20 the Free Software Foundation, either version 3 of the License, or
21 (at your option) any later version.
22
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU Affero General Public License for more details.
27
28 You should have received a copy of the GNU Affero General Public License
29 along with this program. If not, see http://www.gnu.org/licenses/.
30 -->
31
32 <!-- Page elements -->
33 <script src="page-elements.js" type="text/javascript"></script>
34 <link href="page-elements.css" type="text/css" rel="stylesheet">
35
36 <!-- Router and visualiser shared features -->
37 <link href="maplayout.css" type="text/css" rel="stylesheet">
38
39 <!-- Router specific features -->
40 <script src="profiles.js" type="text/javascript"></script>
41 <link href="router.css" type="text/css" rel="stylesheet">
42
43 <!-- Map parameters -->
44 <script src="mapprops.js" type="text/javascript"></script>
45
46 <!-- Map loader -->
47 <script src="maploader.js" type="text/javascript"></script>
48
49 </head>
50 <body onload="map_load('html_init();map_init();form_init();');">
51
52 <!-- Left hand side of window - data panel -->
53
54 <div class="left_panel">
55
56 <div class="tab_box">
57 <span id="tab_options" onclick="tab_select('options');" class="tab_selected" title="@@OPTION-TAB-HELP@@">@@OPTION-TAB@@</span>
58 <span id="tab_results" onclick="tab_select('results');" class="tab_unselected" title="@@RESULTS-TAB-HELP@@">@@RESULTS-TAB@@</span>
59 <span id="tab_data" onclick="tab_select('data');" class="tab_unselected" title="@@DATA-TAB-HELP@@">@@DATA-TAB@@</span>
60 </div>
61
62 <div class="tab_content" id="tab_options_div">
63
64 <form name="form" id="form" action="#" method="get" onsubmit="return false;">
65 <div class="hideshow_box">
66 <span class="hideshow_title">@@ROUTINO-ROUTER@@</span>
67 $$ROUTER-INFO$$
68 <div class="center">
69 <a target="other" href="http://www.routino.org/">@@ROUTINO-WEBSITE@@</a>
70 |
71 <a target="other" href="documentation/">@@DOCUMENTATION@@</a>
72 </div>
73 </div>
74
75 <div class="hideshow_box">
76 <span id="hideshow_language_show" onclick="hideshow_show('language');" class="hideshow_show">+</span>
77 <span id="hideshow_language_hide" onclick="hideshow_hide('language');" class="hideshow_hide">-</span>
78 <span class="hideshow_title">@@LANGUAGE-BOX@@</span>
79
80 <div id="hideshow_language_div" style="display: none;">
81 <table>
82 **LANGUAGES-META**
83 <tr>
84 <td><a id="lang_~~lang~~_url" href="router.html.~~lang~~" title="@@LANGUAGE-WEBPAGE@@">@@LANGUAGE@@</a>
85 <td>(~~LANG~~)
86 <td><input name="language" type="radio" value="~~lang~~" onchange="formSetLanguage();" ~~CHECKED~~>
87 **LANGUAGES-META**
88 </table>
89 <a target="translation" href="http://www.routino.org/translations/">Routino Translations</a>
90 </div>
91 </div>
92
93 <div class="hideshow_box">
94 <span id="hideshow_waypoint_show" onclick="hideshow_show('waypoint');" class="hideshow_hide">+</span>
95 <span id="hideshow_waypoint_hide" onclick="hideshow_hide('waypoint');" class="hideshow_show">-</span>
96 <span class="hideshow_title">@@WAYPOINTS-BOX@@</span>
97 <div id="hideshow_waypoint_div">
98 <table id="waypoints">
99 <colgroup>
100 <col style="width: 22px;">
101 <col>
102 <col style="width: 76px;">
103 </colgroup>
104 <tr id="waypointXXX" style="display: none;">
105 <td>
106 <img id="iconXXX" src="icons/marker-XXX-grey.png" title="@@WAYPOINT-POSITION@@" alt="Waypoint XXX" onmousedown="markerToggleMap(XXX);">
107 <td>
108 <span id="coordsXXX">
109 <input name="lonXXX" type="text" size="7" title="@@WAYPOINT-LONGITUDE@@" onchange="formSetCoords(XXX);">E
110 <input name="latXXX" type="text" size="7" title="@@WAYPOINT-LATITUDE@@" onchange="formSetCoords(XXX);">N
111 </span>
112 <span id="searchXXX" style="display: none;">
113 <input name="searchXXX" type="text" size="18" title="@@WAYPOINT-LOCATION@@"> <!-- uses Javascript event for triggering -->
114 </span>
115 <td>
116 <img alt="?" src="icons/waypoint-search.png" title="@@WAYPOINT-SEARCH@@" onmousedown="markerSearch(XXX);" >
117 <img alt="G" src="icons/waypoint-locate.png" title="@@WAYPOINT-GET@@" onmousedown="markerLocate(XXX);" >
118 <img alt="O" src="icons/waypoint-recentre.png" title="@@WAYPOINT-CENTRE1@@" onmousedown="markerRecentre(XXX);">
119 <img alt="^" src="icons/waypoint-up.png" title="@@WAYPOINT-UP@@" onmousedown="markerMoveUp(XXX);" >
120 <img alt="+" src="icons/waypoint-add.png" title="@@WAYPOINT-ADD@@" onmousedown="markerAddAfter(XXX);">
121 <br>
122 <img alt="#" src="icons/waypoint-coords.png" title="@@WAYPOINT-COORDS@@" onmousedown="markerCoords(XXX);" >
123 <img alt="~" src="icons/waypoint-home.png" title="@@WAYPOINT-HOME@@" onmousedown="markerHome(XXX);" >
124 <img alt="o" src="icons/waypoint-centre.png" title="@@WAYPOINT-CENTRE2@@" onmousedown="markerCentre(XXX);" >
125 <img alt="v" src="icons/waypoint-down.png" title="@@WAYPOINT-DOWN@@" onmousedown="markerMoveDown(XXX);">
126 <img alt="-" src="icons/waypoint-remove.png" title="@@WAYPOINT-REMOVE@@" onmousedown="markerRemove(XXX);" >
127 <tr id="searchresultsXXX" style="display: none;">
128 <td colspan="3">
129 <!-- The waypoints are inserted by the JavaScript, see the "maxmarkers" variable in router.js. -->
130 <tr>
131 <td colspan="3" class="center">
132 <input type="button" title="@@WAYPOINT-REVERSE@@" value="@@WAYPOINT-REVERSE-BUTTON@@" onmousedown="markersReverse();">
133 <input type="button" title="@@WAYPOINT-LOOP@@" value="@@WAYPOINT-LOOP-BUTTON@@" onmousedown="markersLoop();">
134 </table>
135 </div>
136 </div>
137
138 <div class="hideshow_box">
139 <span id="hideshow_transport_show" onclick="hideshow_show('transport');" class="hideshow_hide">+</span>
140 <span id="hideshow_transport_hide" onclick="hideshow_hide('transport');" class="hideshow_show">-</span>
141 <span class="hideshow_title">@@TRANSPORT-TYPE-BOX@@</span>
142 <div id="hideshow_transport_div">
143 <table>
144 <tr><td>@@TRANSPORT-FOOT@@: <td><input name="transport" type="radio" value="foot" onchange="formSetTransport('foot' );">
145 <tr><td>@@TRANSPORT-HORSE@@: <td><input name="transport" type="radio" value="horse" onchange="formSetTransport('horse' );">
146 <tr><td>@@TRANSPORT-WHEELCHAIR@@:<td><input name="transport" type="radio" value="wheelchair" onchange="formSetTransport('wheelchair');">
147 <tr><td>@@TRANSPORT-BICYCLE@@: <td><input name="transport" type="radio" value="bicycle" onchange="formSetTransport('bicycle' );">
148 <tr><td>@@TRANSPORT-MOPED@@: <td><input name="transport" type="radio" value="moped" onchange="formSetTransport('moped' );">
149 <tr><td>@@TRANSPORT-MOTORCYCLE@@:<td><input name="transport" type="radio" value="motorcycle" onchange="formSetTransport('motorcycle');">
150 <tr><td>@@TRANSPORT-MOTORCAR@@: <td><input name="transport" type="radio" value="motorcar" onchange="formSetTransport('motorcar' );">
151 <tr><td>@@TRANSPORT-GOODS@@: <td><input name="transport" type="radio" value="goods" onchange="formSetTransport('goods' );">
152 <tr><td>@@TRANSPORT-HGV@@: <td><input name="transport" type="radio" value="hgv" onchange="formSetTransport('hgv' );">
153 <tr><td>@@TRANSPORT-PSV@@: <td><input name="transport" type="radio" value="psv" onchange="formSetTransport('psv' );">
154 </table>
155 </div>
156 </div>
157
158 <div class="hideshow_box">
159 <span id="hideshow_highway_show" onclick="hideshow_show('highway');" class="hideshow_show">+</span>
160 <span id="hideshow_highway_hide" onclick="hideshow_hide('highway');" class="hideshow_hide">-</span>
161 <span class="hideshow_title">@@HIGHWAY-PREFERENCES-BOX@@</span>
162 <div id="hideshow_highway_div" style="display: none;">
163 <table>
164 <tr><td>@@HIGHWAY-MOTORWAY@@: <td><input name="highway-motorway" type="text" size="3" onchange="formSetHighway('motorway' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('motorway' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('motorway' ,'+');">
165 <tr><td>@@HIGHWAY-TRUNK@@: <td><input name="highway-trunk" type="text" size="3" onchange="formSetHighway('trunk' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('trunk' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('trunk' ,'+');">
166 <tr><td>@@HIGHWAY-PRIMARY@@: <td><input name="highway-primary" type="text" size="3" onchange="formSetHighway('primary' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('primary' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('primary' ,'+');">
167 <tr><td>@@HIGHWAY-SECONDARY@@: <td><input name="highway-secondary" type="text" size="3" onchange="formSetHighway('secondary' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('secondary' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('secondary' ,'+');">
168 <tr><td>@@HIGHWAY-TERTIARY@@: <td><input name="highway-tertiary" type="text" size="3" onchange="formSetHighway('tertiary' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('tertiary' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('tertiary' ,'+');">
169 <tr><td>@@HIGHWAY-UNCLASSIFIED@@:<td><input name="highway-unclassified" type="text" size="3" onchange="formSetHighway('unclassified','=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('unclassified','-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('unclassified','+');">
170 <tr><td>@@HIGHWAY-RESIDENTIAL@@: <td><input name="highway-residential" type="text" size="3" onchange="formSetHighway('residential' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('residential' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('residential' ,'+');">
171 <tr><td>@@HIGHWAY-SERVICE@@: <td><input name="highway-service" type="text" size="3" onchange="formSetHighway('service' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('service' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('service' ,'+');">
172 <tr><td>@@HIGHWAY-TRACK@@: <td><input name="highway-track" type="text" size="3" onchange="formSetHighway('track' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('track' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('track' ,'+');">
173 <tr><td>@@HIGHWAY-CYCLEWAY@@: <td><input name="highway-cycleway" type="text" size="3" onchange="formSetHighway('cycleway' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('cycleway' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('cycleway' ,'+');">
174 <tr><td>@@HIGHWAY-PATH@@: <td><input name="highway-path" type="text" size="3" onchange="formSetHighway('path' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('path' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('path' ,'+');">
175 <tr><td>@@HIGHWAY-STEPS@@: <td><input name="highway-steps" type="text" size="3" onchange="formSetHighway('steps' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('steps' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('steps' ,'+');">
176 <tr><td>@@HIGHWAY-FERRY@@: <td><input name="highway-ferry" type="text" size="3" onchange="formSetHighway('ferry' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetHighway('ferry' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetHighway('ferry' ,'+');">
177 </table>
178 </div>
179 </div>
180
181 <div class="hideshow_box">
182 <span id="hideshow_speed_show" onclick="hideshow_show('speed');" class="hideshow_show">+</span>
183 <span id="hideshow_speed_hide" onclick="hideshow_hide('speed');" class="hideshow_hide">-</span>
184 <span class="hideshow_title">@@SPEED-LIMITS-BOX@@</span>
185 <div id="hideshow_speed_div" style="display: none;">
186 <table>
187 <tr><td>@@HIGHWAY-MOTORWAY@@: <td><input name="speed-motorway" type="text" size="3" onchange="formSetSpeed('motorway' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('motorway' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('motorway' ,'+');">
188 <tr><td>@@HIGHWAY-TRUNK@@: <td><input name="speed-trunk" type="text" size="3" onchange="formSetSpeed('trunk' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('trunk' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('trunk' ,'+');">
189 <tr><td>@@HIGHWAY-PRIMARY@@: <td><input name="speed-primary" type="text" size="3" onchange="formSetSpeed('primary' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('primary' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('primary' ,'+');">
190 <tr><td>@@HIGHWAY-SECONDARY@@: <td><input name="speed-secondary" type="text" size="3" onchange="formSetSpeed('secondary' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('secondary' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('secondary' ,'+');">
191 <tr><td>@@HIGHWAY-TERTIARY@@: <td><input name="speed-tertiary" type="text" size="3" onchange="formSetSpeed('tertiary' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('tertiary' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('tertiary' ,'+');">
192 <tr><td>@@HIGHWAY-UNCLASSIFIED@@:<td><input name="speed-unclassified" type="text" size="3" onchange="formSetSpeed('unclassified','=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('unclassified','-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('unclassified','+');">
193 <tr><td>@@HIGHWAY-RESIDENTIAL@@: <td><input name="speed-residential" type="text" size="3" onchange="formSetSpeed('residential' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('residential' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('residential' ,'+');">
194 <tr><td>@@HIGHWAY-SERVICE@@: <td><input name="speed-service" type="text" size="3" onchange="formSetSpeed('service' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('service' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('service' ,'+');">
195 <tr><td>@@HIGHWAY-TRACK@@: <td><input name="speed-track" type="text" size="3" onchange="formSetSpeed('track' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('track' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('track' ,'+');">
196 <tr><td>@@HIGHWAY-CYCLEWAY@@: <td><input name="speed-cycleway" type="text" size="3" onchange="formSetSpeed('cycleway' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('cycleway' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('cycleway' ,'+');">
197 <tr><td>@@HIGHWAY-PATH@@: <td><input name="speed-path" type="text" size="3" onchange="formSetSpeed('path' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('path' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('path' ,'+');">
198 <tr><td>@@HIGHWAY-STEPS@@: <td><input name="speed-steps" type="text" size="3" onchange="formSetSpeed('steps' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('steps' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('steps' ,'+');">
199 <tr><td>@@HIGHWAY-FERRY@@: <td><input name="speed-ferry" type="text" size="3" onchange="formSetSpeed('ferry' ,'=');"><td>km/hr<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetSpeed('ferry' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetSpeed('ferry' ,'+');">
200 </table>
201 </div>
202 </div>
203
204 <div class="hideshow_box">
205 <span id="hideshow_property_show" onclick="hideshow_show('property');" class="hideshow_show">+</span>
206 <span id="hideshow_property_hide" onclick="hideshow_hide('property');" class="hideshow_hide">-</span>
207 <span class="hideshow_title">@@PROPERTY-PREFERENCES-BOX@@</span>
208 <div id="hideshow_property_div" style="display: none;">
209 <table>
210 <tr><td>@@PROPERTY-PAVED@@: <td><input name="property-paved" type="text" size="3" onchange="formSetProperty('paved' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetProperty('paved' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetProperty('paved' ,'+');">
211 <tr><td>@@PROPERTY-MULTILANE@@: <td><input name="property-multilane" type="text" size="3" onchange="formSetProperty('multilane' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetProperty('multilane' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetProperty('multilane' ,'+');">
212 <tr><td>@@PROPERTY-BRIDGE@@: <td><input name="property-bridge" type="text" size="3" onchange="formSetProperty('bridge' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetProperty('bridge' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetProperty('bridge' ,'+');">
213 <tr><td>@@PROPERTY-TUNNEL@@: <td><input name="property-tunnel" type="text" size="3" onchange="formSetProperty('tunnel' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetProperty('tunnel' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetProperty('tunnel' ,'+');">
214 <tr><td>@@PROPERTY-WALKINGROUTE@@:<td><input name="property-footroute" type="text" size="3" onchange="formSetProperty('footroute' ,'=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetProperty('footroute' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetProperty('footroute' ,'+');">
215 <tr><td>@@PROPERTY-BICYCLEROUTE@@:<td><input name="property-bicycleroute" type="text" size="3" onchange="formSetProperty('bicycleroute','=');"><td>%<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetProperty('bicycleroute','-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetProperty('bicycleroute','+');">
216 </table>
217 </div>
218 </div>
219
220 <div class="hideshow_box">
221 <span id="hideshow_restriction_show" onclick="hideshow_show('restriction');" class="hideshow_show">+</span>
222 <span id="hideshow_restriction_hide" onclick="hideshow_hide('restriction');" class="hideshow_hide">-</span>
223 <span class="hideshow_title">@@OTHER-RESTRICTIONS-BOX@@</span>
224 <div id="hideshow_restriction_div" style="display: none;">
225 <table>
226 <tr><td>@@RESTRICT-ONEWAY@@: <td><input name="restrict-oneway" type="checkbox" onchange="formSetRestriction('oneway');">
227 <tr><td>@@RESTRICT-TURNS@@:<td><input name="restrict-turns" type="checkbox" onchange="formSetRestriction('turns' );">
228 </table>
229 <table>
230 <tr><td>@@RESTRICT-WEIGHT@@:<td><input name="restrict-weight" type="text" size="3" onchange="formSetRestriction('weight','=');"><td>tonnes<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetRestriction('weight','-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetRestriction('weight','+');">
231 <tr><td>@@RESTRICT-HEIGHT@@:<td><input name="restrict-height" type="text" size="3" onchange="formSetRestriction('height','=');"><td>metres<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetRestriction('height','-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetRestriction('height','+');">
232 <tr><td>@@RESTRICT-WIDTH@@: <td><input name="restrict-width" type="text" size="3" onchange="formSetRestriction('width' ,'=');"><td>metres<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetRestriction('width' ,'-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetRestriction('width' ,'+');">
233 <tr><td>@@RESTRICT-LENGTH@@:<td><input name="restrict-length" type="text" size="3" onchange="formSetRestriction('length','=');"><td>metres<td><img alt="<" src="icons/waypoint-left.png" title="-" onmousedown="formSetRestriction('length','-');">&ndash;/+<img alt=">" src="icons/waypoint-right.png" title="+" onmousedown="formSetRestriction('length','+');">
234 </table>
235 </div>
236 </div>
237
238 <div class="hideshow_box">
239 <span class="hideshow_title">@@FIND-BOX@@</span>
240 <input type="button" title="@@FIND-SHORTEST-ROUTE@@" id="shortest" value="@@SHORTEST-ROUTE@@" onclick="findRoute('shortest');">
241 <input type="button" title="@@FIND-QUICKEST-ROUTE@@" id="quickest" value="@@QUICKEST-ROUTE@@" onclick="findRoute('quickest');">
242 </div>
243
244 <div class="hideshow_box">
245 <span class="hideshow_title">@@LINKS-BOX@@</span>
246 <a id="permalink_url" href="router.html">@@MAP-VIEW-LINK@@</a>
247 <br>
248 <a id="edit_url" target="edit" style="display: none;">@@EDIT-OSM-DATA@@</a>
249 </div>
250
251 <div class="hideshow_box">
252 <span id="hideshow_help_options_show" onclick="hideshow_show('help_options');" class="hideshow_hide">+</span>
253 <span id="hideshow_help_options_hide" onclick="hideshow_hide('help_options');" class="hideshow_show">-</span>
254 <span class="hideshow_title">@@HELP-BOX@@</span>
255 <div id="hideshow_help_options_div">
256 <div class="scrollable">
257 $$ROUTER-OPTIONS-HELP$$
258 </div>
259 </div>
260 </div>
261 </form>
262 </div>
263
264
265 <div class="tab_content" id="tab_results_div" style="display: none;">
266
267 <div class="hideshow_box">
268 <span class="hideshow_title">@@STATUS-BOX@@</span>
269 <div id="result_status">
270 <div id="result_status_not_run">
271 <b><i>@@ROUTER-NOT-RUN@@</i></b>
272 </div>
273 <div id="result_status_running" style="display: none;">
274 <b>@@ROUTER-RUNNING@@</b>
275 </div>
276 <div id="result_status_complete" style="display: none;">
277 <b>@@ROUTER-COMPLETED@@</b>
278 <br>
279 <a id="router_log_complete" target="router_log" href="#">@@VIEW-DETAILS@@</a>
280 </div>
281 <div id="result_status_error" style="display: none;">
282 <b>@@ROUTER-ERROR@@</b>
283 <br>
284 <a id="router_log_error" target="router_log" href="#">@@VIEW-DETAILS@@</a>
285 </div>
286 <div id="result_status_failed" style="display: none;">
287 <b>@@ROUTER-FAILED@@</b>
288 </div>
289 </div>
290 </div>
291
292 <div class="hideshow_box">
293 <span id="hideshow_shortest_show" onclick="hideshow_show('shortest');" class="hideshow_show">+</span>
294 <span id="hideshow_shortest_hide" onclick="hideshow_hide('shortest');" class="hideshow_hide">-</span>
295 <span class="hideshow_title">@@SHORTEST-ROUTE@@</span>
296 <div id="shortest_status">
297 <div id="shortest_status_no_info">
298 <b><i>@@NO-INFORMATION@@</i></b>
299 </div>
300 <div id="shortest_status_info" style="display: none;">
301 </div>
302 </div>
303 <div id="hideshow_shortest_div" style="display: none;">
304 <div id="shortest_links" style="display: none;">
305 <table>
306 <tr><td>@@HTML-ROUTE@@: <td><a id="shortest_html" target="shortest_html" href="#">@@OPEN-POPUP@@</a>
307 <tr><td>@@GPX-TRACK-ROUTE@@: <td><a id="shortest_gpx_track" target="shortest_gpx_track" href="#">@@OPEN-POPUP@@</a>
308 <tr><td>@@GPX-ROUTE@@: <td><a id="shortest_gpx_route" target="shortest_gpx_route" href="#">@@OPEN-POPUP@@</a>
309 <tr><td>@@FULL-TEXT-ROUTE@@: <td><a id="shortest_text_all" target="shortest_text_all" href="#">@@OPEN-POPUP@@</a>
310 <tr><td>@@TEXT-ROUTE@@: <td><a id="shortest_text" target="shortest_text" href="#">@@OPEN-POPUP@@</a>
311 </table>
312 <hr>
313 </div>
314 <div id="shortest_route">
315 </div>
316 </div>
317 </div>
318
319 <div class="hideshow_box">
320 <span id="hideshow_quickest_show" onclick="hideshow_show('quickest');" class="hideshow_show">+</span>
321 <span id="hideshow_quickest_hide" onclick="hideshow_hide('quickest');" class="hideshow_hide">-</span>
322 <span class="hideshow_title">@@QUICKEST-ROUTE@@</span>
323 <div id="quickest_status">
324 <div id="quickest_status_no_info">
325 <b><i>@@NO-INFORMATION@@</i></b>
326 </div>
327 <div id="quickest_status_info" style="display: none;">
328 </div>
329 </div>
330 <div id="hideshow_quickest_div" style="display: none;">
331 <div id="quickest_links" style="display: none;">
332 <table>
333 <tr><td>@@HTML-ROUTE@@: <td><a id="quickest_html" target="quickest_html" href="#">@@OPEN-POPUP@@</a>
334 <tr><td>@@GPX-TRACK-ROUTE@@: <td><a id="quickest_gpx_track" target="quickest_gpx_track" href="#">@@OPEN-POPUP@@</a>
335 <tr><td>@@GPX-ROUTE@@: <td><a id="quickest_gpx_route" target="quickest_gpx_route" href="#">@@OPEN-POPUP@@</a>
336 <tr><td>@@FULL-TEXT-ROUTE@@: <td><a id="quickest_text_all" target="quickest_text_all" href="#">@@OPEN-POPUP@@</a>
337 <tr><td>@@TEXT-ROUTE@@: <td><a id="quickest_text" target="quickest_text" href="#">@@OPEN-POPUP@@</a>
338 </table>
339 <hr>
340 </div>
341 <div id="quickest_route">
342 </div>
343 </div>
344 </div>
345
346 <div class="hideshow_box">
347 <span id="hideshow_help_route_show" onclick="hideshow_show('help_route');" class="hideshow_hide">+</span>
348 <span id="hideshow_help_route_hide" onclick="hideshow_hide('help_route');" class="hideshow_show">-</span>
349 <span class="hideshow_title">@@HELP-BOX@@</span>
350 <div id="hideshow_help_route_div">
351 <div class="scrollable">
352 $$ROUTER-RESULTS-HELP$$
353 </div>
354 </div>
355 </div>
356 </div>
357
358
359 <div class="tab_content" id="tab_data_div" style="display: none;">
360 <div class="hideshow_box">
361 <span class="hideshow_title">@@STATISTICS-BOX@@</span>
362 <div id="statistics_data"></div>
363 <a id="statistics_link" href="statistics.cgi" onclick="displayStatistics();return(false);">@@DISPLAY-STATISTICS@@</a>
364 </div>
365
366 <div class="hideshow_box">
367 <span class="hideshow_title">@@VISUALISER-BOX@@</span>
368 $$ROUTER-VISUALISER-INFO$$
369 <br>
370 <a id="visualiser_url" href="visualiser.html" target="visualiser">@@MAP-VIEW-LINK@@</a>
371 </div>
372 </div>
373
374 </div>
375
376 <!-- Right hand side of window - map -->
377
378 <div class="right_panel">
379 <div class="map" id="map">
380 <noscript>
381 <p>
382 @@JAVASCRIPT-REQUIRED@@
383 </noscript>
384 </div>
385 <div class="attribution">
386 @@ROUTER@@: <a href="http://www.routino.org/" target="routino">Routino</a>
387 |
388 @@GEO-DATA@@: <span id="attribution_data"></span>
389 |
390 @@TILES@@: <span id="attribution_tile"></span>
391 </div>
392 </div>
393
394 </body>
395
396 </html>