X-Git-Url: https://git.sommitrealweird.co.uk/bpgallery.git/blobdiff_plain/d159b57ca37ebdb3b9a1ef690acb0010de5e3638..HEAD:/bpgallery.sh diff --git a/bpgallery.sh b/bpgallery.sh index 3350f20..c6dc4ad 100755 --- a/bpgallery.sh +++ b/bpgallery.sh @@ -1,25 +1,25 @@ #!/usr/bin/env bash # bpgallery.sh - builds a simple 'gallery' from a collection of images -# Copyright (C) 2004 Brett Parker +# Copyright (C) 2004-2008 Brett Parker # -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. set -f -VERSION="1.1.1+arch" +VERSION="1.1.5" function bpgallery_default_head() { cat <&1 | while read throwout; do $ECHOCOMMAND done: $currentimage/$imagestoupdate images; currentimage=$((currentimage+1)); done + $FINDCOMMAND . $FINDIMAGESOPTIONS | \ + $XARGSCOMMAND -0 -I {} $ECHOCOMMAND {} | \ + while read filename; do + tempfilename=${filename//\"/\\\"/}; + imagesizeright=$(check_dimensions "$width" "$height" "$2" "$filename") + if [ ! -r "$2/$tempfilename" ] \ + || [ "$tempfilename" -nt "$2/$tempfilename" ] \ + || [ $imagesizeright -ne 1 ]; then + $ECHOCOMMAND -n $filename + $ECHOCOMMAND -n -e "\000" + fi + done | \ + $XARGSCOMMAND -0 --verbose --max-procs=$MAXTHREADS -I {} $CONVERTTOOL -resize $1 '{}' $2/'{}' 2>&1 | \ + while read throwout; do + $ECHOCOMMAND done: $currentimage/$imagestoupdate images + currentimage=$((currentimage+1)) + done $ECHOCOMMAND done: $imagestoupdate/$imagestoupdate images $ECHOCOMMAND "Completed generating $2 for $totalimages images" } function generate_thumbs() { - generate_resized_images $WIDTH $ICONSDIRECTORY + if [ ! -z $HEIGHT ]; then + generate_resized_images "${WIDTH}x${HEIGHT}" $ICONSDIRECTORY + else + generate_resized_images $WIDTH $ICONSDIRECTORY + fi } function generate_medium() { - generate_resized_images $MEDIUMWIDTH $MEDIUMDIRECTORY + if [ ! -z $MEDIUMHEIGHT ]; then + generate_resized_images "${MEDIUMWIDTH}x${MEDIUMHEIGHT}" $MEDIUMDIRECTORY + else + generate_resized_images $MEDIUMWIDTH $MEDIUMDIRECTORY + fi } function generate_pages() {