X-Git-Url: https://plomlompom.com/repos/?p=redo-blog;a=blobdiff_plain;f=processor%2Ffeed.xml.do;h=2b4396957954b5eab9c021a0d3695c1fb2a7dfcb;hp=16011f3d744331f3142030554660e6a5b02a7178;hb=6ee5e0e20b722b1d4e72dfa52a19ec684cb30410;hpb=4373137de8ac6ad8731e6828a9876de9efe0a82e diff --git a/processor/feed.xml.do b/processor/feed.xml.do index 16011f3..2b43969 100644 --- a/processor/feed.xml.do +++ b/processor/feed.xml.do @@ -1,10 +1,12 @@ #!/bin/sh # Pull in global dependencies. -. ./helpers.sh -author_file=author.meta -uuid_file=uuid.meta -title_file=title.meta +metadata_dir=.meta +. "$metadata_dir"/helpers.sh +author_file="$metadata_dir"/author +uuid_file="$metadata_dir"/uuid +title_file="$metadata_dir"/title +url_file="$metadata_dir"/url redo-ifchange "$url_file" redo-ifchange "$author_file" redo-ifchange "$uuid_file" @@ -13,10 +15,11 @@ redo-ifchange "$title_file" # Build some variables. XML-escape even file contents that should not contain # dangerous characters, just to avoid any XML trouble. srcdir=`pwd` -basepath=$(get_basepath) +basepath=$(get_basepath "${metadata_dir}/") title=`read_and_escape_file "$title_file" | head -1` author=`read_and_escape_file "$author_file" | head -1` uuid=`read_and_escape_file "$uuid_file" | head -1` +tmp_snippets_dir=.tmp_feed_snippets # Write majority of feed head. cat << EOF @@ -30,21 +33,21 @@ printf "%s\n" "$author" printf "urn:uuid:%s\n" "$uuid" # Generate feed entry snippets. -mkdir -p feed_snippets +mkdir -p "$tmp_snippets_dir" for file in ./*.rst ./*.md; do if [ -e "$file" ]; then - uuid_file="${file%.*}.uuid" + uuid_file="${metadata_dir}/${file%.*}.uuid" redo-ifchange "$uuid_file" published=`stat -c%y "${uuid_file}"` published_unix=$(date -u "+%s%N" -d "${published}") - snippet_file="${file%.*}.feed_snippet" + snippet_file=./${metadata_dir}/"${file%.*}.feed_snippet" redo-ifchange "$snippet_file" - ln -s "$srcdir/$snippet_file" "./feed_snippets/${published_unix}" + ln -s "$srcdir/$snippet_file" "./${tmp_snippets_dir}/${published_unix}" fi done # Derive feed modification date from snippets. -mod_dates=$(grep -hE "^" ./feed_snippets/* | sed -E 's/<.?updated>//g') +mod_dates=$(grep -hE "^" ./${metadata_dir}/*.feed_snippet | sed -E 's/<.?updated>//g') last_mod_unix=0 for date in $mod_dates; do date_unix=$(date -u "+%s" -d "${date}") @@ -56,11 +59,11 @@ lastmod_rfc3339=`date -u "+%Y-%m-%dT%TZ" -d "@${last_mod_unix}"` printf "%s\n\n" "$lastmod_rfc3339" # Write feed entries. -for file in ./feed_snippets/*; do +for file in ./${tmp_snippets_dir}/*; do cat "${file}" printf "\n" done -rm -rf feed_snippets +rm -rf "$tmp_snippets_dir" # Write feed foot. printf ""