# # Makefile.sempa # # Makefile template for semantic picture annotation. # # Copyright (c) 2002-2005 MFD Consult, Morten Frederiksen # # 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 # 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. # include /net/home/web/www/share/Makefile.global .DELETE_ON_ERROR: .PHONY: dummy all meta done clean hidden FIX_REMOVE_SEARCH="sha1sum> _:" #FIX_REMOVE_VERIFY=http://purl.org/net/morten/ FIX_REMOVE_VERIFY="sha1sum> _:" #FIX_REMOVE_VERIFY="65b983bb397fb71849da910996741752ace8369b" FIX_REPLACE_SEARCH=XXXXXXXXXX FIX_REPLACE_VERIFY=ZZZZZZZZZZ FIX_REPLACE_REPLACE="9d5ae39ae97061a7f81d51d7018581010ffb661f" SEMPEX_TZ=`date +%z|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'` CSS=`if [ -e photos.css ]; then echo photos.css; else echo $(SITE)/style/photos.css; fi` # # DB-derived files # %.html: $(XSLDIR)morten-photos.xsl all.rdf $(SITEXSL) %.rdf $(XSLT) --stringparam uri $(URL)t/$(*F).jpg \ --stringparam channel $(URL) $< all.rdf > $@ index.html: index.tmp $(XSLDIR)morten-photos.xsl $(SITEXSL) php -r 'echo(preg_replace("|(
)(
)|s","$$1".join("",file($$_SERVER["argv"][1]))."$$2",join("",file($$_SERVER["argv"][2]))));' /net/data/web/2004/12/urispace/albums/feed.html $< > $@.tmp php -r 'echo(preg_replace("|(
)(
)|s","$$1".join("",file($$_SERVER["argv"][1]))."$$2",join("",file($$_SERVER["argv"][2]))));' /net/data/web/2004/12/urispace/aggregate/feed.html $@.tmp > $@ rm $@.tmp index.tmp: $(XSLDIR)morten-photos.xsl all.rdf $(SITEXSL) $(XSLT) --stringparam uri $(URL) \ --stringparam base $(URL) $< all.rdf > $@ %.htm: $(XSLDIR)morten-offline-photos.xsl all.rdf $(SITEXSL) %.rdf $(XSLT) --stringparam uri $(URL)t/$(*F).jpg \ --stringparam base $(URL) \ --stringparam channel $(URL) $< all.rdf > $@.tmp php -r 'echo(str_replace($$_SERVER["argv"][1],join("",file($$_SERVER["argv"][2])),join("",file($$_SERVER["argv"][3]))));' '@import url("/morten/style/site-photos.css");' /net/home/web/www/wasab.dk/html/morten/style/site-photos.css $@.tmp \ | sed -e 's/\.html"/\.htm"/g' > $@ rm -f $@.tmp index.htm: $(XSLDIR)morten-offline-photos.xsl all.rdf $(SITEXSL) $(XSLT) --stringparam uri $(URL) \ --stringparam base $(URL) $< all.rdf > $@.tmp php -r 'echo(str_replace($$_SERVER["argv"][1],join("",file($$_SERVER["argv"][2])),join("",file($$_SERVER["argv"][3]))));' '@import url("/morten/style/site-photos.css");' /net/home/web/www/wasab.dk/html/morten/style/site-photos.css $@.tmp \ | sed -e 's/\.html"/\.htm"/g' > $@ rm -f $@.tmp t/%.rdf : %.rdf %.jpg rm -f $@ ln -s ../$< $@ %.xml : t/%.jpg load.nt rdf-tree -l 99 $(URL)t/$(*F).jpg $(RDFTREE) | $(NT2RDF) > $@ all.rdf: load.nt rdf-tree -t -l 4 $(URL)index.rdf $(RDFTREE) > all.nt rdf-tree -l 1 http://www.wasab.dk/morten/photos/ $(RDFTREE) >> all.nt cat all.nt | $(NT2RDF) > $@.tmp $(XSLT) $(XSLDIR)rdf2r3x.xsl $@.tmp > $@.tmp2 $(XSLT) $(XSLDIR)pretty.xsl $@.tmp2 > $@ rm -f $@.tmp $@.tmp2 index.xml: load.nt rdf-tree -l 4 $(URL)index.rdf $(RDFTREE) | $(NT2RDF) > $@ # # DB-prequisites # load.nt: db.nt perl < $< -e 'use Digest::SHA1 qw(sha1_hex); while(<>){print $$_; if($$_=~/^(\S+\s+\s+<(\S+)>\s*.\s*$$/){print($$1."_sha1sum> \"".sha1_hex($$2)."\" .\n");};}' \ | sort | uniq | perl -e 'while(<>){$$_=~s#(wordnet/1.6/[^>]+[a-z])>#$$1-1>#g;print $$_;}' > $@.tmp grep '<> ' db.nt | sed -e 's/^<> / /' >> $@.tmp echo '<> .' >> $@.tmp echo ' "application/rdf+xml" .' >> $@.tmp echo '<> "application/xhtml+xml" .' >> $@.tmp echo ' <>.' >> $@.tmp rdf-load -q $(REDLAND) -b $(URL) -i ntriples file:$@.tmp sleep 1 rdf-smush -q $(REDLAND) -c $(URL) sleep 1 mv $@.tmp $@ db.nt: sempa.nt locations.nt images.nt cat $^ > $@ if [ -e regions.rdf ]; then \ make regions.nt \ && cat regions.nt >> $@; \ fi if [ -e movie-1.avi ]; then \ for movie in `ls movie-*.avi|sed -e 's/.avi//'`; do \ make $$movie.nt; \ done; \ make movies.nt \ && cat movies.nt >> $@; \ fi if [ -e offline.oa ]; then \ make offline.nt \ && cat offline.nt >> $@; \ fi nt-rss -e sempa.nt -b $(URL)index.rdf `ls -r t/image-*.jpg|grep -v t.jpg` >> $@ echo ' "'$(URL)'".' >> $@ echo ' <'$(URL)'>.' >> $@ echo '<> "'`date -Is|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`'".' >> $@ echo '<> "'`date -Is -r sempa.nt|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`'".' >> $@ offline.nt : offline.oa images.nt oa2t -i "`/bin/pwd|sed -e 's|.*/web/||'|sed -e 's|/.*||'`-" images.nt < $< \ | rapper -qiturtle -ontriples - $(URL) > $@ movies.nt: movie-*.nt cat $^ > $@ %.nt: %.avi echo "<$<> \"`date -r $< -Iseconds|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`\" ." > $@ echo '<> <'$<'> .' >> $@ echo '<'$<'> .' >> $@ echo "<$<> \"video/x-msvideo\" ." >> $@ echo '<'$<'> "'`echo $(*F)|sed -e 's/-/ /'|sed -e 's/m/M/'`'" .' >> $@ echo '<'$<'> "'`wc -c < $<|xargs echo`'"^^ .' >> $@ regions.nt : regions.rdf $(XSLDIR)imgreg-inferencer.xsl rapper -qontriples file:$< $(URL) \ | sort | uniq | nt-rdf \ | xsltproc /net/home/web/www/share/xsl/rdf2r3x.xsl - \ | xsltproc /net/home/web/www/share/xsl/pretty.xsl - \ | $(XSLT) $(XSLDIR)imgreg-inferencer.xsl - \ | rapper -qontriples - $(URL) \ | sort | uniq > $@ locations.nt : gps.nt images.nt gps-img.diff rapper -qintriples images.nt $(URL) -ontriples > $@.tmp rapper -qintriples sempa.nt $(URL) -ontriples >> $@.tmp point-adder --points $< --images $@.tmp --offset `cat gps-img.diff` \ --extra "http://duke/web/2003/12/nearestAirport/?latitude={lat}&longitude={long}&ntriples=1" \ --base $(URL) t/image-84.jpg t/image-30.jpg t/image-21.jpg t/image-34.jpg t/image-38.jpg t/image-15.jpg t/image-88.jpg t/image-74.jpg t/image-49.jpg t/image-28.jpg t/image-48.jpg t/image-07.jpg t/image-46.jpg t/image-60.jpg t/image-23.jpg t/image-05.jpg t/image-83.jpg t/image-79.jpg t/image-76.jpg t/image-54.jpg t/image-18.jpg t/image-59.jpg t/image-56.jpg t/image-66.jpg t/image-16.jpg t/image-61.jpg t/image-45.jpg t/image-10.jpg t/image-42.jpg t/image-73.jpg t/image-69.jpg t/image-31.jpg t/image-63.jpg t/image-58.jpg t/image-81.jpg t/image-68.jpg t/image-25.jpg t/image-41.jpg t/image-13.jpg t/image-57.jpg t/image-86.jpg t/image-02.jpg t/image-75.jpg t/image-36.jpg t/image-33.jpg t/image-27.jpg t/image-67.jpg t/image-53.jpg t/image-72.jpg t/image-09.jpg t/image-12.jpg t/image-47.jpg t/image-85.jpg t/image-82.jpg t/image-08.jpg t/image-37.jpg t/image-06.jpg t/image-04.jpg t/image-14.jpg t/image-29.jpg t/image-52.jpg t/image-62.jpg t/image-89.jpg t/image-11.jpg t/image-39.jpg t/image-43.jpg t/image-24.jpg t/image-65.jpg t/image-03.jpg t/image-70.jpg t/image-20.jpg t/image-40.jpg t/image-50.jpg t/image-44.jpg t/image-71.jpg t/image-87.jpg t/image-55.jpg t/image-64.jpg t/image-80.jpg t/image-90.jpg t/image-17.jpg t/image-19.jpg t/image-35.jpg t/image-91.jpg t/image-77.jpg t/image-78.jpg t/image-32.jpg t/image-26.jpg t/image-22.jpg t/image-01.jpg t/image-51.jpg > $@ rm -f $@.tmp images.nt : image-13.nt image-41.nt image-07.nt image-90.nt image-33.nt image-03.nt image-82.nt image-42.nt image-85.nt image-17.nt image-52.nt image-04.nt image-91.nt image-83.nt image-24.nt image-74.nt image-49.nt image-54.nt image-01.nt image-46.nt image-86.nt image-43.nt image-19.nt image-79.nt image-73.nt image-18.nt image-76.nt image-65.nt image-45.nt image-55.nt image-50.nt image-51.nt image-59.nt image-14.nt image-67.nt image-68.nt image-62.nt image-22.nt image-16.nt image-15.nt image-44.nt image-47.nt image-60.nt image-30.nt image-75.nt image-09.nt image-31.nt image-21.nt image-53.nt image-72.nt image-37.nt image-57.nt image-40.nt image-35.nt image-84.nt image-77.nt image-05.nt image-08.nt image-81.nt image-27.nt image-26.nt image-64.nt image-80.nt image-66.nt image-36.nt image-23.nt image-61.nt image-38.nt image-02.nt image-87.nt image-63.nt image-70.nt image-89.nt image-71.nt image-34.nt image-39.nt image-56.nt image-29.nt image-28.nt image-20.nt image-58.nt image-12.nt image-48.nt image-78.nt image-11.nt image-25.nt image-06.nt image-88.nt image-32.nt image-10.nt image-69.nt sort $^ | uniq > $@ %.nt : raw/%.jpg %.jpg t/%.jpg t/%-t.jpg %.hist.png /net/local/bin/sempex sempex -tz `date "+%F %z" -r $< | sempextz.pl` \ -only 2 -c $(PHOTO).nt -out ntriples \ -i "`/bin/pwd|sed -e 's|.*/web/||'|sed -e 's|/.*||'`-" \ -s "http://purl.org/rss/1.0/link=$(URL)$(*F).html" \ -e "photo:similarity_hash=`image-hasher t/$(*F).jpg`" \ -e "foaf:page=<$(URL)$(*F).html>" \ -e "rdf:type=" \ -e "rdf:type=" \ -s "photo:histogram=<$(*F).hist.png>" \ $(*F).jpg t/$(*F).jpg t/$(*F)-t.jpg \ | sort > $@ pngmeta --all $(*F).hist.png | grep -E "width|height" | perl -e 'while(<>){$$_=~s%^image-(.)(.+?):\s+(\d+)%"<$(*F).hist.png> \"$$3\"^^ ."%e;print $$_;}' >> $@ echo "<$(URL)$(*F).html> "'"'`date -Is|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`'" .' >> $@ echo "<$(URL)$(*F).rdf> "'"'`date -Is|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`'" .' >> $@ echo "<$(URL)$(*F).rdf> <$(URL)t/$(*F).jpg> ." >> $@ echo "<$(URL)t/$(*F).jpg> <$(URL)$(*F).rdf> ." >> $@ if [ -e $(*F).ogg ]; then \ make $(*F).ogg.nt; \ cat $(*F).ogg.nt >> $@; \ fi %.ogg.nt: %.ogg echo "<$<> \"`date -r $< -Iseconds|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`\" ." > $@ echo "<$<> <$(*F).html> ." >> $@ echo " <$<> ." >> $@ echo "<$<> ." >> $@ echo "<$<> \"$(*F)\" ." >> $@ sed $@ -e 's#.ogg#.wav#' >> $@ echo "<$<> \"application/ogg\" ." >> $@ echo "<$<> \"`wc -c < $<|xargs echo`\"^^ ." >> $@ echo "<$(*F).wav> \"audio/x-wav\" ." >> $@ echo "<$(*F).wav> \"`wc -c < $(*F).wav|xargs echo`\"^^ ." >> $@ gps.nt: gps.rdf rapper $< -qo ntriples > $@ if [ -e gps-extra.nt ]; then \ cat gps-extra.nt >> $@; \ fi .htaccess: Makefile echo "RewriteEngine on" > $@ echo "RewriteBase $(RELURL)" >> $@ echo "RewriteCond %{REQUEST_FILENAME} !-f" >> $@ echo "RewriteRule ^(t/image-[0-9]+).png$$ $(RELURL)/"'$$1-t.jpg [R=301]' >> $@ echo "RewriteRule ^t/$$ $(RELURL)/ [R=301]" >> $@ echo "RewriteRule ^raw/$$ $(RELURL)/ [R=301]" >> $@ echo "RewriteRule ^edit.html$$ http://www.wasab.dk/morten/2004/12/select/?uri-1=$(URL)index.rdf [R=301]" >> $@ echo "RewriteRule ^(image-[0-9]+)-edit.html$$ http://www.wasab.dk/morten/2004/12/select/?uri-1=$(URL)"'$$1.rdf [R=301]' >> $@ echo '' >> $@ echo 'AuthType Basic' >> $@ echo 'Order allow,deny' >> $@ echo 'Require group mfd' >> $@ echo 'Allow from .mfd-consult.dk' >> $@ echo '' >> $@ echo '' >> $@ echo 'AuthType Basic' >> $@ echo 'Order allow,deny' >> $@ echo 'Require group mfd' >> $@ echo 'Allow from .mfd-consult.dk' >> $@ echo '' >> $@ echo '' >> $@ echo 'AuthType Basic' >> $@ echo 'Order allow,deny' >> $@ echo 'Require group mfd' >> $@ echo 'Allow from .mfd-consult.dk' >> $@ echo '' >> $@ if [ -e htaccess.x ]; then \ cat htaccess.x >> $@; \ fi sempa.nt: echo '<> "'`date -Iseconds|perl -e 'while(<>){$$_=~s/([+-]\d\d)(\d\d)/$$1:$$2/;print $$_;};'`'".' > sempa.nt for pred in dc:title dc:description dc:language; do \ echo -n "$$pred: " ; \ cat \ | perl -e '$$x="";while(<>){chomp;$$x.="$$_ ";};$$x=~s/\s+$$//;$$x=~s/([\x00-\x08\x0B-\x0C\x0E-\x1F\x7F-\xFF])/"\\u".sprintf("00%2x",ord($$1))/eg;print "$$x\n";' \ | sed -e 's/ --- / \\u2014 /g' \ | sed -e 's/\\u00c3\\u00a6/\\u00e6/g' \ | sed -e 's/\\u00c3\\u00b8/\\u00f8/g' \ | sed -e 's/\\u00c3\\u00a5/\\u00e5/g' \ | sed -e 's/\\u00c3\\u0086/\\u00c6/g' \ | sed -e 's/\\u00c3\\u0098/\\u00d8/g' \ | sed -e 's/\\u00c3\\u0085/\\u00c5/g' \ | sed -e 's/\\u00c3\\u00a9/\\u00e9/g' \ | sed -e 's/\\u00c3\\u00b6/\\u00f6/g' \ | sed -e 's/\\u00c3\\u00a4/\\u00e4/g' \ | sed -e 's/\\u00c3\\u00bc/\\u00fc/g' \ | sed -e 's/^/<> <'$$pred'> "/' \ | sed -e 's/$$/"./' \ | sed -e 's# > sempa.nt ; \ done hidden: sempa.nt echo '<> _:rv'`ls|sha1sum|cut -b1-40`' .' >> sempa.nt echo '_:rv'`ls|sha1sum|cut -b1-40`' "1" .' >> sempa.nt echo '_:rv'`ls|sha1sum|cut -b1-40`' _:hider .' >> sempa.nt echo '_:hider .' >> sempa.nt # # Images # %.hist.png: t/%.ppm pnmdepth 127 $< \ | pnmhistmap \ | pnmcut -width 128 \ | pnmscale -xscale 1 -yscale 0.5 \ | pnmtopng > $@ %.ppm: %.jpg jpegtopnm $< 2>/dev/null > $@ t/%.png : t/tmp-%.png pngcrush -c 0 $< $@ > /dev/null t/tmp-%.png : t/%.jpg thumber -v -m 100 -t png -p tmp- $< > /dev/null t/%-t.jpg : t/%.jpg thumber -m 100 -t jpg -s -t $< > /dev/null t/%.jpg : %.jpg thumber -m 500 -t jpg -p t/ $< > /dev/null %.jpg : raw/%.jpg ln -f -s $< $@ # # Targets # all: Makefile image-24.html image-86.html image-23.html image-79.html image-63.html image-89.html image-01.html image-28.html image-62.html image-85.html image-05.html image-73.html image-51.html image-37.html image-45.html image-21.html image-02.html image-66.html image-04.html image-29.html image-20.html image-09.html image-41.html image-12.html image-48.html image-67.html image-49.html image-22.html image-43.html image-40.html image-27.html image-56.html image-58.html image-71.html image-46.html image-15.html image-52.html image-72.html image-33.html image-84.html image-61.html image-03.html image-53.html image-60.html image-47.html image-69.html image-68.html image-26.html image-64.html image-77.html image-39.html image-34.html image-82.html image-19.html image-10.html image-88.html image-32.html image-50.html image-36.html image-80.html image-76.html image-70.html image-57.html image-08.html image-13.html image-44.html image-14.html image-65.html image-87.html image-81.html image-07.html image-06.html image-35.html image-55.html image-38.html image-59.html image-18.html image-74.html image-42.html image-25.html image-16.html image-91.html image-31.html image-17.html image-11.html image-78.html image-75.html image-30.html image-83.html image-54.html image-90.html image-48.rdf image-78.rdf image-59.rdf image-32.rdf image-16.rdf image-10.rdf image-06.rdf image-64.rdf image-44.rdf image-15.rdf image-24.rdf image-36.rdf image-22.rdf image-18.rdf image-28.rdf image-86.rdf image-82.rdf image-23.rdf image-87.rdf image-19.rdf image-56.rdf image-75.rdf image-39.rdf image-47.rdf image-83.rdf image-41.rdf image-81.rdf image-63.rdf image-80.rdf image-38.rdf image-30.rdf image-89.rdf image-53.rdf image-46.rdf image-60.rdf image-88.rdf image-55.rdf image-33.rdf image-65.rdf image-49.rdf image-69.rdf image-51.rdf image-79.rdf image-25.rdf image-27.rdf image-57.rdf image-31.rdf image-77.rdf image-02.rdf image-26.rdf image-03.rdf image-90.rdf image-42.rdf image-85.rdf image-43.rdf image-35.rdf image-34.rdf image-12.rdf image-54.rdf image-91.rdf image-29.rdf image-11.rdf image-50.rdf image-58.rdf image-08.rdf image-72.rdf image-21.rdf image-61.rdf image-14.rdf image-37.rdf image-74.rdf image-05.rdf image-67.rdf image-07.rdf image-09.rdf image-40.rdf image-84.rdf image-73.rdf image-71.rdf image-70.rdf image-76.rdf image-20.rdf image-13.rdf image-52.rdf image-66.rdf image-68.rdf image-62.rdf image-01.rdf image-17.rdf image-04.rdf image-45.rdf t/image-04.rdf t/image-61.rdf t/image-24.rdf t/image-85.rdf t/image-65.rdf t/image-59.rdf t/image-87.rdf t/image-79.rdf t/image-42.rdf t/image-29.rdf t/image-69.rdf t/image-46.rdf t/image-17.rdf t/image-15.rdf t/image-33.rdf t/image-30.rdf t/image-64.rdf t/image-32.rdf t/image-78.rdf t/image-31.rdf t/image-80.rdf t/image-62.rdf t/image-57.rdf t/image-01.rdf t/image-05.rdf t/image-55.rdf t/image-45.rdf t/image-90.rdf t/image-09.rdf t/image-27.rdf t/image-83.rdf t/image-75.rdf t/image-76.rdf t/image-74.rdf t/image-07.rdf t/image-88.rdf t/image-02.rdf t/image-66.rdf t/image-63.rdf t/image-52.rdf t/image-36.rdf t/image-03.rdf t/image-20.rdf t/image-06.rdf t/image-16.rdf t/image-71.rdf t/image-41.rdf t/image-70.rdf t/image-53.rdf t/image-23.rdf t/image-86.rdf t/image-73.rdf t/image-26.rdf t/image-89.rdf t/image-60.rdf t/image-56.rdf t/image-14.rdf t/image-18.rdf t/image-68.rdf t/image-34.rdf t/image-28.rdf t/image-81.rdf t/image-48.rdf t/image-38.rdf t/image-43.rdf t/image-19.rdf t/image-10.rdf t/image-72.rdf t/image-54.rdf t/image-11.rdf t/image-13.rdf t/image-08.rdf t/image-47.rdf t/image-51.rdf t/image-67.rdf t/image-50.rdf t/image-35.rdf t/image-44.rdf t/image-22.rdf t/image-49.rdf t/image-84.rdf t/image-91.rdf t/image-58.rdf t/image-82.rdf t/image-77.rdf t/image-40.rdf t/image-39.rdf t/image-21.rdf t/image-12.rdf t/image-37.rdf t/image-25.rdf image-39.jpg image-34.jpg image-86.jpg image-26.jpg image-15.jpg image-05.jpg image-51.jpg image-73.jpg image-41.jpg image-75.jpg image-77.jpg image-63.jpg image-14.jpg image-13.jpg image-06.jpg image-90.jpg image-02.jpg image-71.jpg image-53.jpg image-33.jpg image-66.jpg image-81.jpg image-01.jpg image-82.jpg image-68.jpg image-36.jpg image-22.jpg image-56.jpg image-18.jpg image-32.jpg image-76.jpg image-12.jpg image-19.jpg image-55.jpg image-88.jpg image-72.jpg image-21.jpg image-08.jpg image-31.jpg image-67.jpg image-07.jpg image-10.jpg image-89.jpg image-69.jpg image-61.jpg image-74.jpg image-54.jpg image-03.jpg image-42.jpg image-48.jpg image-65.jpg image-58.jpg image-43.jpg image-11.jpg image-38.jpg image-16.jpg image-04.jpg image-80.jpg image-29.jpg image-57.jpg image-85.jpg image-45.jpg image-70.jpg image-64.jpg image-59.jpg image-78.jpg image-30.jpg image-23.jpg image-49.jpg image-35.jpg image-24.jpg image-37.jpg image-84.jpg image-27.jpg image-47.jpg image-83.jpg image-62.jpg image-87.jpg image-44.jpg image-40.jpg image-09.jpg image-52.jpg image-50.jpg image-91.jpg image-28.jpg image-17.jpg image-79.jpg image-25.jpg image-20.jpg image-60.jpg image-46.jpg t/image-84.jpg t/image-30.jpg t/image-21.jpg t/image-34.jpg t/image-38.jpg t/image-15.jpg t/image-88.jpg t/image-74.jpg t/image-49.jpg t/image-28.jpg t/image-48.jpg t/image-07.jpg t/image-46.jpg t/image-60.jpg t/image-23.jpg t/image-05.jpg t/image-83.jpg t/image-79.jpg t/image-76.jpg t/image-54.jpg t/image-18.jpg t/image-59.jpg t/image-56.jpg t/image-66.jpg t/image-16.jpg t/image-61.jpg t/image-45.jpg t/image-10.jpg t/image-42.jpg t/image-73.jpg t/image-69.jpg t/image-31.jpg t/image-63.jpg t/image-58.jpg t/image-81.jpg t/image-68.jpg t/image-25.jpg t/image-41.jpg t/image-13.jpg t/image-57.jpg t/image-86.jpg t/image-02.jpg t/image-75.jpg t/image-36.jpg t/image-33.jpg t/image-27.jpg t/image-67.jpg t/image-53.jpg t/image-72.jpg t/image-12.jpg t/image-09.jpg t/image-47.jpg t/image-85.jpg t/image-82.jpg t/image-37.jpg t/image-08.jpg t/image-14.jpg t/image-06.jpg t/image-04.jpg t/image-29.jpg t/image-62.jpg t/image-52.jpg t/image-89.jpg t/image-39.jpg t/image-11.jpg t/image-43.jpg t/image-24.jpg t/image-65.jpg t/image-03.jpg t/image-70.jpg t/image-20.jpg t/image-40.jpg t/image-50.jpg t/image-44.jpg t/image-71.jpg t/image-87.jpg t/image-64.jpg t/image-55.jpg t/image-80.jpg t/image-90.jpg t/image-17.jpg t/image-19.jpg t/image-35.jpg t/image-91.jpg t/image-77.jpg t/image-78.jpg t/image-32.jpg t/image-26.jpg t/image-51.jpg t/image-22.jpg t/image-01.jpg t/image-50-t.jpg t/image-01-t.jpg t/image-69-t.jpg t/image-33-t.jpg t/image-45-t.jpg t/image-75-t.jpg t/image-40-t.jpg t/image-08-t.jpg t/image-23-t.jpg t/image-15-t.jpg t/image-03-t.jpg t/image-48-t.jpg t/image-85-t.jpg t/image-66-t.jpg t/image-87-t.jpg t/image-74-t.jpg t/image-61-t.jpg t/image-12-t.jpg t/image-31-t.jpg t/image-82-t.jpg t/image-35-t.jpg t/image-13-t.jpg t/image-18-t.jpg t/image-51-t.jpg t/image-62-t.jpg t/image-55-t.jpg t/image-60-t.jpg t/image-25-t.jpg t/image-28-t.jpg t/image-83-t.jpg t/image-11-t.jpg t/image-02-t.jpg t/image-89-t.jpg t/image-88-t.jpg t/image-78-t.jpg t/image-29-t.jpg t/image-05-t.jpg t/image-21-t.jpg t/image-64-t.jpg t/image-46-t.jpg t/image-38-t.jpg t/image-22-t.jpg t/image-20-t.jpg t/image-06-t.jpg t/image-27-t.jpg t/image-86-t.jpg t/image-80-t.jpg t/image-44-t.jpg t/image-71-t.jpg t/image-70-t.jpg t/image-43-t.jpg t/image-04-t.jpg t/image-81-t.jpg t/image-91-t.jpg t/image-56-t.jpg t/image-37-t.jpg t/image-32-t.jpg t/image-41-t.jpg t/image-67-t.jpg t/image-10-t.jpg t/image-76-t.jpg t/image-52-t.jpg t/image-34-t.jpg t/image-30-t.jpg t/image-59-t.jpg t/image-39-t.jpg t/image-54-t.jpg t/image-53-t.jpg t/image-84-t.jpg t/image-47-t.jpg t/image-90-t.jpg t/image-49-t.jpg t/image-16-t.jpg t/image-36-t.jpg t/image-58-t.jpg t/image-17-t.jpg t/image-09-t.jpg t/image-65-t.jpg t/image-19-t.jpg t/image-68-t.jpg t/image-73-t.jpg t/image-07-t.jpg t/image-77-t.jpg t/image-14-t.jpg t/image-79-t.jpg t/image-42-t.jpg t/image-72-t.jpg t/image-57-t.jpg t/image-24-t.jpg t/image-63-t.jpg t/image-26-t.jpg image-72.hist.png image-52.hist.png image-42.hist.png image-12.hist.png image-61.hist.png image-53.hist.png image-27.hist.png image-08.hist.png image-43.hist.png image-15.hist.png image-39.hist.png image-40.hist.png image-83.hist.png image-70.hist.png image-02.hist.png image-18.hist.png image-87.hist.png image-17.hist.png image-50.hist.png image-19.hist.png image-44.hist.png image-22.hist.png image-31.hist.png image-07.hist.png image-68.hist.png image-58.hist.png image-55.hist.png image-75.hist.png image-25.hist.png image-62.hist.png image-16.hist.png image-28.hist.png image-54.hist.png image-63.hist.png image-56.hist.png image-41.hist.png image-03.hist.png image-30.hist.png image-88.hist.png image-29.hist.png image-82.hist.png image-36.hist.png image-01.hist.png image-14.hist.png image-65.hist.png image-51.hist.png image-11.hist.png image-06.hist.png image-66.hist.png image-85.hist.png image-84.hist.png image-49.hist.png image-76.hist.png image-45.hist.png image-09.hist.png image-91.hist.png image-37.hist.png image-89.hist.png image-10.hist.png image-77.hist.png image-35.hist.png image-13.hist.png image-33.hist.png image-23.hist.png image-64.hist.png image-38.hist.png image-34.hist.png image-48.hist.png image-47.hist.png image-90.hist.png image-71.hist.png image-59.hist.png image-74.hist.png image-73.hist.png image-79.hist.png image-26.hist.png image-86.hist.png image-20.hist.png image-05.hist.png image-78.hist.png image-21.hist.png image-57.hist.png image-32.hist.png image-81.hist.png image-67.hist.png image-24.hist.png image-60.hist.png image-46.hist.png image-04.hist.png image-80.hist.png image-69.hist.png index.rdf index.html .htaccess rm -f image-67.xml image-50.xml image-76.xml image-32.xml image-85.xml image-47.xml image-15.xml image-12.xml image-13.xml image-68.xml image-49.xml image-41.xml image-82.xml image-81.xml image-38.xml image-69.xml image-58.xml image-90.xml image-36.xml image-18.xml image-11.xml image-45.xml image-51.xml image-33.xml image-65.xml image-35.xml image-17.xml image-27.xml image-53.xml image-88.xml image-04.xml image-75.xml image-19.xml image-91.xml image-06.xml image-87.xml image-83.xml image-34.xml image-20.xml image-55.xml image-77.xml image-40.xml image-89.xml image-42.xml image-31.xml image-63.xml image-16.xml image-08.xml image-54.xml image-80.xml image-79.xml image-78.xml image-23.xml image-71.xml image-05.xml image-62.xml image-64.xml image-29.xml image-56.xml image-26.xml image-24.xml image-72.xml image-61.xml image-52.xml image-46.xml image-03.xml image-57.xml image-48.xml image-39.xml image-30.xml image-70.xml image-37.xml image-10.xml image-25.xml image-43.xml image-22.xml image-14.xml image-86.xml image-09.xml image-60.xml image-84.xml image-74.xml image-73.xml image-21.xml image-59.xml image-07.xml image-66.xml image-01.xml image-28.xml image-02.xml image-44.xml - html: rm -f image-24.html image-86.html image-23.html image-79.html image-63.html image-89.html image-01.html image-28.html image-62.html image-85.html image-05.html image-73.html image-51.html image-37.html image-45.html image-21.html image-02.html image-66.html image-04.html image-29.html image-20.html image-09.html image-41.html image-12.html image-48.html image-67.html image-49.html image-22.html image-43.html image-40.html image-27.html image-56.html image-58.html image-71.html image-46.html image-15.html image-52.html image-72.html image-33.html image-84.html image-61.html image-03.html image-53.html image-60.html image-47.html image-69.html image-68.html image-26.html image-64.html image-77.html image-39.html image-34.html image-82.html image-19.html image-10.html image-88.html image-32.html image-50.html image-36.html image-80.html image-76.html image-70.html image-57.html image-08.html image-13.html image-44.html image-14.html image-65.html image-87.html image-81.html image-07.html image-06.html image-35.html image-55.html image-38.html image-59.html image-18.html image-74.html image-42.html image-25.html image-16.html image-91.html image-31.html image-17.html image-11.html image-78.html image-75.html image-30.html image-83.html image-54.html image-90.html index.html index.tmp make all post: rm -f image-67.xml image-50.xml image-76.xml image-32.xml image-85.xml image-47.xml image-15.xml image-12.xml image-13.xml image-68.xml image-49.xml image-41.xml image-82.xml image-81.xml image-38.xml image-69.xml image-58.xml image-90.xml image-36.xml image-18.xml image-11.xml image-45.xml image-51.xml image-33.xml image-65.xml image-35.xml image-17.xml image-27.xml image-53.xml image-88.xml image-04.xml image-75.xml image-19.xml image-91.xml image-06.xml image-87.xml image-83.xml image-34.xml image-20.xml image-55.xml image-77.xml image-40.xml image-89.xml image-42.xml image-31.xml image-63.xml image-16.xml image-08.xml image-54.xml image-80.xml image-79.xml image-78.xml image-23.xml image-71.xml image-05.xml image-62.xml image-64.xml image-29.xml image-56.xml image-26.xml image-24.xml image-72.xml image-61.xml image-52.xml image-46.xml image-03.xml image-57.xml image-48.xml image-39.xml image-30.xml image-70.xml image-37.xml image-10.xml image-25.xml image-43.xml image-22.xml image-14.xml image-86.xml image-09.xml image-60.xml image-84.xml image-74.xml image-73.xml image-21.xml image-59.xml image-07.xml image-66.xml image-01.xml image-28.xml image-02.xml image-44.xml image-48.rdf image-78.rdf image-59.rdf image-32.rdf image-16.rdf image-10.rdf image-06.rdf image-64.rdf image-44.rdf image-15.rdf image-24.rdf image-36.rdf image-22.rdf image-18.rdf image-28.rdf image-86.rdf image-82.rdf image-23.rdf image-87.rdf image-19.rdf image-56.rdf image-75.rdf image-39.rdf image-47.rdf image-83.rdf image-41.rdf image-81.rdf image-63.rdf image-80.rdf image-38.rdf image-30.rdf image-89.rdf image-53.rdf image-46.rdf image-60.rdf image-88.rdf image-55.rdf image-33.rdf image-65.rdf image-49.rdf image-69.rdf image-51.rdf image-79.rdf image-25.rdf image-27.rdf image-57.rdf image-31.rdf image-77.rdf image-02.rdf image-26.rdf image-03.rdf image-90.rdf image-42.rdf image-85.rdf image-43.rdf image-35.rdf image-34.rdf image-12.rdf image-54.rdf image-91.rdf image-29.rdf image-11.rdf image-50.rdf image-58.rdf image-08.rdf image-72.rdf image-21.rdf image-61.rdf image-14.rdf image-37.rdf image-74.rdf image-05.rdf image-67.rdf image-07.rdf image-09.rdf image-40.rdf image-84.rdf image-73.rdf image-71.rdf image-70.rdf image-76.rdf image-20.rdf image-13.rdf image-52.rdf image-66.rdf image-68.rdf image-62.rdf image-01.rdf image-17.rdf image-04.rdf image-45.rdf t/image-04.rdf t/image-61.rdf t/image-24.rdf t/image-85.rdf t/image-65.rdf t/image-59.rdf t/image-87.rdf t/image-79.rdf t/image-42.rdf t/image-29.rdf t/image-69.rdf t/image-46.rdf t/image-17.rdf t/image-15.rdf t/image-33.rdf t/image-30.rdf t/image-64.rdf t/image-32.rdf t/image-78.rdf t/image-31.rdf t/image-80.rdf t/image-62.rdf t/image-57.rdf t/image-01.rdf t/image-05.rdf t/image-55.rdf t/image-45.rdf t/image-90.rdf t/image-09.rdf t/image-27.rdf t/image-83.rdf t/image-75.rdf t/image-76.rdf t/image-74.rdf t/image-07.rdf t/image-88.rdf t/image-02.rdf t/image-66.rdf t/image-63.rdf t/image-52.rdf t/image-36.rdf t/image-03.rdf t/image-20.rdf t/image-06.rdf t/image-16.rdf t/image-71.rdf t/image-41.rdf t/image-70.rdf t/image-53.rdf t/image-23.rdf t/image-86.rdf t/image-73.rdf t/image-26.rdf t/image-89.rdf t/image-60.rdf t/image-56.rdf t/image-14.rdf t/image-18.rdf t/image-68.rdf t/image-34.rdf t/image-28.rdf t/image-81.rdf t/image-48.rdf t/image-38.rdf t/image-43.rdf t/image-19.rdf t/image-10.rdf t/image-72.rdf t/image-54.rdf t/image-11.rdf t/image-13.rdf t/image-08.rdf t/image-47.rdf t/image-51.rdf t/image-67.rdf t/image-50.rdf t/image-35.rdf t/image-44.rdf t/image-22.rdf t/image-49.rdf t/image-84.rdf t/image-91.rdf t/image-58.rdf t/image-82.rdf t/image-77.rdf t/image-40.rdf t/image-39.rdf t/image-21.rdf t/image-12.rdf t/image-37.rdf t/image-25.rdf index.xml index.tmp index.rdf all.rdf make html update: rm -f index.html index.tmp make index.html reload: rm -f load.nt make all remake: make clean make all clean: rm -f image-13.nt image-41.nt image-07.nt image-90.nt image-33.nt image-03.nt image-82.nt image-42.nt image-85.nt image-17.nt image-52.nt image-04.nt image-91.nt image-83.nt image-24.nt image-74.nt image-49.nt image-54.nt image-01.nt image-46.nt image-86.nt image-43.nt image-19.nt image-79.nt image-73.nt image-18.nt image-76.nt image-65.nt image-45.nt image-55.nt image-50.nt image-51.nt image-59.nt image-14.nt image-67.nt image-68.nt image-62.nt image-22.nt image-16.nt image-15.nt image-44.nt image-47.nt image-60.nt image-30.nt image-75.nt image-09.nt image-31.nt image-21.nt image-53.nt image-72.nt image-37.nt image-57.nt image-40.nt image-35.nt image-84.nt image-77.nt image-05.nt image-08.nt image-81.nt image-27.nt image-26.nt image-64.nt image-80.nt image-66.nt image-36.nt image-23.nt image-61.nt image-38.nt image-02.nt image-87.nt image-63.nt image-70.nt image-89.nt image-71.nt image-34.nt image-39.nt image-56.nt image-29.nt image-28.nt image-20.nt image-58.nt image-12.nt image-48.nt image-78.nt image-11.nt image-25.nt image-06.nt image-88.nt image-32.nt image-10.nt image-69.nt image-67.xml image-50.xml image-76.xml image-32.xml image-85.xml image-47.xml image-15.xml image-12.xml image-13.xml image-68.xml image-49.xml image-41.xml image-82.xml image-81.xml image-38.xml image-69.xml image-58.xml image-90.xml image-36.xml image-18.xml image-11.xml image-45.xml image-51.xml image-33.xml image-65.xml image-35.xml image-17.xml image-27.xml image-53.xml image-88.xml image-04.xml image-75.xml image-19.xml image-91.xml image-06.xml image-87.xml image-83.xml image-34.xml image-20.xml image-55.xml image-77.xml image-40.xml image-89.xml image-42.xml image-31.xml image-63.xml image-16.xml image-08.xml image-54.xml image-80.xml image-79.xml image-78.xml image-23.xml image-71.xml image-05.xml image-62.xml image-64.xml image-29.xml image-56.xml image-26.xml image-24.xml image-72.xml image-61.xml image-52.xml image-46.xml image-03.xml image-57.xml image-48.xml image-39.xml image-30.xml image-70.xml image-37.xml image-10.xml image-25.xml image-43.xml image-22.xml image-14.xml image-86.xml image-09.xml image-60.xml image-84.xml image-74.xml image-73.xml image-21.xml image-59.xml image-07.xml image-66.xml image-01.xml image-28.xml image-02.xml image-44.xml image-24.html image-86.html image-23.html image-79.html image-63.html image-89.html image-01.html image-28.html image-62.html image-85.html image-05.html image-73.html image-51.html image-37.html image-45.html image-21.html image-02.html image-66.html image-04.html image-29.html image-20.html image-09.html image-41.html image-12.html image-48.html image-67.html image-49.html image-22.html image-43.html image-40.html image-27.html image-56.html image-58.html image-71.html image-46.html image-15.html image-52.html image-72.html image-33.html image-84.html image-61.html image-03.html image-53.html image-60.html image-47.html image-69.html image-68.html image-26.html image-64.html image-77.html image-39.html image-34.html image-82.html image-19.html image-10.html image-88.html image-32.html image-50.html image-36.html image-80.html image-76.html image-70.html image-57.html image-08.html image-13.html image-44.html image-14.html image-65.html image-87.html image-81.html image-07.html image-06.html image-35.html image-55.html image-38.html image-59.html image-18.html image-74.html image-42.html image-25.html image-16.html image-91.html image-31.html image-17.html image-11.html image-78.html image-75.html image-30.html image-83.html image-54.html image-90.html image-48.rdf image-78.rdf image-59.rdf image-32.rdf image-16.rdf image-10.rdf image-06.rdf image-64.rdf image-44.rdf image-15.rdf image-24.rdf image-36.rdf image-22.rdf image-18.rdf image-28.rdf image-86.rdf image-82.rdf image-23.rdf image-87.rdf image-19.rdf image-56.rdf image-75.rdf image-39.rdf image-47.rdf image-83.rdf image-41.rdf image-81.rdf image-63.rdf image-80.rdf image-38.rdf image-30.rdf image-89.rdf image-53.rdf image-46.rdf image-60.rdf image-88.rdf image-55.rdf image-33.rdf image-65.rdf image-49.rdf image-69.rdf image-51.rdf image-79.rdf image-25.rdf image-27.rdf image-57.rdf image-31.rdf image-77.rdf image-02.rdf image-26.rdf image-03.rdf image-90.rdf image-42.rdf image-85.rdf image-43.rdf image-35.rdf image-34.rdf image-12.rdf image-54.rdf image-91.rdf image-29.rdf image-11.rdf image-50.rdf image-58.rdf image-08.rdf image-72.rdf image-21.rdf image-61.rdf image-14.rdf image-37.rdf image-74.rdf image-05.rdf image-67.rdf image-07.rdf image-09.rdf image-40.rdf image-84.rdf image-73.rdf image-71.rdf image-70.rdf image-76.rdf image-20.rdf image-13.rdf image-52.rdf image-66.rdf image-68.rdf image-62.rdf image-01.rdf image-17.rdf image-04.rdf image-45.rdf index.xml index.tmp all.rdf db.nt movie*.nt locations.nt offline.nt load.nt images.nt .htaccess realclean: make clean rm -f image-48.rdf image-78.rdf image-59.rdf image-32.rdf image-16.rdf image-10.rdf image-06.rdf image-64.rdf image-44.rdf image-15.rdf image-24.rdf image-36.rdf image-22.rdf image-18.rdf image-28.rdf image-86.rdf image-82.rdf image-23.rdf image-87.rdf image-19.rdf image-56.rdf image-75.rdf image-39.rdf image-47.rdf image-83.rdf image-41.rdf image-81.rdf image-63.rdf image-80.rdf image-38.rdf image-30.rdf image-89.rdf image-53.rdf image-46.rdf image-60.rdf image-88.rdf image-55.rdf image-33.rdf image-65.rdf image-49.rdf image-69.rdf image-51.rdf image-79.rdf image-25.rdf image-27.rdf image-57.rdf image-31.rdf image-77.rdf image-02.rdf image-26.rdf image-03.rdf image-90.rdf image-42.rdf image-85.rdf image-43.rdf image-35.rdf image-34.rdf image-12.rdf image-54.rdf image-91.rdf image-29.rdf image-11.rdf image-50.rdf image-58.rdf image-08.rdf image-72.rdf image-21.rdf image-61.rdf image-14.rdf image-37.rdf image-74.rdf image-05.rdf image-67.rdf image-07.rdf image-09.rdf image-40.rdf image-84.rdf image-73.rdf image-71.rdf image-70.rdf image-76.rdf image-20.rdf image-13.rdf image-52.rdf image-66.rdf image-68.rdf image-62.rdf image-01.rdf image-17.rdf image-04.rdf image-45.rdf t/image-04.rdf t/image-61.rdf t/image-24.rdf t/image-85.rdf t/image-65.rdf t/image-59.rdf t/image-87.rdf t/image-79.rdf t/image-42.rdf t/image-29.rdf t/image-69.rdf t/image-46.rdf t/image-17.rdf t/image-15.rdf t/image-33.rdf t/image-30.rdf t/image-64.rdf t/image-32.rdf t/image-78.rdf t/image-31.rdf t/image-80.rdf t/image-62.rdf t/image-57.rdf t/image-01.rdf t/image-05.rdf t/image-55.rdf t/image-45.rdf t/image-90.rdf t/image-09.rdf t/image-27.rdf t/image-83.rdf t/image-75.rdf t/image-76.rdf t/image-74.rdf t/image-07.rdf t/image-88.rdf t/image-02.rdf t/image-66.rdf t/image-63.rdf t/image-52.rdf t/image-36.rdf t/image-03.rdf t/image-20.rdf t/image-06.rdf t/image-16.rdf t/image-71.rdf t/image-41.rdf t/image-70.rdf t/image-53.rdf t/image-23.rdf t/image-86.rdf t/image-73.rdf t/image-26.rdf t/image-89.rdf t/image-60.rdf t/image-56.rdf t/image-14.rdf t/image-18.rdf t/image-68.rdf t/image-34.rdf t/image-28.rdf t/image-81.rdf t/image-48.rdf t/image-38.rdf t/image-43.rdf t/image-19.rdf t/image-10.rdf t/image-72.rdf t/image-54.rdf t/image-11.rdf t/image-13.rdf t/image-08.rdf t/image-47.rdf t/image-51.rdf t/image-67.rdf t/image-50.rdf t/image-35.rdf t/image-44.rdf t/image-22.rdf t/image-49.rdf t/image-84.rdf t/image-91.rdf t/image-58.rdf t/image-82.rdf t/image-77.rdf t/image-40.rdf t/image-39.rdf t/image-21.rdf t/image-12.rdf t/image-37.rdf t/image-25.rdf image-24.html image-86.html image-23.html image-79.html image-63.html image-89.html image-01.html image-28.html image-62.html image-85.html image-05.html image-73.html image-51.html image-37.html image-45.html image-21.html image-02.html image-66.html image-04.html image-29.html image-20.html image-09.html image-41.html image-12.html image-48.html image-67.html image-49.html image-22.html image-43.html image-40.html image-27.html image-56.html image-58.html image-71.html image-46.html image-15.html image-52.html image-72.html image-33.html image-84.html image-61.html image-03.html image-53.html image-60.html image-47.html image-69.html image-68.html image-26.html image-64.html image-77.html image-39.html image-34.html image-82.html image-19.html image-10.html image-88.html image-32.html image-50.html image-36.html image-80.html image-76.html image-70.html image-57.html image-08.html image-13.html image-44.html image-14.html image-65.html image-87.html image-81.html image-07.html image-06.html image-35.html image-55.html image-38.html image-59.html image-18.html image-74.html image-42.html image-25.html image-16.html image-91.html image-31.html image-17.html image-11.html image-78.html image-75.html image-30.html image-83.html image-54.html image-90.html index.rdf index.html rm -f t/image-84.jpg t/image-30.jpg t/image-21.jpg t/image-34.jpg t/image-38.jpg t/image-15.jpg t/image-88.jpg t/image-74.jpg t/image-49.jpg t/image-28.jpg t/image-48.jpg t/image-07.jpg t/image-46.jpg t/image-60.jpg t/image-23.jpg t/image-05.jpg t/image-83.jpg t/image-79.jpg t/image-76.jpg t/image-54.jpg t/image-18.jpg t/image-59.jpg t/image-56.jpg t/image-66.jpg t/image-16.jpg t/image-61.jpg t/image-45.jpg t/image-10.jpg t/image-42.jpg t/image-73.jpg t/image-69.jpg t/image-31.jpg t/image-63.jpg t/image-58.jpg t/image-81.jpg t/image-68.jpg t/image-25.jpg t/image-41.jpg t/image-13.jpg t/image-57.jpg t/image-86.jpg t/image-02.jpg t/image-75.jpg t/image-36.jpg t/image-33.jpg t/image-27.jpg t/image-67.jpg t/image-53.jpg t/image-72.jpg t/image-12.jpg t/image-09.jpg t/image-47.jpg t/image-85.jpg t/image-82.jpg t/image-37.jpg t/image-08.jpg t/image-14.jpg t/image-06.jpg t/image-04.jpg t/image-29.jpg t/image-62.jpg t/image-52.jpg t/image-89.jpg t/image-39.jpg t/image-11.jpg t/image-43.jpg t/image-24.jpg t/image-65.jpg t/image-03.jpg t/image-70.jpg t/image-20.jpg t/image-40.jpg t/image-50.jpg t/image-44.jpg t/image-71.jpg t/image-87.jpg t/image-64.jpg t/image-55.jpg t/image-80.jpg t/image-90.jpg t/image-17.jpg t/image-19.jpg t/image-35.jpg t/image-91.jpg t/image-77.jpg t/image-78.jpg t/image-32.jpg t/image-26.jpg t/image-51.jpg t/image-22.jpg t/image-01.jpg t/image-50-t.jpg t/image-01-t.jpg t/image-69-t.jpg t/image-33-t.jpg t/image-45-t.jpg t/image-75-t.jpg t/image-40-t.jpg t/image-08-t.jpg t/image-23-t.jpg t/image-15-t.jpg t/image-03-t.jpg t/image-48-t.jpg t/image-85-t.jpg t/image-66-t.jpg t/image-87-t.jpg t/image-74-t.jpg t/image-61-t.jpg t/image-12-t.jpg t/image-31-t.jpg t/image-82-t.jpg t/image-35-t.jpg t/image-13-t.jpg t/image-18-t.jpg t/image-51-t.jpg t/image-62-t.jpg t/image-55-t.jpg t/image-60-t.jpg t/image-25-t.jpg t/image-28-t.jpg t/image-83-t.jpg t/image-11-t.jpg t/image-02-t.jpg t/image-89-t.jpg t/image-88-t.jpg t/image-78-t.jpg t/image-29-t.jpg t/image-05-t.jpg t/image-21-t.jpg t/image-64-t.jpg t/image-46-t.jpg t/image-38-t.jpg t/image-22-t.jpg t/image-20-t.jpg t/image-06-t.jpg t/image-27-t.jpg t/image-86-t.jpg t/image-80-t.jpg t/image-44-t.jpg t/image-71-t.jpg t/image-70-t.jpg t/image-43-t.jpg t/image-04-t.jpg t/image-81-t.jpg t/image-91-t.jpg t/image-56-t.jpg t/image-37-t.jpg t/image-32-t.jpg t/image-41-t.jpg t/image-67-t.jpg t/image-10-t.jpg t/image-76-t.jpg t/image-52-t.jpg t/image-34-t.jpg t/image-30-t.jpg t/image-59-t.jpg t/image-39-t.jpg t/image-54-t.jpg t/image-53-t.jpg t/image-84-t.jpg t/image-47-t.jpg t/image-90-t.jpg t/image-49-t.jpg t/image-16-t.jpg t/image-36-t.jpg t/image-58-t.jpg t/image-17-t.jpg t/image-09-t.jpg t/image-65-t.jpg t/image-19-t.jpg t/image-68-t.jpg t/image-73-t.jpg t/image-07-t.jpg t/image-77-t.jpg t/image-14-t.jpg t/image-79-t.jpg t/image-42-t.jpg t/image-72-t.jpg t/image-57-t.jpg t/image-24-t.jpg t/image-63-t.jpg t/image-26-t.jpg raw/image-04.jpg raw/image-31.jpg raw/image-02.jpg raw/image-49.jpg raw/image-09.jpg raw/image-14.jpg raw/image-81.jpg raw/image-03.jpg raw/image-70.jpg raw/image-34.jpg raw/image-63.jpg raw/image-38.jpg raw/image-76.jpg raw/image-61.jpg raw/image-45.jpg raw/image-91.jpg raw/image-32.jpg raw/image-75.jpg raw/image-26.jpg raw/image-35.jpg raw/image-37.jpg raw/image-79.jpg raw/image-60.jpg raw/image-11.jpg raw/image-80.jpg raw/image-69.jpg raw/image-06.jpg raw/image-15.jpg raw/image-77.jpg raw/image-86.jpg raw/image-71.jpg raw/image-22.jpg raw/image-13.jpg raw/image-64.jpg raw/image-62.jpg raw/image-07.jpg raw/image-29.jpg raw/image-30.jpg raw/image-40.jpg raw/image-57.jpg raw/image-46.jpg raw/image-67.jpg raw/image-66.jpg raw/image-52.jpg raw/image-90.jpg raw/image-88.jpg raw/image-05.jpg raw/image-36.jpg raw/image-58.jpg raw/image-12.jpg raw/image-74.jpg raw/image-42.jpg raw/image-72.jpg raw/image-25.jpg raw/image-39.jpg raw/image-89.jpg raw/image-44.jpg raw/image-20.jpg raw/image-83.jpg raw/image-59.jpg raw/image-85.jpg raw/image-54.jpg raw/image-65.jpg raw/image-53.jpg raw/image-84.jpg raw/image-19.jpg raw/image-87.jpg raw/image-01.jpg raw/image-23.jpg raw/image-08.jpg raw/image-41.jpg raw/image-18.jpg raw/image-51.jpg raw/image-68.jpg raw/image-55.jpg raw/image-48.jpg raw/image-50.jpg raw/image-28.jpg raw/image-27.jpg raw/image-56.jpg raw/image-78.jpg raw/image-10.jpg raw/image-47.jpg raw/image-16.jpg raw/image-82.jpg raw/image-21.jpg raw/image-17.jpg raw/image-43.jpg raw/image-73.jpg raw/image-24.jpg raw/image-33.jpg image-72.hist.png image-52.hist.png image-42.hist.png image-12.hist.png image-61.hist.png image-53.hist.png image-27.hist.png image-08.hist.png image-43.hist.png image-15.hist.png image-39.hist.png image-40.hist.png image-83.hist.png image-70.hist.png image-02.hist.png image-18.hist.png image-87.hist.png image-17.hist.png image-50.hist.png image-19.hist.png image-44.hist.png image-22.hist.png image-31.hist.png image-07.hist.png image-68.hist.png image-58.hist.png image-55.hist.png image-75.hist.png image-25.hist.png image-62.hist.png image-16.hist.png image-28.hist.png image-54.hist.png image-63.hist.png image-56.hist.png image-41.hist.png image-03.hist.png image-30.hist.png image-88.hist.png image-29.hist.png image-82.hist.png image-36.hist.png image-01.hist.png image-14.hist.png image-65.hist.png image-51.hist.png image-11.hist.png image-06.hist.png image-66.hist.png image-85.hist.png image-84.hist.png image-49.hist.png image-76.hist.png image-45.hist.png image-09.hist.png image-91.hist.png image-37.hist.png image-89.hist.png image-10.hist.png image-77.hist.png image-35.hist.png image-13.hist.png image-33.hist.png image-23.hist.png image-64.hist.png image-38.hist.png image-34.hist.png image-48.hist.png image-47.hist.png image-90.hist.png image-71.hist.png image-59.hist.png image-74.hist.png image-73.hist.png image-79.hist.png image-26.hist.png image-86.hist.png image-20.hist.png image-05.hist.png image-78.hist.png image-21.hist.png image-57.hist.png image-32.hist.png image-81.hist.png image-67.hist.png image-24.hist.png image-60.hist.png image-46.hist.png image-04.hist.png image-80.hist.png image-69.hist.png Makefile offline: make all make index.htm image-30.htm image-56.htm image-64.htm image-67.htm image-86.htm image-02.htm image-36.htm image-66.htm image-25.htm image-19.htm image-77.htm image-52.htm image-01.htm image-72.htm image-43.htm image-83.htm image-27.htm image-18.htm image-13.htm image-63.htm image-48.htm image-31.htm image-90.htm image-59.htm image-33.htm image-76.htm image-49.htm image-22.htm image-89.htm image-65.htm image-05.htm image-79.htm image-08.htm image-81.htm image-16.htm image-11.htm image-58.htm image-41.htm image-38.htm image-70.htm image-17.htm image-84.htm image-80.htm image-14.htm image-21.htm image-12.htm image-91.htm image-78.htm image-60.htm image-10.htm image-29.htm image-54.htm image-47.htm image-74.htm image-32.htm image-82.htm image-42.htm image-68.htm image-73.htm image-46.htm image-06.htm image-45.htm image-85.htm image-87.htm image-37.htm image-51.htm image-03.htm image-40.htm image-62.htm image-75.htm image-24.htm image-44.htm image-26.htm image-53.htm image-23.htm image-69.htm image-71.htm image-09.htm image-04.htm image-61.htm image-20.htm image-35.htm image-15.htm image-07.htm image-50.htm image-57.htm image-34.htm image-55.htm image-28.htm image-88.htm image-39.htm rm -f offline.zip zip offline index.htm image-30.htm image-56.htm image-64.htm image-67.htm image-86.htm image-02.htm image-36.htm image-66.htm image-25.htm image-19.htm image-77.htm image-52.htm image-01.htm image-72.htm image-43.htm image-83.htm image-27.htm image-18.htm image-13.htm image-63.htm image-48.htm image-31.htm image-90.htm image-59.htm image-33.htm image-76.htm image-49.htm image-22.htm image-89.htm image-65.htm image-05.htm image-79.htm image-08.htm image-81.htm image-16.htm image-11.htm image-58.htm image-41.htm image-38.htm image-70.htm image-17.htm image-84.htm image-80.htm image-14.htm image-21.htm image-12.htm image-91.htm image-78.htm image-60.htm image-10.htm image-29.htm image-54.htm image-47.htm image-74.htm image-32.htm image-82.htm image-42.htm image-68.htm image-73.htm image-46.htm image-06.htm image-45.htm image-85.htm image-87.htm image-37.htm image-51.htm image-03.htm image-40.htm image-62.htm image-75.htm image-24.htm image-44.htm image-26.htm image-53.htm image-23.htm image-69.htm image-71.htm image-09.htm image-04.htm image-61.htm image-20.htm image-35.htm image-15.htm image-07.htm image-50.htm image-57.htm image-34.htm image-55.htm image-28.htm image-88.htm image-39.htm t/image-84.jpg t/image-30.jpg t/image-21.jpg t/image-34.jpg t/image-38.jpg t/image-15.jpg t/image-88.jpg t/image-74.jpg t/image-49.jpg t/image-28.jpg t/image-48.jpg t/image-07.jpg t/image-46.jpg t/image-60.jpg t/image-23.jpg t/image-05.jpg t/image-83.jpg t/image-79.jpg t/image-76.jpg t/image-54.jpg t/image-18.jpg t/image-59.jpg t/image-56.jpg t/image-66.jpg t/image-16.jpg t/image-61.jpg t/image-45.jpg t/image-10.jpg t/image-42.jpg t/image-73.jpg t/image-69.jpg t/image-31.jpg t/image-63.jpg t/image-58.jpg t/image-81.jpg t/image-68.jpg t/image-25.jpg t/image-41.jpg t/image-13.jpg t/image-57.jpg t/image-86.jpg t/image-02.jpg t/image-75.jpg t/image-36.jpg t/image-33.jpg t/image-27.jpg t/image-67.jpg t/image-53.jpg t/image-72.jpg t/image-12.jpg t/image-09.jpg t/image-47.jpg t/image-85.jpg t/image-82.jpg t/image-37.jpg t/image-08.jpg t/image-14.jpg t/image-06.jpg t/image-04.jpg t/image-29.jpg t/image-62.jpg t/image-52.jpg t/image-89.jpg t/image-39.jpg t/image-11.jpg t/image-43.jpg t/image-24.jpg t/image-65.jpg t/image-03.jpg t/image-70.jpg t/image-20.jpg t/image-40.jpg t/image-50.jpg t/image-44.jpg t/image-71.jpg t/image-87.jpg t/image-64.jpg t/image-55.jpg t/image-80.jpg t/image-90.jpg t/image-17.jpg t/image-19.jpg t/image-35.jpg t/image-91.jpg t/image-77.jpg t/image-78.jpg t/image-32.jpg t/image-26.jpg t/image-51.jpg t/image-22.jpg t/image-01.jpg t/image-50-t.jpg t/image-01-t.jpg t/image-69-t.jpg t/image-33-t.jpg t/image-45-t.jpg t/image-75-t.jpg t/image-40-t.jpg t/image-08-t.jpg t/image-23-t.jpg t/image-15-t.jpg t/image-03-t.jpg t/image-48-t.jpg t/image-85-t.jpg t/image-66-t.jpg t/image-87-t.jpg t/image-74-t.jpg t/image-61-t.jpg t/image-12-t.jpg t/image-31-t.jpg t/image-82-t.jpg t/image-35-t.jpg t/image-13-t.jpg t/image-18-t.jpg t/image-51-t.jpg t/image-62-t.jpg t/image-55-t.jpg t/image-60-t.jpg t/image-25-t.jpg t/image-28-t.jpg t/image-83-t.jpg t/image-11-t.jpg t/image-02-t.jpg t/image-89-t.jpg t/image-88-t.jpg t/image-78-t.jpg t/image-29-t.jpg t/image-05-t.jpg t/image-21-t.jpg t/image-64-t.jpg t/image-46-t.jpg t/image-38-t.jpg t/image-22-t.jpg t/image-20-t.jpg t/image-06-t.jpg t/image-27-t.jpg t/image-86-t.jpg t/image-80-t.jpg t/image-44-t.jpg t/image-71-t.jpg t/image-70-t.jpg t/image-43-t.jpg t/image-04-t.jpg t/image-81-t.jpg t/image-91-t.jpg t/image-56-t.jpg t/image-37-t.jpg t/image-32-t.jpg t/image-41-t.jpg t/image-67-t.jpg t/image-10-t.jpg t/image-76-t.jpg t/image-52-t.jpg t/image-34-t.jpg t/image-30-t.jpg t/image-59-t.jpg t/image-39-t.jpg t/image-54-t.jpg t/image-53-t.jpg t/image-84-t.jpg t/image-47-t.jpg t/image-90-t.jpg t/image-49-t.jpg t/image-16-t.jpg t/image-36-t.jpg t/image-58-t.jpg t/image-17-t.jpg t/image-09-t.jpg t/image-65-t.jpg t/image-19-t.jpg t/image-68-t.jpg t/image-73-t.jpg t/image-07-t.jpg t/image-77-t.jpg t/image-14-t.jpg t/image-79-t.jpg t/image-42-t.jpg t/image-72-t.jpg t/image-57-t.jpg t/image-24-t.jpg t/image-63-t.jpg t/image-26-t.jpg image-39.jpg image-34.jpg image-86.jpg image-26.jpg image-15.jpg image-05.jpg image-51.jpg image-73.jpg image-41.jpg image-75.jpg image-77.jpg image-63.jpg image-14.jpg image-13.jpg image-06.jpg image-90.jpg image-02.jpg image-71.jpg image-53.jpg image-33.jpg image-66.jpg image-81.jpg image-01.jpg image-82.jpg image-68.jpg image-36.jpg image-22.jpg image-56.jpg image-18.jpg image-32.jpg image-76.jpg image-12.jpg image-19.jpg image-55.jpg image-88.jpg image-72.jpg image-21.jpg image-08.jpg image-31.jpg image-67.jpg image-07.jpg image-10.jpg image-89.jpg image-69.jpg image-61.jpg image-74.jpg image-54.jpg image-03.jpg image-42.jpg image-48.jpg image-65.jpg image-58.jpg image-43.jpg image-11.jpg image-38.jpg image-16.jpg image-04.jpg image-80.jpg image-29.jpg image-57.jpg image-85.jpg image-45.jpg image-70.jpg image-64.jpg image-59.jpg image-78.jpg image-30.jpg image-23.jpg image-49.jpg image-35.jpg image-24.jpg image-37.jpg image-84.jpg image-27.jpg image-47.jpg image-83.jpg image-62.jpg image-87.jpg image-44.jpg image-40.jpg image-09.jpg image-52.jpg image-50.jpg image-91.jpg image-28.jpg image-17.jpg image-79.jpg image-25.jpg image-20.jpg image-60.jpg image-46.jpg mv offline.zip `/bin/pwd`-offline.zip fix: sempa.nt if ( grep -q '$(FIX_REMOVE_SEARCH)' $< && grep -C2 '$(FIX_REMOVE_SEARCH)' $< | grep -q '$(FIX_REMOVE_VERIFY)' ); then \ cp -p $< $<.bak.`date -I`.$(NOWSECS)remove && \ perl -e 'while(<>){print if($$_!~/$(FIX_REMOVE_SEARCH)/);}' < $< > $<.tmp && mv $<.tmp $< ; \ fi if ( grep -q '$(FIX_REPLACE_SEARCH)' $< && grep -C2 '$(FIX_REPLACE_SEARCH)' $< | grep -q '$(FIX_REPLACE_VERIFY)' ); then \ cp -p $< $<.bak.`date -I`.$(NOWSECS)replace && \ perl -e 'while(<>){$$_=~s%$(FIX_REPLACE_SEARCH)%$(FIX_REPLACE_REPLACE)%g; print;}' < $< > $<.tmp && mv $<.tmp $< ; \ fi fixtest: sempa.nt if ( grep -q '$(FIX_REMOVE_SEARCH)' $< && grep -C2 '$(FIX_REMOVE_SEARCH)' $< | grep -q '$(FIX_REMOVE_VERIFY)' ); then \ echo remove: `/bin/pwd`; \ fi if ( grep -q '$(FIX_REPLACE_SEARCH)' $< && grep -C2 '$(FIX_REPLACE_SEARCH)' $< | grep -q '$(FIX_REPLACE_VERIFY)' ); then \ echo replace: `/bin/pwd`; \ fi fixecho: sempa.nt echo fix-remove-search: $(FIX_REMOVE_SEARCH) echo fix-remove-verify: $(FIX_REMOVE_VERIFY) echo fix-replace-search: $(FIX_REPLACE_SEARCH) echo fix-replace-verify: $(FIX_REPLACE_VERIFY) echo fix-replace-replace: $(FIX_REPLACE_REPLACE) unfix: sempa.nt if [ "`ls -rt sempa.nt.bak.* 2> /dev/null | tail -n1`" != "" ]; then \ echo '*' `ls -rt sempa.nt.bak.* | tail -n1` ; \ cp -p `ls -rt sempa.nt.bak.* | tail -n1` sempa.nt ; \ rm `ls -rt sempa.nt.bak.* | tail -n1` ; \ fi Makefile: /net/local/bin/mkmake /net/home/web/www/share/Makefile.sempa image-01.jpg image-02.jpg image-03.jpg image-04.jpg image-05.jpg image-06.jpg image-07.jpg image-08.jpg image-09.jpg image-10.jpg image-11.jpg image-12.jpg image-13.jpg image-14.jpg image-15.jpg image-16.jpg image-17.jpg image-18.jpg image-19.jpg image-20.jpg image-21.jpg image-22.jpg image-23.jpg image-24.jpg image-25.jpg image-26.jpg image-27.jpg image-28.jpg image-29.jpg image-30.jpg image-31.jpg image-32.jpg image-33.jpg image-34.jpg image-35.jpg image-36.jpg image-37.jpg image-38.jpg image-39.jpg image-40.jpg image-41.jpg image-42.jpg image-43.jpg image-44.jpg image-45.jpg image-46.jpg image-47.jpg image-48.jpg image-49.jpg image-50.jpg image-51.jpg image-52.jpg image-53.jpg image-54.jpg image-55.jpg image-56.jpg image-57.jpg image-58.jpg image-59.jpg image-60.jpg image-61.jpg image-62.jpg image-63.jpg image-64.jpg image-65.jpg image-66.jpg image-67.jpg image-68.jpg image-69.jpg image-70.jpg image-71.jpg image-72.jpg image-73.jpg image-74.jpg image-75.jpg image-76.jpg image-77.jpg image-78.jpg image-79.jpg image-80.jpg image-81.jpg image-82.jpg image-83.jpg image-84.jpg image-85.jpg image-86.jpg image-87.jpg image-88.jpg image-89.jpg image-90.jpg image-91.jpg /net/local/bin/mkmake /net/home/web/www/share/Makefile.sempa image-01.jpg image-02.jpg image-03.jpg image-04.jpg image-05.jpg image-06.jpg image-07.jpg image-08.jpg image-09.jpg image-10.jpg image-11.jpg image-12.jpg image-13.jpg image-14.jpg image-15.jpg image-16.jpg image-17.jpg image-18.jpg image-19.jpg image-20.jpg image-21.jpg image-22.jpg image-23.jpg image-24.jpg image-25.jpg image-26.jpg image-27.jpg image-28.jpg image-29.jpg image-30.jpg image-31.jpg image-32.jpg image-33.jpg image-34.jpg image-35.jpg image-36.jpg image-37.jpg image-38.jpg image-39.jpg image-40.jpg image-41.jpg image-42.jpg image-43.jpg image-44.jpg image-45.jpg image-46.jpg image-47.jpg image-48.jpg image-49.jpg image-50.jpg image-51.jpg image-52.jpg image-53.jpg image-54.jpg image-55.jpg image-56.jpg image-57.jpg image-58.jpg image-59.jpg image-60.jpg image-61.jpg image-62.jpg image-63.jpg image-64.jpg image-65.jpg image-66.jpg image-67.jpg image-68.jpg image-69.jpg image-70.jpg image-71.jpg image-72.jpg image-73.jpg image-74.jpg image-75.jpg image-76.jpg image-77.jpg image-78.jpg image-79.jpg image-80.jpg image-81.jpg image-82.jpg image-83.jpg image-84.jpg image-85.jpg image-86.jpg image-87.jpg image-88.jpg image-89.jpg image-90.jpg image-91.jpg > $@