X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Furltools%2Furltools.plugin.zsh;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Furltools%2Furltools.plugin.zsh;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=b443e5027bbc21a37150eb175b1f69a0da508e8a;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/urltools/urltools.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/urltools/urltools.plugin.zsh deleted file mode 100644 index b443e50..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/urltools/urltools.plugin.zsh +++ /dev/null @@ -1,42 +0,0 @@ -# URL Tools -# Adds handy command line aliases useful for dealing with URLs -# -# Taken from: -# https://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/ - -if [[ $(whence $URLTOOLS_METHOD) = "" ]]; then - URLTOOLS_METHOD="" -fi - -if [[ $(whence node) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xnode" ) ]]; then - alias urlencode='node -e "console.log(encodeURIComponent(process.argv[1]))"' - alias urldecode='node -e "console.log(decodeURIComponent(process.argv[1]))"' -elif [[ $(whence python3) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xpython" ) ]]; then - alias urlencode='python3 -c "import sys; del sys.path[0]; import urllib.parse as up; print(up.quote_plus(sys.argv[1]))"' - alias urldecode='python3 -c "import sys; del sys.path[0]; import urllib.parse as up; print(up.unquote_plus(sys.argv[1]))"' -elif [[ $(whence python2) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xpython" ) ]]; then - alias urlencode='python2 -c "import sys; del sys.path[0]; import urllib as ul; print ul.quote_plus(sys.argv[1])"' - alias urldecode='python2 -c "import sys; del sys.path[0]; import urllib as ul; print ul.unquote_plus(sys.argv[1])"' -elif [[ $(whence xxd) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xshell" ) ]]; then - function urlencode() {echo $@ | tr -d "\n" | xxd -plain | sed "s/\(..\)/%\1/g"} - function urldecode() {printf $(echo -n $@ | sed 's/\\/\\\\/g;s/\(%\)\([0-9a-fA-F][0-9a-fA-F]\)/\\x\2/g')"\n"} -elif [[ $(whence ruby) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xruby" ) ]]; then - alias urlencode='ruby -r cgi -e "puts CGI.escape(ARGV[0])"' - alias urldecode='ruby -r cgi -e "puts CGI.unescape(ARGV[0])"' -elif [[ $(whence php) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xphp" ) ]]; then - alias urlencode='php -r "echo rawurlencode(\$argv[1]); echo \"\n\";"' - alias urldecode='php -r "echo rawurldecode(\$argv[1]); echo \"\\n\";"' -elif [[ $(whence perl) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xperl" ) ]]; then - if perl -MURI::Encode -e 1&> /dev/null; then - alias urlencode='perl -MURI::Encode -ep "uri_encode($ARGV[0]);"' - alias urldecode='perl -MURI::Encode -ep "uri_decode($ARGV[0]);"' - elif perl -MURI::Escape -e 1 &> /dev/null; then - alias urlencode='perl -MURI::Escape -ep "uri_escape($ARGV[0]);"' - alias urldecode='perl -MURI::Escape -ep "uri_unescape($ARGV[0]);"' - else - alias urlencode="perl -e '\$new=\$ARGV[0]; \$new =~ s/([^A-Za-z0-9])/sprintf(\"%%%02X\", ord(\$1))/seg; print \"\$new\n\";'" - alias urldecode="perl -e '\$new=\$ARGV[0]; \$new =~ s/\%([A-Fa-f0-9]{2})/pack(\"C\", hex(\$1))/seg; print \"\$new\n\";'" - fi -fi - -unset URLTOOLS_METHOD