X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=widgets.sh;h=5cc4db9a7ec03d2526a5e6217896ee20a1b6ad48;hb=a6d47d63a2ae5495d06c4514be273d5168b71855;hp=b7767c0299afec316cd11bbc7259717b93bdd2ad;hpb=dfdfcfb7ac57a823e639a19d268436753385cbed;p=serve0 diff --git a/widgets.sh b/widgets.sh index b7767c0..5cc4db9 100644 --- a/widgets.sh +++ b/widgets.sh @@ -1,5 +1,15 @@ #!/bin/sh +[ -n "$include_widgets" ] && return 0 +include_widgets="$0" + +. "$_EXEC/cgilite/storage.sh" + +w_tags="$(find "$_DATA/" -path '*/.index/meta' -print0 \ + | xargs -r0 cut -f4 \ + | cut -d= -f2- |tr , '\n' | sort -u)" +w_tags="$(UNSTRING "$w_tags")" + w_search(){ printf ' [form #search method=GET action=? @@ -16,6 +26,7 @@ w_search(){ } w_prefs(){ + local fakemp4 mode fakemp4="$(COOKIE fakemp4)" mode="$(COOKIE mode)" printf ' @@ -46,3 +57,28 @@ w_index(){ ] ' "$(HTML "$REQUEST_URI")" } + +w_tagging(){ + local tag category + printf '[div #multitag [input type="hidden" name="ref" value="%s"]' "$(HTML "$REQUEST_URI")" + printf '[a href="#" Hide][br]' + + printf '[fieldset [legend %s:][select name=tag size=4 multiple' "Tags" + printf %s "$w_tags" |grep -vF ":" |grep -vxF '' \ + | while read -r tag; do + printf '[option value="%s" %s]' "$(HTML "$tag")" "$(HTML "$tag")" + done + printf ']]' + + printf %s "$w_tags" |cut -sd: -f1 |sort -u \ + | while read -r category; do + printf '[fieldset [legend %s:][select name=tag size=4 multiple' "$(HTML "$category")" + printf %s "$w_tags" |grep -wF "${category}" \ + | while read -r tag; do + printf '[option value="%s" %s]' "$(HTML "$tag")" "$(HTML "${tag#*:}")" + done + printf ']]' + done + + printf '[fieldset [legend New:][textarea name=newtag\n][button type=Submit Add Tags]]]' +}