X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=processor%2Fmetadata%2Fdefault.feed_snippet.do;h=9a9b7ab218ea96a5adcf4bc17e37b5d8f41f5bae;hb=c841d869ec1eaa8107bece1385038339aa6cfd3e;hp=8dca59b68f3bc67bc816dc5ad858b020af87e9a9;hpb=ff5b37d8bc4cfba8f1db69a279da887accaa0296;p=redo-blog diff --git a/processor/metadata/default.feed_snippet.do b/processor/metadata/default.feed_snippet.do index 8dca59b..9a9b7ab 100644 --- a/processor/metadata/default.feed_snippet.do +++ b/processor/metadata/default.feed_snippet.do @@ -1,5 +1,11 @@ #!/bin/sh +# Handle URL from .links file. +prep_url() { + url=$(escape_html "$1") + printf "\n" "$url" +} + # Pull in dependencies. . ../helpers.sh src_file=$(get_source_file "$1") @@ -7,6 +13,8 @@ meta_file="${1%.feed_snippet}.automatic_metadata" redo-ifchange "$meta_file" intermediate_file="${1%.feed_snippet}.intermediate" redo-ifchange "$intermediate_file" +replies_file="${src_file%.*}.links" +redo-ifchange "$replies_file" # Get variables, write entry. html_file=$(escape_url "${1%.feed_snippet}.html") @@ -17,11 +25,13 @@ uuid=$(get_uuid_from_meta_file "$meta_file") published_unix=$(get_creation_date_from_meta_file_seconds "$meta_file") published_rfc3339=$(date -u "+%Y-%m-%dT%TZ" -d "@${published_unix}") body=$(read_and_escape_file "$intermediate_file" | sed 1d) +replies=$(while read line; do prep_url "$line"; done < "$replies_file") printf "\n" printf "%s\n" "$title" printf "urn:uuid:%s\n" "$uuid" printf "%s\n" "$lastmod_rfc3339" printf "%s\n" "$published_rfc3339" -printf "\n" "$(get_basepath)" "${html_file}" -printf "\n%s\n\n" "$body" +printf "" "$(get_basepath)" "${html_file}" +printf "%s" "$replies" +printf "\n\n%s\n\n" "$body" printf "\n"