home · contact · privacy
Document a bug and code problem to fix later.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 20 Nov 2016 00:41:31 +0000 (01:41 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 20 Nov 2016 00:41:31 +0000 (01:41 +0100)
README.md
processor/feed.xml.do
processor/index.html.do

index 80b13e80b117b5d80f6c5af5f9f18bcd535a6e66..eb2b31824db65e0c0d1a73fcbe1fa153d0934dfd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -20,8 +20,8 @@ Run ./test.sh.
 setup
 -----
 
-To set up a directory with symbolic links to the relevant .do files and other
-important files, run ./add_dir.sh DIRECTORY.
+To set up a directory with symbolic links to the relevant files in ./processor/,
+run ./add_dir.sh DIRECTORY.
 
 You can then enter the directory and run redo there. This will generate article
 .html files from all .md and .rst files, plus a ./index.html, and a ./feed.xml.
@@ -29,3 +29,10 @@ You can then enter the directory and run redo there. This will generate article
 also be generated a .uuid and a .intermediate file; furthermore, files with
 metadata used in ./feed.xml and ./index.html will be built and can be edited to
 customize the blog: ./url, ./author, ./uuid, ./title.) 
+
+bugs
+----
+
+Due to bad shell scripting in ./processor/index.html.do and
+./processor/feed.xml.do (see the FIXME notes there), source files whose names
+contain "$" break the redo processing.
index 14ead597b0f7d88f25d64a02af04683493483ef8..4f67b271657b210680b3f65a5951ca25b4a67c94 100644 (file)
@@ -35,6 +35,8 @@ printf "<id>urn:uuid:%s</id>\n" "$uuid"
 
 # Iterate through most recent entries (go by lastmod date of source files) to
 # build feed head "updated" element, and individual entries.
+# FIXME: This ls parsing is a bad way to loop through the sorted files. Besides,
+# $('\0') is a bashism.
 first_run=0
 files=`ls -1t *.rst *.md | head -10 | tr '\n' $'\0'`
 oldIFS="$IFS"
index 2b71ffb486cd624f39c3eb12e9dcaaeb3c93e69c..e436a4a67beaeb577738cf3d3e5c0ca1366516f3 100644 (file)
@@ -15,8 +15,9 @@ 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. 
+# Iterate through entries sorted by lastmod of their source files, write entry.
+# FIXME: This ls parsing is a bad way to loop through the sorted files. Besides,
+# $('\0') is a bashism.
 first_run=0
 files=`ls -1t *.rst *.md | tr '\n' $'\0'`
 oldIFS="$IFS"