X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=themes%2Fdefault.sh;h=0b850078a06c321a6892813b1d129b8b1fabd9af;hb=ce515e0087d8fcfc980f584db82cb0cf9076c3a9;hp=e9e9d73f195466c6bfcf2433dfe0dcb8767aab60;hpb=210e62ec5d92672b5471c10a47a886d5cd6d1238;p=shellwiki diff --git a/themes/default.sh b/themes/default.sh index e9e9d73..0b85007 100755 --- a/themes/default.sh +++ b/themes/default.sh @@ -24,15 +24,20 @@ theme_pagemenu(){ if acl_write "$page"; then printf ' ' fi } theme_page(){ - local page="$1" title - title="${page%/}"; title="${title##*/}" + local page="$1" title="$2" + title="$(HTML "${title:-"${page}"}")" # Important! Web Server response including newline printf "%s\r\n" "Content-Type: text/html; charset=utf-8" "" @@ -41,14 +46,18 @@ theme_page(){ $(theme_head) - $(HTML "${title}") - + ${title} + $(theme_header)
$(theme_pagemenu) -
- $(wiki "$page" || printf 'Error while loading page
function "wiki" of index.sh returned with an error.') -
+ $(if [ "$page" = '-' ]; then + cat + else + printf '
' + wiki "$page" + printf '
' + fi)
$(theme_footer) @@ -61,25 +70,14 @@ theme_editor(){ [ "$template" ] && acl_read "$template" || template="$page" - # Important! Web Server response including newline - printf "%s\r\n" "Content-Type: text/html; charset=utf-8" "" - - cat <<-EOF - - - $(theme_head) - $(HTML "${title}") - - $(theme_header) -
- - - - -
- $(theme_footer) - + theme_page - "Editor: $title" <<-EOF +
+ + + + +
EOF } @@ -87,88 +85,52 @@ theme_revisions(){ local page="$1" title title="${page%/}"; title="${title##*/}" - # Important! Web Server response including newline - printf "%s\r\n" "Content-Type: text/html; charset=utf-8" "" - - cat <<-EOF - - - $(theme_head) - Revisions $(HTML "${title}") - - $(theme_header) -
- $("$_EXEC/macros/revisions" "$page") -
- $(theme_footer) - - EOF + "$_EXEC/macros/revisions" "$page" \ + | theme_page - "Revisions: $title" } theme_attachments(){ local page="$1" title title="${page%/}"; title="${title##*/}" - # Important! Web Server response including newline - printf "%s\r\n" "Content-Type: text/html; charset=utf-8" "" - if acl_write "$page"; then - cat <<-EOF - - - $(theme_head) - Attachments $(HTML "${title}") - - $(theme_header) -
-
- - - -
- -
-
- $(theme_footer) - + theme_page - "Attachments: $title" <<-EOF +
+ + + +
+ +
EOF else - cat <<-EOF - - - $(theme_head) - Attachments $(HTML "${title}") - - $(theme_header) -
- -
- $(theme_footer) - + theme_page - "Attachments: $title" <<-EOF + EOF fi }