X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=gen_thumbs.php;h=3951fa822d8b26f633b93d5c21571545ecd924a1;hp=f6742e08c074c0867e237cfe427cf264845dc088;hb=e57f68e3a9df5a040bccb483da6cc21d2d028ad8;hpb=aed571db7a6edcc6078a2d77ef1f60928bab79ca diff --git a/gen_thumbs.php b/gen_thumbs.php index f6742e0..3951fa8 100755 --- a/gen_thumbs.php +++ b/gen_thumbs.php @@ -3,8 +3,9 @@ /*************************************************************************** * - * Copyright (c) by Andreas Unterkircher, unki@netshadow.at - * All rights reserved + * phpfspot, presents your F-Spot photo collection in Web browsers. + * + * Copyright (c) by Andreas Unterkircher * * 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 @@ -37,10 +38,12 @@ $overwrite = false; $short_options = ""; $short_options.= "h"; /* help */ $short_options.= "o"; /* overwrite */ +$short_options.= "c"; /* cleanup */ $long_options = array( "help", "overwrite", + "cleanup", ); /* command line option specified? */ @@ -66,6 +69,11 @@ if(isset($_SERVER['argc']) && $_SERVER['argc'] > 1) { print "Overwrite flag set!\n"; $overwrite = true; break; + case 'c': + case '--cleanup': + $fspot->cleanup_phpfspot_db(); + exit(0); + break; default: print "invalid option"; exit(1);