printf '[div .list .file
[a href="%s" [img src="%s?a=thumbnail"][label %s]]
[span .time %i:%imin] [span .dim %ix%i] %s
+ [checkbox "select" "%s" id="select_%s" form="multitag"][label for="select_%s" +]
]' \
"$path" "$path" "$name" \
"$((length / 60))" "$((length % 60))" \
"$width" "$height" \
- "$(printf %s\\n "${tags#tags=}" |tr , ' ' |xargs printf '[span .tag %s]')"
+ "$(printf %s\\n "${tags#tags=}" |tr , ' ' |xargs printf '[span .tag %s]')" \
+ "$path" "$path" "$path"
else
printf '[div .list .file [a href="%s" [img src="%s?a=thumbnail"][label %s]]]' \
"$path" "$path" "$name"
printf ']'
}
+w_tagging(){
+ printf '[div #multitag [input type="hidden" name="ref" value="%s"]' "$(HTML "$REQUEST_URI")"
+ printf '[a href="#" Hide][br]'
+ find "$_DATA/$ITEM" -path '*/.index/meta' \
+ -exec cut -f4 '{}' + \
+ | cut -d= -f2- |tr , '\n' | sort -u \
+ | while read tag; do
+ cat_old="${category}"; category="${tag%%:*}"
+ [ "$category" = "$tag" ] && category="(none)"
+ [ "$cat_old" -a "$cat_old" != "$category" ] && printf ']]'
+ [ "$cat_old" != "$category" ] \
+ && printf '[fieldset [legend %s:][select name="tag" size=4 multiple' $(HTML "$category")
+ printf '[option value="%s" %s]' "$(HTML "$tag")" "$(HTML "${tag#*:}")"
+ done
+ printf ']][fieldset [legend New:][textarea name=newtag\n][button type=Submit Add Tags]]]'
+}
+
printf 'Content-Type: text/html;charset=utf-8\r\n\r\n'
"$_EXEC/cgilite/html-sh.sed" <<-EOF
]
$(w_prefs)
- $(list_items \
- | list_paginate
- )
- [div #editing
- $(w_index)
+ [form method=POST action="?a=multitag"
+ $(list_items \
+ | list_paginate
+ )
+ [div #editing
+ [a href="#multitag" Add Tags] $(w_tagging)
+ $(w_index)
+ ]
]
] ]
EOF
body {
color: white;
background-color: black;
+ min-height: 100%;
}
-#prefs, #bookmarks {
+#prefs, #bookmarks, #multitag {
display: block;
overflow: hidden;
height: 0;
+ text-align: left;
}
#prefs:target,
+#multitag:target,
#bookmarks:target {
height: auto;
+ overflow: visible;
}
#navigation{
}
#prefs:target a[href="#"] {
- position: absolute;
- right: .25em; margin-top: -1.5em;
+ display: block;
+ position: relative;
+ top: -1.5em; right: -.5em;
+ margin-left: 4em;
+ text-align: right;
font-size: 1.5em;
padding: 0 .25em;
background-color: #333;
max-width: 85%;
}
-.itemlist { display: block; overflow: hidden; }
.list {
position: relative;
display: inline-block;
word-wrap: break-word;
vertical-align: top;
color: black;
+ overflow: hidden;
}
.list.dir {
padding: .5em 1em;
background-color: rgba(0,0,0,.625);
}
+.list.file .time,
+.list.file .dim,
+.list.file .tag,
+.list.file label {
+ display: inline-block;
+ margin-top: .125em;
+}
.list.file .time,
.list.file .dim {
color: white;
padding: .125em .5em;
}
+.list.file input[type="checkbox"] { display: none; }
+.list.file input[type="checkbox"] + label {
+ border: 1px solid;
+ border-radius: .125em;
+ padding: 0 .25em;
+ background-color: #FBB;
+}
+.list.file input[type="checkbox"]:checked + label {
+ background-color: #4F4;
+}
+
.pagination {
display: block;
text-align: center;
}
#editing {
- position: absolute;
- width: 100%; bottom: 0;
+ text-align: left;
+ width: 100%;
background-color: #333;
border-top: 1px solid;
padding: .25em;
#index label:first-of-type { font-weight: bold; }
#index input, #index button { margin-left: 1em;}
+
+#multitag:target a[href="#"] {
+ position: relative;
+ top: -1em;
+ padding-right: 10em;
+ background-color: #333;
+}
+#multitag fieldset{
+ display: inline-block;
+ width: 25%; min-width: 250px;
+ vertical-align: top;
+ padding: 0 .25em;
+ border: none;
+}
+#multitag fieldset * { width: 100%; }
+#multitag fieldset button { width: 50%; }