home · contact · privacy
Shorten human-readable time display in article view.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 2 Jan 2017 23:32:58 +0000 (00:32 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 2 Jan 2017 23:32:58 +0000 (00:32 +0100)
README.md
processor/default.html.do
test.sh

index 084b244e31b6fee3887ed38b44321961556697b3..12d7372247c8cbd88117be6399e1be9dbffb05e2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -107,5 +107,4 @@ break things.
 The article title is derived in .md files from a first line prefixed with `%`,
 while all other headings are treated as sub-headings. In .rst files, the title
 is derived from a heading that must be at the top of the document, and be of an
-adornment style (such as underlining with `=`) that must be used only once in
-it.
+adornment style (such as underlining with `=`) used only once in it.
index c44d00b40655b9eeaedc24d742baf9ffe9ca6156..9c8c3014a825151d9d4573b24cf67c75aaf50e8f 100644 (file)
@@ -21,7 +21,7 @@ title_plaintext=$(escape_html "$title_plaintext" | prep_sed)
 body=$(cat "$intermediate_file" | sed 1d | prep_sed)
 datetime_created_unix=$(get_creation_date_from_meta_file_seconds "$meta_file")
 datetime_created_rfc3339=$(date -u "+%Y-%m-%dT%TZ" -d "@${datetime_created_unix}")
-datetime_created_friendly=$(date -u "+%Y-%m-%d %T (UTC)" -d "@${datetime_created_unix}")
+datetime_created_friendly=$(date -u "+%Y-%m-%d %H:%M (UTC)" -d "@${datetime_created_unix}")
 
 # Put data into template.
 template=$(cat "$template_file")
diff --git a/test.sh b/test.sh
index 60ce2bd1f5cee8178a8bf4b52888009fe7f0d864..f7e54e955c0c150207282aca59afd09c51aca9f1 100755 (executable)
--- a/test.sh
+++ b/test.sh
@@ -101,7 +101,7 @@ for file in "$expected_files_dir"/*.html.ignoring; do
   cat "$cmp_file" | \
     sed 's/[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}/IGNORE/g' | \
     sed 's/IGNORET[0-9]\{2\}:[0-9]\{2\}:[0-9]\{2\}Z/IGNORE/g' | \
-    sed 's/IGNORE [0-9]\{2\}:[0-9]\{2\}:[0-9]\{2\} (UTC)/IGNORE/g' \
+    sed 's/IGNORE [0-9]\{2\}:[0-9]\{2\} (UTC)/IGNORE/g' \
     > "$generated_file"
   diff_test "$file" "$generated_file"
 done