--- scripts/pgallery/src/pgallery.sh 2012/08/28 17:29:32 1.8 +++ scripts/pgallery/src/pgallery.sh 2012/08/29 13:36:01 1.14 @@ -5,7 +5,7 @@ # can do whatever you want with this stuff. If we meet some day, and you think # this stuff is worth it, you can buy me a beer in return Aron Schlesinger # -# $Paefchen: scripts/pgallery/src/pgallery.sh,v 1.7 2012/08/28 17:08:34 as Exp $ +# $Paefchen: scripts/pgallery/src/pgallery.sh,v 1.13 2012/08/29 12:41:06 as Exp $ # ARG_TITLE="PGallery" @@ -33,7 +33,7 @@ BIN_EXIFTRAN="/usr/local/bin/exiftran" BIN_EXIF="/usr/local/bin/exif" MKAKEFILE=".htmakefile" -VERSION="pgallery-1.1" +VERSION="pgallery-1.2" # # usage() @@ -256,7 +256,6 @@ div.box div.i { height: 25px; line-height: 25px; position: relative; - left: 4px; } body > div.c { text-align: center; @@ -342,10 +341,12 @@ HTML html_img() { orig=$1 - img=$2 - link=$3 - linkb=$4 - linkn=$5 + num=$2 + all=$3 + img=$4 + link=$5 + linkb=$6 + linkn=$7 info=$($BIN_IMGINFO -f $img) width=$(echo $info | awk '{print $3}') @@ -359,20 +360,22 @@ html_img() if [ "$linkb" != "" ] then - hlinkb="zurück" + hlinkb="prev" olinkb="" fi if [ "$linkn" != "" ] then - hlinkn="weiter" + hlinkn="next" olinkn="" fi cat <
@@ -433,6 +436,30 @@ get_exif_desc() } # +# get_exif_ts() +# +get_exif_ts() +{ + img=$1 + date=$($BIN_EXIF --ifd=EXIF --tag=0x9003 -m $img 2> /dev/null) + if [ "$date" = "" ] + then + echo "-1" + return 1 + fi + date -j -f "%Y:%m:%d %T" "$date" "+%s" +} + +# +# get_exif_date() +# +get_exif_date() +{ + img=$1 + ts=$(get_exif_ts $img) && date -r $ts "+%d.%m.%Y %H:%M" || echo "" +} + +# # get_exif_value() # get_exif_value() @@ -448,7 +475,10 @@ get_exif_value() get_exif_info() { img=$1 + exifinfo= + created=$(get_exif_date $img) && exifinfo="$created / " + for exif in $ARG_EXIF do if echo $exif | grep -q -E '0x[[:alnum:]]{4}' @@ -458,9 +488,23 @@ get_exif_info() exifinfo="$exifinfo$exif " fi done - echo $exifinfo | sed -e 's/ mm /mm /' -e 's/ sec./s/' -e 's/ ISO / ISO/' + echo $exifinfo | sed -E -e 's/ mm /mm /' -e 's/ sec./s/' -e 's/ ISO / ISO/' -e 's/ ISO(\/| )/ \1/' } +# +# is_in_list() +# +is_in_list() +{ + list=$1 + value=$2 + for entry in $list + do + test "$entry" = "$value" && return 0 + done + return 1 +} + # parse args while [ "$1" != "" ] do @@ -522,6 +566,10 @@ do esac done +# go to gallery directory +MY=$(get_my_path) +cd "$ARG_DIR" || exit 1 + # parese info file if [ "$ARG_INFOFILE" != "" ] then @@ -535,10 +583,6 @@ then done fi -# go to gallery directory -MY=$(get_my_path) -cd "$ARG_DIR" || exit 1 - # fix url if [ "$ARG_URL" != "" ] then @@ -570,6 +614,16 @@ echo test $(echo $FLIST | wc -w) -eq 0 && err "error: no image found in \`\`$ARG_DIR''" +# use exif createtime to order images +FLIST=$( + ( + for file in $FLIST + do + echo "$(get_exif_ts $file) $file" + done + ) | sort -n | awk '{print $2}' +) + # find new and to update images FLIST_NEW= FLIST_UPDATE= @@ -641,9 +695,27 @@ echo "tns: $targets" >> $MKAKEFILE make -f $MKAKEFILE rm $MKAKEFILE -# create single html files +# create html index index="" +for file in $FLIST +do + tn="${file}.tn.jpg" + imglink="${file}.html" + index="$index $(html_tn $tn $imglink)" +done +echo create html index +( + html_header + echo $index + echo "" + echo "