repo: uritools action: commit revision: path_from: revision_from: 2cd1a579e8c4178b8654692a2a921bdc625ff577: path_to: revision_to:
commit 2cd1a579e8c4178b8654692a2a921bdc625ff577 Author: epochDate: Thu Feb 17 01:13:07 2022 +0000 copy_start_nevermind got a "split" option. added rfc-search to install target. wikipedia-specific uristart.conf got another line diff --git a/Makefile b/Makefile
--- a/Makefile +++ b/Makefile @@ -51,4 +51,5 @@ install: all install -t $(PREFIX)/bin shorten install -t $(PREFIX)/bin urnresolve install -t $(PREFIX)/bin urnstart + install -t $(PREFIX)/bin rfc-search chgrp shorten $(PREFIX)/bin/shorten && chmod g+s $(PREFIX)/bin/shorten diff --git a/contrib/wikipedia.uristart.conf b/contrib/wikipedia.uristart.conf
--- a/contrib/wikipedia.uristart.conf +++ b/contrib/wikipedia.uristart.conf @@ -1 +1,2 @@ s https d en.wikipedia.org p /wiki/*: wikipedia-handler "$(printf "%%s\n" '%p' | sed 's|^/wiki/||')" +s https d en.wikipedia.org p /w/index.php q *title=Special*Search* q *search=*: wikipedia-search-handler '%U' diff --git a/copy_start_nevermind.sh b/copy_start_nevermind.sh
--- a/copy_start_nevermind.sh
+++ b/copy_start_nevermind.sh
@@ -22,7 +22,7 @@ if [ "$with" != "$(urigetline -a "$uri" < <(uristart.conf))" ];then
with="[multiple matches]"
fi
-selection="$(printf "start with: %s\nremote_csn\ncopy\nshorten\nunshorten\ntitle\nverbose\nforget\nQR-image\nQR\n%s\n" "${with}" "$(printf "%s\n" "$uri" | uricut | grep -v '^whole')" \
+selection="$(printf "start with: %s\nremote_csn\ncopy\nshorten\nunshorten\ntitle\nverbose\nforget\nsplit\nQR-image\nQR\n%s\n" "${with}" "$(printf "%s\n" "$uri" | uricut | grep -v '^whole')" \
| choose "${prompt}")"
# | choose "$(printf "uri: '%s'\nwill be ran with: %s\n" "$uri" "$(urigetline "$uri")" )" -default start )"
echo "$selection"
@@ -80,6 +80,15 @@ unshorten)
exit 0
;;
+split)
+ ret="$(printf "%s\n" "$uri" | tr ' ' '\n' | tr -s ' ' | choose "split> ")"
+ if [ "$ret" ];then
+ ## do NOT want newlines in the clipboard.
+ printf "%s" "$ret" | xclip -i
+ fi
+ exit 0
+ ;;
+
QR-image)
escaped="$(uriescape "$uri")"
file=~/Pictures/qr-codes/"${escaped}".png
-----END OF PAGE-----