]> the.earth.li Git - htag.git/blob - plugins/25asktag
Import Upstream version 0.0.19
[htag.git] / plugins / 25asktag
1 #!/usr/bin/perl -w
2
3 # Copyright (C) 2000-2001 Simon Huggins
4 # asktag chooses a tag like catsig chooses a sig.
5
6 # This program is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by the Free
8 # Software Foundation; either version 2 of the License, or (at your option)
9 # any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 # for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc., 59
18 # Temple Place, Suite 330, Boston, MA 02111-1307  USA
19
20 use strict;
21
22 return if $cfg{'notag'};
23
24 open(SIG, "<$cfg{'tmpsigfile'}") or htagdie "$0: Could not open $cfg{'tmpsigfile'}: $!\n";
25 my @sig=<SIG>;
26 close(SIG);
27
28 chomp $sig[-1];
29 print STDERR @sig;
30 print STDERR "\n\nOK? ([Y]es/(n)ew Tag/(q)uit)\n";
31 $_ = <STDIN>;
32 return 255 if /^q(?:uit)?/i;
33 return     if /^(?:y(?:es)?|\n)/i;
34
35 # Remove sig, and copy old sig (unmerged copy) back over the top
36 unlink($cfg{'tmpsigfile'}) or htagdie "Could not remove $cfg{'tmpsigfile'}: $!\n";
37 open(OLD, "$cfg{'tmpsigfile'}.old") or htagdie "Could not open old sigfile: $!\n";
38 my @oldsig = <OLD>;
39 close(OLD);
40
41 open(NEW, ">$cfg{'tmpsigfile'}") or htagdie "Can't write to sigfile: $!\n";
42 print NEW @oldsig;
43 close(NEW);
44
45 return 10;