Rev 23 | Rev 25 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 23 | Rev 24 | ||
|---|---|---|---|
| Line 7... | Line 7... | ||
| 7 | use utf8; |
7 | use utf8; |
| 8 | use Encode; |
8 | use Encode; |
| 9 | 9 | ||
| 10 | use constant DEBUG => 0; |
10 | use constant DEBUG => 0; |
| 11 | 11 | ||
| - | 12 | ## newsstat.pl
|
|
| - | 13 | ## Copyright (C) 2011, 2012 Thomas Lahn <startrek@PointedEars.de>
|
|
| - | 14 | ## Based on work by Garry Knight et al.
|
|
| - | 15 | ##
|
|
| - | 16 | ## This program is free software: you can redistribute it and/or modify
|
|
| - | 17 | ## it under the terms of the GNU General Public License as published by
|
|
| - | 18 | ## the Free Software Foundation, either version 3 of the License, or
|
|
| - | 19 | ## (at your option) any later version.
|
|
| - | 20 | ##
|
|
| - | 21 | ## This program is distributed in the hope that it will be useful,
|
|
| - | 22 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
| - | 23 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
| - | 24 | ## GNU General Public License for more details.
|
|
| - | 25 | ##
|
|
| - | 26 | ## You should have received a copy of the GNU General Public License
|
|
| - | 27 | ## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
| - | 28 | ||
| 12 | ## Print out all text to STDOUT UTF-8 encoded
|
29 | ## Print out all text to STDOUT UTF-8 encoded
|
| 13 | binmode STDOUT, ':encoding(UTF-8)'; |
30 | binmode STDOUT, ':encoding(UTF-8)'; |
| 14 | binmode STDERR, ':encoding(UTF-8)'; |
31 | binmode STDERR, ':encoding(UTF-8)'; |
| 15 | 32 | ||
| 16 | ## L10n
|
33 | ## L10n
|