summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-09-24 22:26:50 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-09-24 22:26:50 +0200
commit0b5b69c762bdfb55ccf9be0778fa42e45e008c11 (patch)
tree290c4c11ae878e7f0e87624d3716837a68b79f78 /examples
parent32726aafda19a6a9a6132da5707d96b67ce2d6dc (diff)
html fixes
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/gipfel2html19
1 files changed, 16 insertions, 3 deletions
diff --git a/examples/gipfel2html b/examples/gipfel2html
index fb2ea45..6cbb4e2 100755
--- a/examples/gipfel2html
+++ b/examples/gipfel2html
@@ -10,7 +10,13 @@ else
DATAFILE="gipfelweb/gipfel/${FILE}.hills"
fi
-echo "<html><head><title>$TITLE</title>"
+cat << EOF
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
+<html>
+<head>
+EOF
+
+echo "<title>$TITLE</title>"
cat << EOF
<style type="text/css">
@@ -64,7 +70,7 @@ echo "<h3>$TITLE</h3>"
if [ "$MODE" = "images" ]; then
echo "<a href=\"hills/${FILE}.html\">show hill names</a>"
else
- echo "<a href=\"javascript:history.back()\">back to gipfelweb</a>"
+ echo "<a href=\"../${FILE}.html\">back to gipfelweb</a>"
fi
cat << EOF
@@ -107,6 +113,9 @@ cat << EOF
</td></tr>
</table>
<br/>
+Move the mouse over the image to see other images of which the
+viewpoint is visible.
+Move the mouse over the rectangle to see a thumbnail.
<br/>
<br/>
@@ -116,7 +125,11 @@ EOF
grep -l ${FILE} gipfelweb/gipfel/*.imgs | \
while read f; do
img="`basename ${f%.imgs}`"
- echo "<a href=\"${img}.html\"><img src=\"thumbs/${img}.jpg\"></a><br/>"
+ if [ "$MODE" = "images" ]; then
+ echo "<a href=\"${img}.html\"><img src=\"thumbs/${img}.jpg\"></a><br/>"
+ else
+ echo "<a href=\"${img}.html\"><img src=\"../thumbs/${img}.jpg\"></a><br/>"
+ fi
done