]> dev.renevier.net Git - syj.git/blobdiff - application/views/scripts/idx/index.phtml
fixes welcome popup wording (bis)
[syj.git] / application / views / scripts / idx / index.phtml
index 743c2513ed79d4dac927c57b27f0ee7763a496eb..a98f1d2137f5b41733468bd5e4cbfb72627ad310 100644 (file)
 <?php if (!$this->path and !$this->loggedUser) {?>
 <?php echo $this->translate('Welcome on Syj.')?>
 <br/>
-<?php echo $this->translate('To create a journey, just click on the map to add points to your route. You can zoom and move map with controls upper left.')?>
+<?php echo $this->translate('To create a journey, just press <strong>"start a route"</strong> button, then click on the map to add points to your route. You can zoom and move the map with the controls in the top left corner')?>
 <br/>
-<?php echo $this->translate('When you have finished a path, press "save", button.')?>
+<?php echo $this->translate('When you have finished a path, press "create", button.')?>
 <?php }?>
 </div>
 
 
+<div id="path-length" class="menu-group">
+    <div id="path-length-title" class="info-title"><?php echo $this->translate('route length')?></div>
+    <div id="path-length-content">
+    </div>
+</div>
+
 <div id="menu">
 
     <?php echo $this->localeSwitcher(); ?>
 
-    <div id="login_controls">
+    <div id="login_controls" class="menu-group">
         <div>
-            <div class="login-anchor">
+            <div class="menu-item">
             <?php
                 echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor'));
                 $anchortext = sprintf("<span id=\"account-create-anchor\">%s</span><span id=\"account-info\"><br>%s</span>",
@@ -35,7 +41,7 @@
                                       $this->translate('Whith an account, you can manage and modify your routes'));
                 ?>
                </div>
-               <div class="login-anchor">
+               <div class="menu-item">
                <?php
                 echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor'), false);
             ?>
         </div>
     </div>
 
+    <?php if (isset($this->path)) { ?>
+        <div id="path-infos" class="menu-group">
+            <div class="menu-item">
+                <div id="path-infos-toggler"><a href="" id="path-infos-anchor"><?php echo $this->translate("route infos")?></a></div>
+             </div>
+                <div id="path-infos-content" class="menu-item">
+
+                    <div id="path-directlink-title" class="info-title"><?php echo $this->translate("direct link")?></div>
+                    <div id="path-directlink-content"><?php
+                            $serverUrl = rtrim($this->serverUrl(), '/');
+                            $baseUrl = trim($this->baseUrl(), '/');
+                            $fullBaseUrl = $serverUrl . '/' . ($baseUrl ? ($baseUrl . '/'): '');
+                            $urlcomp = urlencode($this->path->urlcomp ?: $this->path->id);
+                            $href = $fullBaseUrl . 'idx/' . $urlcomp . '?format=raw';
+                            printf('<a href="%s" title="%s">%s</a>',
+                                        $href,
+                                        $this->translate('direct link'),
+                                        $this->escape($href));
+                        ?></div>
+
+                    <div id="path-export-title" class="info-title"><?php echo $this->translate("export")?></div>
+                    <div id="path-export-content"><?php
+                       $href = $fullBaseUrl . 'geom/' . urlencode($this->path->id) . '.kml';
+                       printf('<a href="%s" title="%s">%s</a>',
+                                        $href,
+                                        $this->translate('kml export'),
+                                        $this->translate('kml export'));
+
+                        print '<br>';
+                       $href = $fullBaseUrl . 'geom/' . urlencode($this->path->id) . '.gpx';
+                       printf('<a href="%s" title="%s">%s</a>',
+                                        $href,
+                                        $this->translate('gpx export'),
+                                        $this->translate('gpx export'));
+                       ?>
+
+
+                </div>
+            </div>
+        </div>
+    <?php }?>
+
     <div id="data_controls">
         <div id="data_controls_btns">
 
             <img id="nominatim-throbber" src="icons/throbber.gif">
             </div>
 
-            <div id="nominatim-suggestions">
-            <div id="nominatim-suggestions-title"><?php echo $this->translate('more results')?></div>
-            <ul id="nominatim-suggestions-list"></ul>
-            </div>
-
         </form>
 
         <input id="create-btn" name="create-btn" type="button" value="<?php echo $this->translate('start a route');?>">
     <?php
         print $this->geomform;
     ?>
+
 </div>
 
+<?php if (!isset($this->path)) {?>
+            <div id="nominatim-suggestions">
+            <div id="nominatim-suggestions-title"><?php echo $this->translate('more results')?></div>
+            <ul id="nominatim-suggestions-list"></ul>
+            </div>
+<?php }?>
+
+
 </div>
 
 <div id="newpwd_area" class="modal">