X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=handlers%2F90_brackets.sh;h=1f11cf4448697124a7b4fdfe08a2f64cc42aecae;hb=32a46b9aa404d760772578be04d100ae1c9a55f7;hp=b6b25383f32b4d58e000ac110e3cb0d0b45b64e5;hpb=801a5a731ec85902cd7eba7c4d42e5681e1df40f;p=shellwiki diff --git a/handlers/90_brackets.sh b/handlers/90_brackets.sh index b6b2538..1f11cf4 100755 --- a/handlers/90_brackets.sh +++ b/handlers/90_brackets.sh @@ -1,13 +1,30 @@ #!/bin/sh -# spacial case for bracket pages that are not handled otherwise +# special case for odd pages that are not handled otherwise +# usually those pages look like handlers (i.e. containing brackets) +# but are not # attachment and edit (and really all) handlers should take precedence case "${PATH_INFO}" in - */\[*\]/*) - theme_page "${PATH_INFO}" + */\[view\]) + # explicit view handler for linking + REDIRECT "${_BASE}${PATH_INFO%\[view\]}" + ;; + */) + if [ ! "$(mdfile "${PATH_INFO}")" ]; then + theme_error 404 + elif ! acl_read "${PATH_INFO}"; then + theme_error 403 + else + theme_page "${PATH_INFO}" + fi return 0 ;; + *) + if [ -d "$_DATA/pages${PATH_INFO}/" -o -d "$_EXEC/pages${PATH_INFO}/" ]; then + REDIRECT "${_BASE}${PATH_INFO}/" + fi + ;; esac return 1