/usr/bin/dl10n-spider is in dl10n 3.00.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | #!/usr/bin/perl -w
eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
if 0; # not running under some shell
use strict;
use utf8;
=head1 NAME
dl10n-spider -- crawl translator mailing lists (and BTS) for status updates
=head1 SYNOPSIS
dl10n-spider [options] lang+
=head1 DESCRIPTION
This script parses the debian-l10n-E<lt>languageE<gt> mailing list
archives. It looks for emails which title follow a specific format
indicating what the author intend to translate, or the current status of
his work on this translation.
Those informations are saved to a dl10n database which can then be used to
build a l10n coordination page or any other useless statistics.
=cut
use Getopt::Long; #to parse the args
use Debian::L10n::Spider;
my $progname = $0;
$progname = $1 if $progname =~ m,([^/])+$,;
my $VERSION = "4.0"; # External Version Number
my $BANNER = "Debian l10n infrastructure -- mailing list spider v$VERSION"; # Version Banner - text form
my $cmdline_year = undef;
my $cmdline_month = undef;
my $cmdline_msg = undef;
my $cmdline_file = undef;
my $check_bts=0;
=head1 Command line option parsing
=over
=item General options:
=over
=item -h, --help
display short help text
=item -V, --version
display version and exit
=item --check-bts
check the BTS
=back
=item Begin point of the crawling:
=over
=item --year=YYYY
=item --month=MM
=item --message=msg
=back
if not specified, will crawl for new messages.
=item Database to fill:
=over
=item --sdb=STATUS_FILE
use STATUS_FILE as status file (instead of $STATUS_FILE)
=back
=back
=cut
# This is put into a block to avoid main namespace pollution
{
sub syntax_msg {
my $message = shift;
if (defined $message) {
print "$progname: $message\n";
} else {
print "$BANNER\n";
}
print <<EOF
Syntax: $0 [options] [lang]+
General options:
-h, --help display short help text
-V, --version display version and exit
--check-bts check the BTS
Begin point of the crawling:
--year=YYYY
--month=MM
--message=msg
If not specified, will crawl for new messages.
Database to fill:
--sdb=STATUS_FILE use STATUS_FILE as status file
EOF
;
if (defined $message) {
exit 1;
} else {
exit 0;
}
}
# Display Version Banner
# Options: -V|--version, --print-version
sub banner {
if ($_[0] eq 'print-version') {
print "$VERSION\n";
} else {
print "$BANNER\n";
}
exit 0;
}
# Hash used to process commandline options
my %opthash = (
# ------------------ general options
"help|h" => \&syntax_msg,
"version|V" => \&banner,
"check-bts" => \$check_bts,
# ------------------ configuration options
"year=s" => \$cmdline_year,
"month=s" => \$cmdline_month,
"message=s" => \$cmdline_msg,
"sdb=s" => \$cmdline_file,
);
# init commandline parser
Getopt::Long::config('bundling', 'no_getopt_compat', 'no_auto_abbrev');
# process commandline options
GetOptions(%opthash)
or syntax_msg("error parsing options");
}
my @langs = @ARGV;
Spider::spider($cmdline_year, $cmdline_month, $cmdline_msg, $check_bts, $cmdline_file, @langs);
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
=head1 COPYRIGHT (C)
2003,2004 Tim Dijkstra
2004 Nicolas Bertolissio
2004 Martin Quinson
=cut
1;
|