Update README, TODO and copyright dates.

Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
Thomas Hochstein 2025-05-11 03:01:06 +02:00
parent 799eddab5b
commit c7206a2eaf
5 changed files with 15 additions and 14 deletions

View file

@ -1,4 +1,4 @@
NewsStats (c) 2010-2013 Thomas Hochstein <thh@thh.name> NewsStats (c) 2010-2013, 2025 Thomas Hochstein <thh@thh.name>
NewsStats is a software package used to gather statistical information NewsStats is a software package used to gather statistical information
from a live Usenet feed and for its subsequent examination. from a live Usenet feed and for its subsequent examination.

View file

@ -1,4 +1,4 @@
NewsStats (c) 2010-2013 Thomas Hochstein <thh@thh.name> NewsStats (c) 2010-2013, 2025 Thomas Hochstein <thh@thh.name>
NewsStats is a software package for gathering statistical data live NewsStats is a software package for gathering statistical data live
from a Usenet feed and subsequent examination. from a Usenet feed and subsequent examination.
@ -61,14 +61,16 @@ Getting Started
'feedlog.pl' will continuously feed raw data to your raw data 'feedlog.pl' will continuously feed raw data to your raw data
table. See the feedlog.pl man page for more information. table. See the feedlog.pl man page for more information.
You can process that data via 'gatherstats.pl'; currently only the You can process that data via 'gatherstats.pl'; currently the
tabulation of postings per group and month is supported. More to tabulation of postings per group and injection server per month is
come. See the gatherstats.pl man page for more information. supported. Tabulation of clients (newsreaders) is planned. See
the gatherstats.pl man page for more information.
Report generation is handled by specialised scripts for each Report generation is handled by specialised scripts for each
report type. Currently only reports on the number of postings per report type. Currently reports on the number of postings per group
group and month are supported; you can use 'groupstats.pl' for and month and injection server and month are supported; you can
this. See the groupstats.pl man page for more information. use 'groupstats.pl' and 'cliservstats.pl' for. See the
groupstats.pl and cliservstats.pl man pages for more information.
Reporting Bugs Reporting Bugs

View file

@ -28,8 +28,7 @@ NewsStats.
mentioned information; and you should be able to get the history of any mentioned information; and you should be able to get the history of any
group. group.
- Add other reports - Add other reports
NewsStats should include some other kinds of reports (stats on used clients, NewsStats should include some other kinds of reports (stats on used clients)
on postings hosts/servers, ...)
- Add tools for database management - Add tools for database management
NewsStats should offer tools e.g. to inject postings into the 'raw' database, NewsStats should offer tools e.g. to inject postings into the 'raw' database,
or to split databases. or to split databases.
@ -65,7 +64,7 @@ NewsStats.
+ gatherstats.pl + gatherstats.pl
- Use hierarchy information (see GroupInfo above) - Use hierarchy information (see GroupInfo above)
- Add gathering of other stats (clients, hosts, ...) - Add gathering of other stats (clients, ...)
- better modularisation (code reuse for other reports!) - better modularisation (code reuse for other reports!)
- Add / enhance / test error handling - Add / enhance / test error handling
- General tests and optimisations - General tests and optimisations

View file

@ -6,7 +6,7 @@
# #
# It is part of the NewsStats package. # It is part of the NewsStats package.
# #
# Copyright (c) 2010-2013 Thomas Hochstein <thh@thh.name> # Copyright (c) 2010-2013, 2025 Thomas Hochstein <thh@thh.name>
# #
# It can be redistributed and/or modified under the same terms under # It can be redistributed and/or modified under the same terms under
# which Perl itself is published. # which Perl itself is published.
@ -350,7 +350,7 @@ Thomas Hochstein <thh@thh.name>
=head1 COPYRIGHT AND LICENSE =head1 COPYRIGHT AND LICENSE
Copyright (c) 2010-2013 Thomas Hochstein <thh@thh.name> Copyright (c) 2010-2013, 2025 Thomas Hochstein <thh@thh.name>
This program is free software; you may redistribute it and/or modify it This program is free software; you may redistribute it and/or modify it
under the same terms as Perl itself. under the same terms as Perl itself.

View file

@ -77,7 +77,7 @@ sub ShowVersion {
################################################################################ ################################################################################
### display version and exit ### display version and exit
print "$0 from NewsStats v$VERSION\n"; print "$0 from NewsStats v$VERSION\n";
print "Copyright (c) 2010-2013 Thomas Hochstein <thh\@thh.name>\n"; print "Copyright (c) 2010-2013, 2025 Thomas Hochstein <thh\@thh.name>\n";
print "This program is free software; you may redistribute it ". print "This program is free software; you may redistribute it ".
"and/or modify it under the same terms as Perl itself.\n"; "and/or modify it under the same terms as Perl itself.\n";
exit(100); exit(100);