From 9d458ef3f8998cdcf9a199f5e96e3bb30e9f5feb Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Thu, 20 Sep 2007 19:48:29 +0200 Subject: add back-references in gipfelweb --- examples/gipfel2html | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) (limited to 'examples/gipfel2html') diff --git a/examples/gipfel2html b/examples/gipfel2html index 36720be..0551474 100755 --- a/examples/gipfel2html +++ b/examples/gipfel2html @@ -25,10 +25,6 @@ IFS=" " i=0 grep -v "^#" ${DATAFILE} | \ while read name height x y dist flags dummy; do - if [ "${flags}" = "HIDDEN" ]; then - continue - fi - if [ "$MODE" = "images" ]; then thumb_w=`identify -format %w gipfelweb/thumbs/${name}` thumb_h=`identify -format %h gipfelweb/thumbs/${name}` @@ -88,10 +84,6 @@ fi i=0 grep -v "^#" ${DATAFILE} | \ while read name height x y dist flags dummy; do - if [ "${flags}" = "HIDDEN" ]; then - continue - fi - if [ "$MODE" = "images" ]; then THUMB_TITLE="${name%.jpg}" if [ -e "${name%.jpg}.title" ]; then @@ -112,7 +104,23 @@ cat << EOF -copyright © 2007 Johannes Hofmann +
+
+
+ +This image is visible on these images:
+EOF + +grep -l ${FILE} gipfelweb/gipfel/*.imgs | \ +while read f; do + img="`basename ${f%.imgs}`" + echo "
" +done + + +cat << EOF + +copyright © 2007 Johannes Hofmann EOF -- cgit v1.2.3