]> Sergey Matveev's repositories - zk.zsh.git/blobdiff - zk.zsh
Do not interpret escape sequences in HTML
[zk.zsh.git] / zk.zsh
diff --git a/zk.zsh b/zk.zsh
index 94653b1965db5edfa3a39cc8060f7fc6e7a84085..cfc95a4796212116896c973267ab707a6c74552f 100755 (executable)
--- a/zk.zsh
+++ b/zk.zsh
@@ -8,9 +8,9 @@ usage() {
     cat >&2 <<EOF
 Usage:
   \$ $0:t links PAGE
-    Print the PAGE's links
+    Print PAGE's links
   \$ $0:t backs PAGE
-    Print who backlinks to the PAGE
+    Print PAGE's backlinks
   \$ $0:t htmls DIR
     Generate HTMLs in DIR
 EOF
@@ -19,7 +19,6 @@ EOF
 
 [[ $# -eq 2 ]] || usage
 
-# Collect all pages
 setopt GLOB_STAR_SHORT
 zmodload -F zsh/stat b:zstat
 typeset -A pages
@@ -30,23 +29,24 @@ for p (**(.)) {
 typeset -a cats
 for p (**(/)) cats=($p $cats)
 
-# Determine the links between them
+zmodload zsh/mapfile
 typeset -A links
 typeset -A backs
-typeset -aU words
+typeset -aU ws
 for p (${(k)pages}) {
-    words=()
-    for w (`< $p`) {
-        [[ $w =~ "\[(.*)\]" ]] || continue
+    ws=()
+    for w (${=mapfile[$p]}) {
+        [[ $w =~ "\[([^] ]+)\]" ]] || continue
         w=${match[1]}
         [[ ${pages[$w]} ]] || {
             [[ $ZK_SHOW_MISSING ]] && print "missing $w"
             continue
         }
-        words=($words $w)
+        ws=($ws $w)
     }
-    [[ $words ]] && links[$p]=${(j: :)words}
+    [[ $ws ]] && links[$p]=${(j: :)ws}
 }
+unset ws
 for p ws (${(kv)links}) {
     for w (${=ws}) backs[$w]="$p ${backs[$w]}"
 }
@@ -74,22 +74,31 @@ getrel() {
 genHTML() {
     local page=$1
     local data p
-    [[ $# -eq 1 ]] && data=`< $page` || data=$2
+    [[ $# -eq 1 ]] && data=${mapfile[$page]} || data=$2
     data=${data//&/&amp;}
     data=${data//</&lt;}
     data=${data//>/&gt;}
-    for p (${=links[$page]}) {
+    local _links=(${(oi)=links[$page]})
+    for p ($_links) {
         getrel $page $p
         data="${data//\[${p}\]/<a href=\"${REPLY}.html\">[$p]</a>}"
     }
-    print "<\!DOCTYPE html>
+    print -r "<\!DOCTYPE html>
 <html><head><title>$page (${pages[$page]})</title></head><body><pre>
 $data
 </pre>"
+    if [[ $_links ]]; then
+        print "<hr/>Links:<ul>"
+        for p ($_links) {
+            getrel $page $p
+            print "<li><a href=\"${REPLY}.html\">$p</a> <sup>${pages[$p]}</sup></li>"
+        }
+        print "</ul>"
+    fi
     local bs=(${(oi)=${backs[$page]}})
     if [[ $bs ]]; then
-        print "<hr/><ul>"
-        for p (${(oi)=${backs[$page]}}) {
+        print "<hr/>Backlinks:<ul>"
+        for p ($bs) {
             getrel $page $p
             print "<li><a href=\"${REPLY}.html\">$p</a> <sup>${pages[$p]}</sup></li>"
         }
@@ -99,7 +108,7 @@ $data
 }
 
 zmodload -F zsh/datetime b:strftime
-now=$(strftime "%F %T")
+strftime -s now "%F %T"
 
 genIndex() {
     local p