]> dev.renevier.net Git - syj.git/blob - application/views/scripts/idx/index.phtml
use <section>s for path info
[syj.git] / application / views / scripts / idx / index.phtml
1 <noscript>
2     <style type="text/css">
3         #map, #message, #data_controls, #login_controls, #user_area, #login_area, #newpwd_area {
4             display: none;
5         }
6     </style>
7
8     <p><?php echo $this->translate('SYJ needs javascript. Please activate scripts in your browser.');?></p>
9 </noscript>
10
11 <div id="map"></div>
12 <div id="map-overlay"></div>
13
14 <?php
15 $message = "";
16 $msgclass = "";
17 if ($this->errorMsg) {
18     $message .= $this->errorMsg;
19     $msgclass = "error";
20 } else if (!$this->path and !$this->loggedUser) {
21     $message .= $this->translate('To create a journey, press <strong>"start a route"</strong> button, then click on the map to add points. To delete a point, hold shift pressed while clicking on it.');
22     $message .= "<br>";
23     $message .= $this->translate('You can zoom and move the map with the controls in the top left corner.');
24     $message .= "<br>";
25     $message .= $this->translate('When you have finished a path, press "create", button.');
26     $msgclass = "info optional";
27 }
28 ?>
29
30 <div id="message" class="message <?php echo $msgclass?>">
31     <?php echo $message ?>
32 </div>
33
34
35 <div id="path-length" class="menu-group">
36     <div id="path-length-title" class="info-title"><?php echo $this->translate('route length')?></div>
37     <div id="path-length-content">
38     </div>
39 </div>
40
41 <div id="menu">
42
43     <?php echo $this->localeSwitcher(); ?>
44
45     <div id="login_controls" class="menu-group">
46         <div>
47             <div class="menu-item">
48             <?php
49                 echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor'));
50                 $anchortext = sprintf("<span id=\"account-create-anchor\">%s</span><span id=\"account-info\"><br>%s</span>",
51                                       $this->translate('create an account'),
52                                       $this->translate('Whith an account, you can manage and modify your routes'));
53                 ?>
54                </div>
55                <div class="menu-item">
56                <?php
57                 echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor'), false);
58             ?>
59             </div>
60         </div>
61         <div>
62             <?php echo $this->logoutLink(); ?>
63         </div>
64     </div>
65
66     <?php if (isset($this->path)) { ?>
67         <div id="path-infos" class="menu-group">
68             <div class="menu-item">
69                 <div id="path-infos-toggler"><a href="" id="path-infos-anchor"><?php echo $this->translate("route infos")?></a></div>
70              </div>
71              <div id="path-infos-content" class="menu-item">
72
73                 <section class="info-section">
74                     <h1 id="path-directlink-title"><?php echo $this->translate("direct link")?></h1>
75                     <?php
76                         $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
77                         $href = $this->baseUrl() . '/idx/' . $urlcomp . '?format=raw';
78                         printf('<a href="%s" title="%s">%s</a>',
79                                $href,
80                                $this->translate('direct link'),
81                                $this->escape($href));
82                     ?>
83                 </section>
84
85                 <section class="info-section">
86                     <h1 id="path-export-title"><?php echo $this->translate("export")?></h1>
87                     <?php
88                        $fileName = $this->path->title ?: $this->path->id;
89                        $href = $this->baseUrl() . '/geom/' . rawurlencode($fileName) . '.kml';
90                        printf('<a href="%s" title="%s">%s</a>',
91                                         $href,
92                                         $this->translate('kml export'),
93                                         $this->translate('kml export'));
94
95                         print '<br>';
96                        $href = $this->baseUrl() . '/geom/' . rawurlencode($fileName) . '.gpx';
97                        printf('<a href="%s" title="%s">%s</a>',
98                                         $href,
99                                         $this->translate('gpx export'),
100                                         $this->translate('gpx export'));
101                        ?>
102                 </section>
103
104                 <?php if ($this->profileActive) { ?>
105                 <section class="info-section">
106                     <h1 id="path-profile-title"><?php echo $this->translate("altitude profile")?></h1>
107                     <?php
108                         $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
109                         $href = $this->baseUrl() . '/profile/' . $urlcomp . '.png';
110                         $imgsrc =  $this->addParamToUrl($href, 'size', 'small', true);
111                         printf('<a href="%s"><img src="%s"></a>', $href, $imgsrc);
112                     ?>
113                     </section>
114                 <?php }?>
115
116
117             </div>
118         </div>
119     <?php }?>
120
121     <div id="data_controls">
122         <div id="data_controls_btns">
123
124     <?php if (isset($this->path)) { ?>
125         <input id="clone-btn" name="clone-btn" type="button" value="<?php echo $this->translate('duplicate');?>">
126         <br>
127         <input id="edit-btn" name="edit-btn" type="button" value="<?php echo $this->translate('edit');?>">
128     <?php } else {?>
129
130         <form id="nominatim-form" action="nominatim" method="get">
131             <div><a id="nominatim-label" href=""><?php echo $this->translate('Search a place')?></a></div>
132             <div id="nominatim-message" class="message"></div>
133             <div id="nominatim-controls">
134             <input name="nominatim-search" id="nominatim-search">
135             <input type="submit" id="nominatim-submit" name="nominatim-submit" value="<?php echo $this->translate('Ok')?>">
136             <img id="nominatim-throbber" src="icons/throbber.gif">
137             </div>
138
139         </form>
140
141         <input id="create-btn" name="create-btn" type="button" value="<?php echo $this->translate('start a route');?>">
142     <?php } ?>
143         </div>
144
145     <?php
146         print $this->geomform;
147     ?>
148
149 </div>
150
151 <?php if (!isset($this->path)) {?>
152             <div id="nominatim-suggestions">
153             <div id="nominatim-suggestions-title"><?php echo $this->translate('more results')?></div>
154             <ul id="nominatim-suggestions-list"></ul>
155             </div>
156 <?php }?>
157
158
159 </div>
160
161 <div id="newpwd_area" class="modal">
162     <div id="newpwd_message" class="message"></div>
163     <?php
164         print $this->newpwdform;
165     ?>
166 </div>
167
168 <div id="user_area" class="modal">
169     <div id="user_message" class="message"></div>
170     <?php
171         print $this->userform;
172     ?>
173 </div>
174
175 <div id="login_area" class="modal">
176    <div id="login_message" class="message"></div>
177
178 <?php
179   print $this->loginform;
180 ?>
181
182 <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
183
184 </div>
185
186 <div id="termsofusearea" class="modal">
187   <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
188 </div>