X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=widgets.sh;h=896ca6cdfab3d97ebdcfd59374221f618100a336;hb=16ee00076365ddf4a1b85396c6673f2adbf215e8;hp=916f1d755433db26ebe0a8a119186f14ac09651e;hpb=1902cbbff7f9728f303cdb5e3fc37b18eddff4db;p=serve0 diff --git a/widgets.sh b/widgets.sh index 916f1d7..896ca6c 100644 --- a/widgets.sh +++ b/widgets.sh @@ -45,7 +45,7 @@ if [ ! -f "$w_tags" -o ! -f "$w_tagcategories" ] \ done } |sort -rn |cut -f2- |HTML |sed "$w_ascii s- -\n-g; s;\n\n;\n;g;" |tee "$w_tags" )" w_tagcategories="$(printf %s "$w_tags" \ - | cut -sd: -f1 |sort -u \ + | sed -rn '/:/s;^-?([^:]+):.*$;\1;p' |sort -u \ | tee "$w_tagcategories" )" else w_tags="$(cat "$w_tags")" @@ -125,10 +125,11 @@ w_search(){ } w_prefs(){ - local tm tf + local tm tf td tm=''; [ "$(COOKIE mode)" = index ] && tm=' ' tf=''; [ "$(COOKIE fakemp4)" = yes ] && tf=checked + td=''; [ "$(COOKIE downscale)" = yes ] && td=checked printf ' [form #prefs method="POST" action="?a=setprefs" @@ -138,12 +139,14 @@ w_prefs(){ [input #prefs_ps type=number name=pagesize value="%s"][br] [radio "mode" "browse" %s #prefs_modebrowse] [label for=prefs_modebrowse Browse Folders][br] [radio "mode" "index" %s #prefs_modeindex ] [label for=prefs_modeindex View Full Index][br] - [checkbox "fakemp4" "yes" %s #prefs_fmp4] [label for=prefs_fmp4 Fake .MP4 file ending][br] + [checkbox "fakemp4" "yes" %s #prefs_fmp4] [label for=prefs_fmp4 Fake .MP4 file type][br] + [checkbox "downscale" "yes" %s #prefs_downscale] [label for=prefs_downscale Prefer downscale to 480p][br] + [submit "index" "update" Force Index Update][br] [submit "store" "store" Set Cookie] ] ' \ "$w_refuri" "$LISTSIZE" \ - "${tm:-checked}" "${tm:+checked}" "$tf" + "${tm:-checked}" "${tm:+checked}" "$tf" "$td" } w_index(){ @@ -159,7 +162,7 @@ w_index(){ } w_advsearch(){ - local n lbid tag category filter f t + local n lbid tag category filter f t d filter="$(HTML "${FILTER}^" |sed "$w_ascii")" printf '[form #advsearch action=?a=advsearch method=POST @@ -190,6 +193,7 @@ w_advsearch(){ t='' [ "$category" = '*' -a "${f%%|${category}:*}" ] && t=checked [ "$category" != '*' -a ! "${f%%|${category}:*}" ] && t=checked + [ "$category" != '*' -a ! "${f%%|-${category}:*}" ] && t=checked printf '[radio "cat_%i" "%s" .cat %s id="%s"][label for="%s" %s] [select name=tag_%s size=10 multiple' \ @@ -199,12 +203,13 @@ w_advsearch(){ | { [ "$category" = '*' ] && grep -avF ':' || grep -awF "${category}"; } \ | { for n in 1 2 3 4 5 6 7 8 9 0; do read -r line && printf '%s\n' "$line" || break; - done; # path 10 lines through without modification + done; # pass 10 lines through without modification sort; # and sort remaining lines } | while read -r tag; do [ "$tag" ] || continue t=''; [ ! "${f%%*|${tag}|*}" ] && t=checked - printf '[option %s value="%s"\n%s]' "$t" "$tag" "${tag#*:}" + d="${tag#-}"; d="${d#*:}" + printf '[option %s value="%s"\n%s]' "$t" "$tag" "$d" done printf '\n]' done @@ -224,7 +229,7 @@ w_advsearch(){ } w_tagging(){ - local tag category + local tag category d printf '[a href="#multitag" Add Tags / Remove Tags] [div #multitag [input type="hidden" name="ref" value="%s"]' "$w_refuri" printf '[a href="#" Hide][br]' @@ -241,7 +246,8 @@ w_tagging(){ sort; } | while read -r tag; do [ "$tag" ] || continue - printf '[option value="%s"\n%s]' "$tag" "${tag#*:}" + d="${tag#-}"; d="${d#*:}" + printf '[option value="%s"\n%s]' "$tag" "$d" done printf ']]' done