nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | #!/bin/bash |
2 | # |
||
3 | # Given a Wireshark bug ID, fetch its title and prepare an entry suitable |
||
4 | # for pasting into the release notes. Requires curl, grep, and sed. |
||
5 | # |
||
6 | # Usage: gen-bugnote <bug number> |
||
7 | # |
||
8 | # Copyright 2013 Gerald Combs |
||
9 | # |
||
10 | # This program is free software; you can redistribute it and/or |
||
11 | # modify it under the terms of the GNU General Public License |
||
12 | # as published by the Free Software Foundation; either version 2 |
||
13 | # of the License, or (at your option) any later version. |
||
14 | # |
||
15 | # This program is distributed in the hope that it will be useful, |
||
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
18 | # GNU General Public License for more details. |
||
19 | # |
||
20 | # You should have received a copy of the GNU General Public License |
||
21 | # along with this program; if not, write to the Free Software |
||
22 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||
23 | # |
||
24 | |||
25 | bz_url_pfx="https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=" |
||
26 | bug_id="$1" |
||
27 | |||
28 | recode_cmd="cat" |
||
29 | hash recode > /dev/null 2>&1 && recode_cmd="recode html..utf8" |
||
30 | |||
31 | case "$OSTYPE" in |
||
32 | darwin*) |
||
33 | clipboard_cmd="pbcopy -Pascii" |
||
34 | ;; |
||
35 | cygwin*) |
||
36 | clipboard_cmd="cat > /dev/clipboard" |
||
37 | ;; |
||
38 | linux*) |
||
39 | clipboard_cmd="xsel --clipboard" |
||
40 | ;; |
||
41 | *) |
||
42 | echo "Unable to copy to clipboard" |
||
43 | clipboard_cmd="cat > /dev/null" |
||
44 | ;; |
||
45 | esac |
||
46 | |||
47 | if [ -z "$bug_id" ] ; then |
||
48 | echo "Usage: " `basename $0` " <bug id>" |
||
49 | exit 1 |
||
50 | fi |
||
51 | |||
52 | bug_title=` |
||
53 | curl -s -o - "https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=$bug_id" | |
||
54 | grep -i '<title>' | |
||
55 | sed \ |
||
56 | -e 's:.*<title>.*ndash; ::' \ |
||
57 | -e 's:</title>.*::' \ |
||
58 | -e 's/[^\.]$/&./' \ |
||
59 | ` |
||
60 | |||
61 | echo -e "* $bug_title (ws-buglink:$bug_id[])\n" \ |
||
62 | | $recode_cmd \ |
||
63 | | $clipboard_cmd |
||
64 | |||
65 | echo "Copied $bug_id: $bug_title" |