+build_entry () {
+ file="${1}"
+ uuidfile="${2}"
+ published="${3}"
+ intermediate_file="${file%.*}.intermediate"
+ htmlfile=`escape_url "${file%.*}.html"`
+ redo-ifchange "$uuid_file"
+ redo-ifchange "$intermediate_file"
+ lastmod=`stat -c%y "$file"`
+ lastmod_rfc3339=`date -u "+%Y-%m-%dT%TZ" -d "$lastmod"`
+ title=`read_and_escape_file "$intermediate_file" | head -1`
+ uuid=`read_and_escape_file "$uuid_file" | head -1`
+ body=`read_and_escape_file "$intermediate_file" | sed 1d`
+ published_rfc3339=`date -u "+%Y-%m-%dT%TZ" -d "${published}"`
+ printf "<entry>\n"
+ printf "<title type=\"html\">%s</title>\n" "$title"
+ printf "<id>urn:uuid:%s</id>\n" "$uuid"
+ printf "<updated>%s</updated>\n" "$lastmod_rfc3339"
+ printf "<published>%s</published>\n" "$published_rfc3339"
+ printf "<link href=\"%s%s\" />\n" "$basepath" "${htmlfile#\./}"
+ printf "<content type=\"html\">\n%s\n</content>\n" "$body"
+ printf "</entry>"
+}
+