• Willkommen im Geoclub - dem größten deutschsprachigen Geocaching-Forum. Registriere dich kostenlos, um alle Inhalte zu sehen und neue Beiträge zu erstellen.

Andere index.html im Html-Export

wondalfo

Geocacher
Hallo,

Zum Hintergrund: Ich verwende Cachewolf+sunriseXP+Plucker auf dem Palm um Papierlos zu Cachen. In dieser Kombination sieht aber die index.html vom HTML-Export in Plucker völlig unübersichtlich aus, da alle Spalten untereinander als Zeilen dargestellt werden.

Gibt es ein Möglichkeit eine Index.html zu erstellen, die nur eine Spalte hat, wo in den ersten Zeilen, die Links zu den anderen Sortierungen (Entfernung etc.) liegen und danach die Caches in der entsprechenden Reihenfolge. Am besten in der folgende Formatierung (alles in einer Zelle als fortlaufender String)

Name des Caches (Wegpunkt GCXXX) Entfernung zum Zentrum (Schwierigkeit/Gelände)

Achja und der Link zur Cachebeschreibung sollte natürlich unter dem Namen liegen.

Aus dem Kapitel 6.8 der Anleitung bin ich nicht schlau geworden. Ohne Beispiel geht da bei mir nichts.

Vielen Dank Wolfgang
 

such Bär

Geocacher
Du kanst die index.tpl doch einfach selbst editieren.
Ich hab zwar nicht ganz verstanden was du willst, aber du kanst dir ja mal meine als Beispiel ankucken, die ist allerdings ganz ohne Tabellen Zeug :)

<html>
<head>
<title></title>
<meta name="generator" content="CacheWolf">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<tmpl_if navi_index>
<tmpl_loop navi_index>
<a name=top></a>
<a href="#<tmpl_var HREF>"><tmpl_var TEXT></a>
</tmpl_loop>
</tmpl_if>

<a href = "index_type.html">Art</a>
<a href = "index_size.html">Size</a>
<a href = "index_wp.html">Wegpunkt
<a href = "index_alpha.html">Name</a>
<hr>

<tmpl_loop cache_index>
<tmpl_if ANCHORNAME>
<a name = "<tmpl_var ANCHORNAME>"><tmpl_var ANCHORTEXT></a>
<a href="#top">Back</a>

</tmpl_if>
<b><tmpl_var NAME></b><br>
<a href = "<tmpl_var WAYPOINT>.html"><tmpl_var WAYPOINT></a> <tmpl_var TYPE> <tmpl_var SIZE> <br>
<tmpl_var OWNER><br>
D <tmpl_var DIFFICULTY> T <tmpl_var TERRAIN><br>
<tmpl_var DISTANCE> <tmpl_var BEARING><br>
<tmpl_var LATLON>
<hr>

</tmpl_loop>

</body>
</html>
 

UUS

Geocacher
Weil ich mit der tabellarischen Darstellung auch Probleme hatte, habe ich meine index.tpl so umgebaut:

<html>
<head>
<title></title>
<meta name="generator" content="CacheWolf">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>

<tmpl_if navi_index>
<tmpl_loop navi_index>
<a name=top></a>
<a href="#<tmpl_var HREF>"><tmpl_var TEXT></a>
</tmpl_loop>
</tmpl_if>

<table border = "0px" align = "center">
<tr style = "background-color:lightgrey;font-variant:small-caps; font-family:sans-serif;font-size:16;">
<td><a href = "index_wp.html">Wegpunkt</a> * <a href = "index_alpha.html">Name</a> * <a href = "index_dist.html">Entfernung</a> * Koordinaten * <a href = "index_type.html">Art</a></td>
</tr>

<tmpl_loop cache_index>
<tmpl_if ANCHORNAME>
<tr style = "font-family:sans-serif;font-size:12;">
<td colspan="2" style = "background-color:lightgrey;font-variant:small-caps; font-family:sans-serif;font-size:16;"><a name = "<tmpl_var ANCHORNAME>"><tmpl_var ANCHORTEXT></a></td>
<td><a href="#top">Back</a></td>
</tr>
</tmpl_if>

