--- scripts/pgallery/src/pgallery.sh 2012/08/29 10:52:35 1.10 +++ scripts/pgallery/src/pgallery.sh 2012/08/29 12:41:06 1.13 @@ -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.9 2012/08/28 17:37:11 as Exp $ +# $Paefchen: scripts/pgallery/src/pgallery.sh,v 1.12 2012/08/29 12:30:35 as Exp $ # ARG_TITLE="PGallery" @@ -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="back" olinkb="" fi if [ "$linkn" != "" ] then - hlinkn="weiter" + hlinkn="forward" 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 @@ -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= @@ -638,7 +692,7 @@ MAKE done echo "tns: $targets" >> $MKAKEFILE -make -f $MKAKEFILE +#make -f $MKAKEFILE rm $MKAKEFILE # create html index @@ -659,8 +713,9 @@ echo create html index ) > $ARG_INDEX # create single html files -test $ARG_UPDATE -eq 1 && FLIST="$FLIST_NEW $FLIST_UPDATE" +#test $ARG_UPDATE -eq 1 && FLIST="$FLIST_NEW $FLIST_UPDATE" i=0 +all=$(echo $FLIST | wc -w) echo -n "create single html files " for file in $FLIST do @@ -668,6 +723,12 @@ do i=$(($i + 1)) j=$(($i + 1)) + # is update mod and no new images founded + if [ $ARG_UPDATE -eq 1 -a "$FLIST_NEW" = "" ] + then + is_in_list "$FLIST_UPDATE" "$file" || continue + fi + big="${file}.big.jpg" imglink="${file}.html" @@ -681,7 +742,7 @@ do echo -n . ( html_header - html_img $file $big $ARG_INDEX "$linkb" "$linkn" + html_img $file $i $all $big $ARG_INDEX "$linkb" "$linkn" html_footer ) > $imglink done