chiark / gitweb /
my-debmirror: Get sarge and sid explicitly and create symlinks to them from
[bin.git] / bugzilla-show
1 #! /bin/sh -e
2
3 case $1 in
4     subversion)
5         ROOT='http://subversion.tigris.org/issues'
6         ;;
7     openssh)
8         ROOT='http://bugzilla.mindrot.org'
9         ;;
10     warthogs)
11         ROOT='http://bugzilla.warthogs.hbd.com/bugzilla'
12         ;;
13     warty-bugs)
14         ROOT='http://bugzilla.warthogs.hbd.com/warty-bugs'
15         ;;
16     *)
17         echo "Unknown Bugzilla installation '$1'. Recognized are:" >&2
18         echo '  subversion' >&2
19         echo '  openssh' >&2
20         exit 1
21         ;;
22 esac
23
24 ${BROWSER:-w3m} "$ROOT/show_bug.cgi?id=$2"