]> git.madduck.net Git - etc/zsh.git/blobdiff - .zsh/func/giturl

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge branch 'master' of ssh://git.madduck.net/madduck/pub/etc/zsh
[etc/zsh.git] / .zsh / func / giturl
index 61532dc94b5eab3814163d16d1f3815f2d3af499..c85674a6d1fc970d894cc3213ca1562101f65c6f 100755 (executable)
@@ -2,7 +2,8 @@
 #
 # func/giturl
 #
-# a convenient way to display the gitweb URL of a commit-ish
+# A convenient way to display the gitweb URL of a commit-ish, as well as the
+# base URL and tree. Also for each argument, the tree or blob URL is printed.
 #
 # Copyright © 2010 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
@@ -15,15 +16,18 @@ local remote; remote=$(git config --get remote.origin.url)
 local part gitweb_base oldstyle
 oldstyle=0
 case "$remote" in
-  madduck:pub/*)
+  madduck:pub/*|ssh://git.madduck.net/madduck/pub/*)
     gitweb_base=http://git.madduck.net/v
     part="${remote#madduck:pub/}"
+    part="${part#ssh://git.madduck.net/madduck/pub/}"
+    part="${part%.git}.git"
     ;;
   debian:*|*://git.debian.org/git/*|*@git.debian.org/git/*)
     gitweb_base=http://git.debian.org
     part="${remote#debian:}"
     part="${part#*://git.debian.org/git/}"
     part="${part#*@git.debian.org/git/}"
+    part="${part%.git}.git"
     oldstyle=1
     ;;
   *)
@@ -36,6 +40,20 @@ local hash
 hash=$(git rev-parse HEAD)
 
 case "$oldstyle" in
-  0) echo "$gitweb_base/$part/commitdiff/$hash";;
-  *) echo "$gitweb_base/?p=$part;a=commitdiff;h=$hash";;
+  0)
+    echo "$gitweb_base/$part/commitdiff/$hash"
+    echo "$gitweb_base/$part/tree/HEAD"
+    for i in $@; do
+      [ -f "$i" ] && echo "$gitweb_base/$part/blob/HEAD:/$i"
+      [ -d "$i" ] && echo "$gitweb_base/$part/tree/HEAD:/$i"
+    done
+    ;;
+  *)
+    echo "$gitweb_base/?p=$part;a=commitdiff;h=$hash"
+    echo "$gitweb_base/?p=$part;a=tree;h=HEAD"
+    for i in $@; do
+      [ -f "$i" ] && echo "$gitweb_base/?p=$part;a=blob;h=HEAD;f=$i"
+      [ -d "$i" ] && echo "$gitweb_base/?p=$part;a=tree;h=HEAD:f=$i"
+    done
+    ;;
 esac