[Ftnpl-cvs] SF.net SVN: ftnpl:[621] trunk/modules/FTN/Packet
Brought to you by:
jame
|
From: <ja...@us...> - 2011-07-15 17:13:52
|
Revision: 621
http://ftnpl.svn.sourceforge.net/ftnpl/?rev=621&view=rev
Author: jame
Date: 2011-07-15 17:13:42 +0000 (Fri, 15 Jul 2011)
Log Message:
-----------
FTN::Packet v0.13
* develop:
Changes for v0.13.
TODO as of 15 July 2011.
Reorganize the documentation in lib/FTN/Packet.pm.
Correct numbers in test scripts.
Bump version to v0.13
Modified Paths:
--------------
trunk/modules/FTN/Packet/Changes
trunk/modules/FTN/Packet/doc/TODO
trunk/modules/FTN/Packet/lib/FTN/Packet.pm
trunk/modules/FTN/Packet/t/00-load.t
trunk/modules/FTN/Packet/t/boilerplate.t
Modified: trunk/modules/FTN/Packet/Changes
===================================================================
--- trunk/modules/FTN/Packet/Changes 2011-07-15 17:13:33 UTC (rev 620)
+++ trunk/modules/FTN/Packet/Changes 2011-07-15 17:13:42 UTC (rev 621)
@@ -1,5 +1,11 @@
Revision history for Perl extension FTN::Packet
+0.13 Fri Jul 15 2011
+ - Correct numbers in test scripts.
+ - Updated the FTN::Packet TODO file.
+ - Reorganize documentation in lib/FTN/Packet.pm: moved the ACKNOWLEDGEMENT
+ section, added a BUGS section, and added to the SUPPORT section.
+
0.12 Mon Jul 11 2011 17:11
- Correct line for TODO file in MANIFEST.
- Correct grep line number 355 in Packet.pm.
Modified: trunk/modules/FTN/Packet/doc/TODO
===================================================================
--- trunk/modules/FTN/Packet/doc/TODO 2011-07-15 17:13:33 UTC (rev 620)
+++ trunk/modules/FTN/Packet/doc/TODO 2011-07-15 17:13:42 UTC (rev 621)
@@ -1,33 +1,39 @@
-To do: FTN:Packet
+To Do: FTN:Packet
+- Run perltidy on Packet.pm
+
+- Move TODO into a .pod file.
+
+- Fix the possible ftsc date related issues in the course of creating and
+ using an ftsc_date function.
+
- Reorganize the functions, so that instead of a read and a write packet
-function; there are functions to open and close the packet file being read or
-written, reading or writing the packet header are separate functions, and then
-reading or writing the messsages to or from a packet file are also separate
-functions?
+ function; there are functions to open and close the packet file being
+ read or written, reading or writing the packet header are separate
+ functions, and then reading or writing the messsages to or from a packet
+ file are also separate functions?
- Also add other functions as neccessary: one for generating a serial number,
-one for generating a name for a standard packet file, one for generating an
-ftsc standard date.
+ one for generating a name for a standard packet file, one for generating an
+ ftsc standard date.
- Add reference to ftsc documentation and/or to the ftsc web site.
write_ftn_packet()
- When doing, for instance, two messages: two messages are making it into
-the packets but they're both the text of the second message.
+ the packets but they're both the text of the second message.
- Also the serial number for the MSGID is coming up as the same for both.
-When code a better way of getting a 8 char serial number to use, add it as a
-function to the module?
+ When code a better way of getting a 8 char serial number to use, add it
+ as a function to the module?
- The write up and variable usages for the packet format per FTS-0001 could
-be rewritten to more closely match the current documentation, esp. the listed
-order.
+ be rewritten to more closely match the current documentation, esp. the listed
+ order.
- Change the name of the appropriate fields in the packet related hashes to
-being named after how they are named in the FTS-0001 documentation.
+ being named after how they are named in the FTS-0001 documentation.
read_ftn_packet()
- Change the name of the appropriate fields in the packet related hashes to
-being named after how they are named in the fts-0001 documentation.
+ being named after how they are named in the fts-0001 documentation.
- The zone number information is not being pulled what is available in the
-packet; needed to set the from_node & to_node variables instead of assuming
-zone 1. It is in the packet header (being skipped in the current code) instead
-of in the message header. Or could use the zone number from the message id if
-available.
-
\ No newline at end of file
+ packet; needed to set the from_node & to_node variables instead of assuming
+ zone 1. It is in the packet header (being skipped in the current code) instead
+ of in the message header. Or could use the zone number from the message id if
+ available.
Modified: trunk/modules/FTN/Packet/lib/FTN/Packet.pm
===================================================================
--- trunk/modules/FTN/Packet/lib/FTN/Packet.pm 2011-07-15 17:13:33 UTC (rev 620)
+++ trunk/modules/FTN/Packet/lib/FTN/Packet.pm 2011-07-15 17:13:42 UTC (rev 621)
@@ -9,11 +9,11 @@
=head1 VERSION
-VERSION 0.11
+VERSION 0.13
=cut
-our $VERSION = '0.11';
+our $VERSION = '0.13';
=head1 DESCRIPTION
@@ -406,6 +406,44 @@
Robert James Clay, ja...@ro...
+=head1 BUGS
+
+Please report any bugs or feature requests via the web interface at
+L<https://github.com/jame/ftn-packet/issues>. I will be notified,
+and then you'll automatically be notified of progress on your bug
+as I make changes.
+
+Note that you can also report any bugs or feature requests to
+C<bug-ftn-packet at rt.cpan.org>, or through the web interface at
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=FTN-Packet>;
+however, the FTN-Packet Issue tracker is preferred.
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+ perldoc FTN::Packet
+
+You can also look for information at:
+
+=over 4
+
+=item * FTN::Packet issue tracker
+
+L<https://github.com/jame/ftn-packet/issues>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=FTN-Packet>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/FTN-Packet/>
+
+=back
+
+
+
=head1 ACKNOWLEDGEMENTS
Code for the read_ftn_packet function was initially derived from the newmsgs subroutine
@@ -415,12 +453,6 @@
the write_ftn_packet function was derived from the bbs2pkt.pl of v0.1 of the bbsdbpl
scripts, also at the SourceForge project.
-=head1 SUPPORT
-
-You can find documentation for this module with the perldoc command.
-
- perldoc FTN::Packet
-
=head1 SEE ALSO
L<perl(1)>
Modified: trunk/modules/FTN/Packet/t/00-load.t
===================================================================
--- trunk/modules/FTN/Packet/t/00-load.t 2011-07-15 17:13:33 UTC (rev 620)
+++ trunk/modules/FTN/Packet/t/00-load.t 2011-07-15 17:13:42 UTC (rev 621)
@@ -1,6 +1,6 @@
#!perl -T
-use Test::More tests => 2;
+use Test::More tests => 1;
BEGIN {
use_ok( 'FTN::Packet' );
Modified: trunk/modules/FTN/Packet/t/boilerplate.t
===================================================================
--- trunk/modules/FTN/Packet/t/boilerplate.t 2011-07-15 17:13:33 UTC (rev 620)
+++ trunk/modules/FTN/Packet/t/boilerplate.t 2011-07-15 17:13:42 UTC (rev 621)
@@ -2,7 +2,7 @@
use strict;
use warnings;
-use Test::More tests => 4;
+use Test::More tests => 3;
sub not_in_file_ok {
my ($filename, %regex) = @_;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|