X-Git-Url: https://plomlompom.com/repos/?p=redo-blog;a=blobdiff_plain;f=processor%2Fall.do;h=3d09097c48be7a4f2b511c404797dc9ccc1c4614;hp=edd2b476138f004700d16d19f9734d8116c56136;hb=ff5b37d8bc4cfba8f1db69a279da887accaa0296;hpb=dfdd193cf3f2f215fd26bae06ada013a14422581 diff --git a/processor/all.do b/processor/all.do index edd2b47..3d09097 100644 --- a/processor/all.do +++ b/processor/all.do @@ -1,24 +1,32 @@ #!/bin/sh +# Set up directories. +metadata_dir=metadata +public_dir=public +cur_dir=$(pwd) +mkdir -p "$public_dir" + # Remove target files for which no sources files can be found. -for file in *.intermediate; do +for file in "$metadata_dir"/*.intermediate; do + basename=$(basename "$file") if test -f "$file" && - ! test -f "${file%.intermediate}.md" && - ! test -f "${file%.intermediate}.rst"; then + ! test -f "${basename%.intermediate}.md" && + ! test -f "${basename%.intermediate}.rst"; then rm "$file" fi done -for file in *.uuid; do +for file in "$metadata_dir"/*.automatic_metadata; do + basename=$(basename "$file") if test -f "$file" && - ! test -f "${file%.uuid}.md" && - ! test -f "${file%.uuid}.rst"; then + ! test -f "${basename%.automatic_metadata}.md" && + ! test -f "${basename%.automatic_metadata}.rst"; then rm "$file" fi done for file in *.html; do if test -f "$file" && ! test "$file" = "index.html" && - ! test -f "${file%.html}.intermediate"; then + ! test -f "${metadata_dir}/${file%.html}.intermediate"; then rm "$file" fi done @@ -27,15 +35,15 @@ done # of the all.do script on them / build them if necessary. for file in *.rst *.md; do if test -f "$file"; then - redo-ifchange "${file%.*}.intermediate" - fi -done -for file in *.intermediate; do - if test -f "$file"; then - redo-ifchange "${file%.*}.html" + redo-ifchange "${metadata_dir}/${file%.*}.intermediate" + html_file=${file%.*}.html + redo-ifchange "$html_file" + ln -sf "$cur_dir/$html_file" "${public_dir}/" fi done # Regenerate feed and index pages. Always. -redo "feed.xml" -redo "index.html" +redo feed.xml +ln -sf "$cur_dir"/feed.xml "${public_dir}/" +redo index.html +ln -sf "$cur_dir"/index.html "${public_dir}/"