<tr style = "font-family:sans-serif;font-size:12;">
<td><a href = "<tmpl_var WAYPOINT>.html"><tmpl_var WAYPOINT></a> * <tmpl_var NAME> * <tmpl_var DISTANCE> * <tmpl_var LATLON> * <tmpl_var TYPE></td>
</tr>
</tmpl_loop>
</table>

</body>
</html>

Gruß
Uwe.
 
OP
W

wondalfo

Geocacher
Hallo,

vielen Dank erstmal, ich werde mir das morgen mal in Ruhe anschauen, und dann mal weitersehen.

Wolfgang
 
OP
W

wondalfo

Geocacher
Hallo,

vielen Dank, das war ja dann doch einfacher als gedacht, selbst mit meinen nicht vorhandenen html-Kenntnissen.

Hier meine index.tpl:
<html>
<head>
<title></title>
<meta name="generator" content="CacheWolf">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<tmpl_if navi_index>
<tmpl_loop navi_index>
<a name=top></a>
<a href="#<tmpl_var HREF>"><tmpl_var TEXT></a>
</tmpl_loop>
</tmpl_if>

<a href = "index_alpha.html">Name</a> <a href = "index_wp.html">Waypoint</a> <a href = "index_dist.html">Distance</a> <a href = "index_type.html">Type</a> <a href = "index_size.html">Size</a>
<hr>

<tmpl_loop cache_index>
<tmpl_if ANCHORNAME>
<a name = "<tmpl_var ANCHORNAME>"><tmpl_var ANCHORTEXT></a>
<a href="#top">Back</a>
<hr>


</tmpl_if>
<b><a href = "<tmpl_var WAYPOINT>.html"><tmpl_var NAME></a></b><br>
<a href = "<tmpl_var WAYPOINT>.html"><tmpl_var WAYPOINT></a> <tmpl_var BEARING> <tmpl_var DISTANCE> (D <tmpl_var DIFFICULTY>/T <tmpl_var TERRAIN>) <br>
<tmpl_var TYPE>, Size: <tmpl_var SIZE> <br>
<tmpl_var LATLON>
<hr>

</tmpl_loop>

</body>
</html>

und meine page.tpl:
<html>
<head>
<title></title>
<meta name="generator" content="CacheWolf">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<b><tmpl_var NAME></b> by <tmpl_var OWNER><br>
<tmpl_var WAYPOINT>, <tmpl_var TYPE>, Size: <tmpl_var SIZE> <br>
Difficulty: <tmpl_var DIFFICULTY> Terrain: <tmpl_var TERRAIN>
<hr>
<tmpl_var DESCRIPTION>
<hr>
Hints:<br>
<tmpl_var HINTS>
<hr>
Decrypted Hints:<br>
<tmpl_var DECRYPTEDHINTS>
<hr>
Notes:<br>
<tmpl_var NOTES>
<hr>
Pictures:<br>
Cache:<br>
<tmpl_loop cacheImg>
<tmpl_var TEXT><br>
<img src="<tmpl_var FILE>"><br>
</tmpl_loop>
User:<br>
<tmpl_loop userImg>
<tmpl_var TEXT><br>
<img src="<tmpl_var FILE>"><br>
</tmpl_loop>
Logs:<br>
<tmpl_loop logImg>
<tmpl_var TEXT><br>
<img src="<tmpl_var FILE>"><br>
</tmpl_loop>
Maps:<br>
<tmpl_loop mapImg>
<tmpl_var TEXT><br>
<img src="<tmpl_var FILE>"><br>
</tmpl_loop>
<hr>
Logs:<br>
<tmpl_var LOGS>
</body>
</html>

Das einzige was nicht funktioniert hat war dieses Kommando:
Hidden: <tmpl_var DATE>

laut Cachewolf Beschreibung sollte in der Date Variable das Versteckdatum gespeichert sein, aber da steht dann im html File nichts.

Vielen Dank nochmal Wolfgang
 

aurelius_ger

Geocacher
Vielen Dank an alle Poster dieses Treads.
Jetzt ist die Kombination Cachewolf - HTML Export - Sunrise - Plucker auf dem Palm perfekt.

Grüße
aurelius
 
Oben