X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=tools.sh;h=248a2542b2a86df0d57877cc8330a150a437d88f;hb=2ef55d7fd531e3eaa8cdec5768ebdab7521d7a85;hp=57ae8274cc6d1fde2a5be157531734c8b246832d;hpb=532b6743da019906f2f00575d246823c66ec35fd;p=shellwiki diff --git a/tools.sh b/tools.sh index 57ae827..248a254 100755 --- a/tools.sh +++ b/tools.sh @@ -151,11 +151,12 @@ page_abs(){ } has_tags() { + # true if PAGE is tagges with all TAGS local page="$(page_abs "$1")"; shift 1; local tdir="$_DATA/tags" tag dt df for tag in "$@"; do - tag="$(printf %s "$tag" |awk '{ sub(/^#/, ""); gsub(/[^[:alnum:]]/, "_"); print toupper($0); }')" + tag="$(printf %s "$tag" |awk '{ sub(/^[#!]/, ""); gsub(/[^[:alnum:]]/, "_"); print toupper($0); }')" dt="$(DBM "${tdir}/${tag}" get "${page}")" || return 1 df="$(stat -c %Y "$(mdfile "$page")")" || return 1 if [ "$df" -gt "$dt" ]; then @@ -165,3 +166,49 @@ has_tags() { done return 0 } + +has_tag() { + # true if PAGE is tagged with any of TAGS + local page="$(page_abs "$1")"; shift 1; + local tdir="$_DATA/tags" tag dt df + + for tag in "$@"; do + tag="$(printf %s "$tag" |awk '{ sub(/^[#!]/, ""); gsub(/[^[:alnum:]]/, "_"); print toupper($0); }')" + dt="$(DBM "${tdir}/${tag}" get "${page}")" || continue + df="$(stat -c %Y "$(mdfile "$page")")" || return 1 + if [ "$df" -gt "$dt" ]; then + DBM "${tdir}/${tag}" remove "${page}" + continue + else + return 0 + fi + done + return 1 +} + +page_title() { + local mdfile PAGE_TITLE + + if ! mdfile="$(mdfile "${1:-${PATH_INFO%/*}}")"; then + return 1 + fi + PAGE_TITLE="$( + sed -nE ' + s;^%title[ \t]+([[:graph:]][[:print:]]+)\r?$;\1;p; tQ; + b; :Q q; + ' "$mdfile" + )" + [ ! "${PAGE_TITLE}" ] && PAGE_TITLE="$( + MD_MACROS="" md <"$mdfile" \ + | sed -nE ' + s;^.*]*>(.*>)?([^<]+)(<.*)?.*$;\2;p; tQ; + s;^.*]*>(.*>)?([^<]+)(<.*)?.*$;\2;p; tQ; + b; :Q q; + ' + )" + if [ ! "${PAGE_TITLE}" ]; then + PAGE_TITLE="${1:-${PATH_INFO%/*}}" + PAGE_TITLE="${PAGE_TITLE##*/}" + fi + printf %s\\n "$PAGE_TITLE" +}