X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=widgets.sh;h=916f1d755433db26ebe0a8a119186f14ac09651e;hb=fd407665aaedc1bea44ac34ec1440fa2e9cf8795;hp=27f5c5b4957523711fea4ef4b6dd182c17093787;hpb=515c2d0ff3d2858990a1d8343467191b8484268f;p=serve0 diff --git a/widgets.sh b/widgets.sh index 27f5c5b..916f1d7 100644 --- a/widgets.sh +++ b/widgets.sh @@ -147,8 +147,8 @@ w_prefs(){ } w_index(){ - [ -d "$_DATA/$ITEM/.index" ] && return 1 || printf ' - [form #index method="POST" action="?a=multitag" + printf ' + [form #index method="POST" action="?a=spawnindex" [hidden "ref" "%s"] [label Set up for Index view: ] [checkbox "recursive" "yes" #spawn_recursive] [label for=spawn_recursive Include subdirectories] @@ -225,13 +225,14 @@ w_advsearch(){ w_tagging(){ local tag category - printf '[a href="#multitag" Add Tags] + printf '[a href="#multitag" Add Tags / Remove Tags] [div #multitag [input type="hidden" name="ref" value="%s"]' "$w_refuri" printf '[a href="#" Hide][br]' printf 'Tags\n%s\n' "$w_tagcategories" \ | while read -r category; do - printf '[fieldset [legend %s:][select name=tag size=4 multiple' "$category" + [ "$category" ] || continue + printf '[fieldset [legend %s:][select name=tag size=4 multiple\n' "$category" printf %s "$w_tags" \ | { [ "$category" = 'Tags' ] && grep -avF ':' || grep -awF "${category}"; } \ | { for n in 1 2 3 4 5 6 7 8 9 0; do @@ -245,5 +246,7 @@ w_tagging(){ printf ']]' done - printf '[fieldset [legend New:][textarea name=newtag\n][button type=Submit Add Tags]]]' + printf '[fieldset [legend New:][textarea name=newtag\n] + [submit "op" "del" Remove Tags][submit "op" "add" Add Tags] + ]]' }