home · contact · privacy
Move snippet generation for index/feed into separate .do files.
[redo-blog] / processor / index.html.do
index 8bf675139c2bad3907e924c726b5a3084dd7ed2c..af8ba85e225e05599ba7cca418f68ad453b9376f 100644 (file)
@@ -2,7 +2,9 @@
 
 # Pull in global dependencies.
 . ./helpers.sh
-redo-ifchange title
+srcdir=`pwd`
+title_file=title.meta
+redo-ifchange "$title_file"
 
 # Write index head.
 cat << EOF
@@ -10,28 +12,34 @@ cat << EOF
 <html>
 <head>
 EOF
-blog_title=`read_and_escape_file title | head -1`
+blog_title=`read_and_escape_file "$title_file" | head -1`
 printf "<title>%s</title>\n</head>\n<body>\n" "$blog_title"
 printf "<h1>%s</h1>\n<ul>\n" "$blog_title"
 
-# Iterate through entries sorted by lastmod of their source files, write entry
-# list. 
-first_run=0
-files=`ls -1t *.rst *.md | tr '\n' $'\0'`
-oldIFS="$IFS"
-IFS=$'\0'
-for file in $files; do
-  if [ "$first_run" -lt "1" ]; then
-    IFS="$oldIFS"
-    first_run=1
+# Generate link list entries.
+mkdir -p index_snippets
+for file in ./*.rst ./*.md; do
+  if [ -e "$file" ]; then
+    uuid_file="${file%.*}.uuid"
+    redo-ifchange "$uuid_file"
+    published=`stat -c%y "${uuid_file}"`
+    published_unix=$(date -u "+%s%N" -d "${published}")
+    snippet_file="${file%.*}.index_snippet"
+    redo-ifchange "$snippet_file"
+    ln -s "$srcdir/$snippet_file" "./index_snippets/${published_unix}"
   fi
-  intermediate_file="${file%.*}.intermediate"
-  html_file="${file%.*}.html"
-  redo-ifchange "$intermediate_file"
-  redo-ifchange "$html_file"
-  title_html=`cat "$intermediate_file" | head -1`
-  html_file_escaped=`escape_url "$html_file"`
-  printf "<li><a href=\"%s\" />%s</a></li>\n" "$html_file_escaped" "$title_html"
 done
 
+# Write link list.
+for file in ./index_snippets/*; do
+  touch ./index_snippets/list
+  cat "$file" ./index_snippets/list > ./index_snippets/tmp
+  mv ./index_snippets/tmp ./index_snippets/list
+done
+if [ -e "./index_snippets/list" ]; then
+  cat ./index_snippets/list
+fi
+rm -rf index_snippets
+
+# Write index footer.
 printf "</ul>\n</body>\n</html>"