. "$_EXEC/acl.sh"
. "$_EXEC/tools.sh"
-from=1
-to=\$
-rev=''
-items=\$
-path_info="$PATH_INFO"
+from='1'; to='$'; rev=''; items='$'
while [ $# -gt 0 ]; do case $1 in
--from) from="$2"; shift 2;;
exit 1
fi
-printf '<div class="macro include wrapper">'
page_glob "$page" \
| sort $rev \
| sed "${items}q" \
| while read glob; do
- case $glob in
- /*) export PATH_INFO="$(PATH "$glob")";;
- *) export PATH_INFO="$(PATH "$path_info/$glob")";;
- esac
- acl_read || continue
- if [ -f "$_DATA/pages/$PATH_INFO/#page.md" ]; then
- mdfile="$_DATA/pages/$PATH_INFO/#page.md"
- elif [ -f "$_EXEC/pages/$PATH_INFO/#page.md" ]; then
- mdfile="$_EXEC/pages/$PATH_INFO/#page.md"
- else
- continue
- fi
+ page="$(page_abs "$glob")"
+ acl_read "$page" || continue
+ mdfile="$(mdfile "$page")" || continue
hglob="$(HTML "$glob")"
refpfx="$(printf %s\\n "$hglob" |sed 's;[\;&\;];\\&;g')"
- printf '<div class="macro include page"><article class="include" id="include_%s">' "${hglob}"
- ( cd -- "${mdfile%/*}"
+ printf '<div class="macro include">
+ <a class="include link" href="%s">%s</a>
+ <article class="include" id="include_%s">' \
+ "${hglob}" "${hglob}" "${hglob}"
+ ( # PATH_INFO may be used by macros in the included page
+ export PATH_INFO="$page"
+ cd -- "${mdfile%/*}/"
sed -n "${from},${to}p" <"$mdfile" \
| md \
| grep -vx ''
s;(<[^>]+ )(href|src)="([^#/"][^"]*)"([^>]*>);\1\2="'"${refpfx}"'\3"\4;g
s;(<[^>]+ )(href|src)="/#safe/([^"]*)"([^>]*>);\1\2="\3"\4;g
'
- printf '</article>'
- printf '<a class="include link" href="%s">%s</a>' "${hglob}" "${hglob}"
- printf '</div>'
+ printf '</article></div>'
done
-printf '</div>'