[prev] [thread] [next] [lurker] [Date index for 2003/12/03]
Author: richardc Date: 2003-12-03 15:56:12 +0000 (Wed, 03 Dec 2003) New Revision: 1483 Modified: trunk/mariachi/Changes trunk/mariachi/MANIFEST trunk/mariachi/lib/Mariachi.pm Log: tidy up for release Modified: trunk/mariachi/Changes =================================================================== --- trunk/mariachi/Changes 2003-12-03 14:25:29 UTC (rev 1482) +++ trunk/mariachi/Changes 2003-12-03 15:56:12 UTC (rev 1483) @@ -1,63 +1,72 @@ +0.52 Wednesday 3rd December, 2003 + Now we depend on perl 5.6. This makes some of the code a bit cleaner. + + Cosmetic tweaks to the base templates. + + --reverse commandline option, to put the root threads into + their natural order. + + 0.51 Tuesday 2nd September, 2003 - Template tweaks - apply the anonymising mariachi filter to subject - lines + Template tweaks - apply the anonymising mariachi filter to subject + lines - Correct a MANIFEST booboo and ship templates/css.tt2 + Correct a MANIFEST booboo and ship templates/css.tt2 0.50 Friday 29th August, 2003 - Split some code out into Text::Original + Split some code out into Text::Original - Added a --class option to allow dynamic selection of the main class + Added a --class option to allow dynamic selection of the main class from the command line. Split some of the default templates up. -0.41 Friday 27th June, 2003 - Last release had a screwed up SIGNATURE file. Since they keep biting - me we'll stop shipping them for a while. +0.41 Friday 27th June, 2003 + Last release had a screwed up SIGNATURE file. Since they keep biting + me we'll stop shipping them for a while. -0.4 Thursday 26th June, 2003 - Now we ship with a lurker-style output. +0.4 Thursday 26th June, 2003 + Now we ship with a lurker-style output. - template paths are specifyable + template paths are specifyable - template directories will be scanned for non-template files, - and those that exist will be copied into the output tree + template directories will be scanned for non-template files, + and those that exist will be copied into the output tree - Mariachi::Message now has first_line, first_sentence and - others, to allow extra context in the thread index pages. + Mariachi::Message now has first_line, first_sentence and + others, to allow extra context in the thread index pages. - INCOMPATIBLE CHANGES: - - Command line interface changed. Now instead of positional - parameters we use named ones. + INCOMPATIBLE CHANGES: - Mariach->{list_name,input,output,threads_per_page} have all been - replaced with a single AppConfig instance, C<config> + Command line interface changed. Now instead of positional + parameters we use named ones. -0.31 23rd May, 2003 - New distribution, without the failing t/0signature.t + Mariach->{list_name,input,output,threads_per_page} have all been + replaced with a single AppConfig instance, C<config> -0.3 23rd May, 2003 - Fixed Message->from +0.31 23rd May, 2003 + New distribution, without the failing t/0signature.t - Tweaks to thread output - only display subject where it's - different from the previous one +0.3 23rd May, 2003 + Fixed Message->from - Italicise quoted sections of email + Tweaks to thread output - only display subject where it's + different from the previous one - Added new body_sigless and sig methods in message. + Italicise quoted sections of email - INCOMPATIBLE CHANGE: Filename generation has changed from - using md5_base64 to md5_hex for aesthetic reasons. This will - break links for existing installations. + Added new body_sigless and sig methods in message. - Distribution includes a passthrough Makefile.PL for CPAN.pm users + INCOMPATIBLE CHANGE: Filename generation has changed from + using md5_base64 to md5_hex for aesthetic reasons. This will + break links for existing installations. -0.2 Friday 2nd May, 2003 - fixed distribution - now includes Siesta::Build + Distribution includes a passthrough Makefile.PL for CPAN.pm users -0.1 Friday 2nd May, 2003 - initial CPAN release +0.2 Friday 2nd May, 2003 + fixed distribution - now includes Siesta::Build + +0.1 Friday 2nd May, 2003 + initial CPAN release Modified: trunk/mariachi/MANIFEST =================================================================== --- trunk/mariachi/MANIFEST 2003-12-03 14:25:29 UTC (rev 1482) +++ trunk/mariachi/MANIFEST 2003-12-03 15:56:12 UTC (rev 1483) @@ -3,6 +3,7 @@ Changes MANIFEST README +t/01compile.t t/message.t t/context.t t/testmess/docbrown.lines Modified: trunk/mariachi/lib/Mariachi.pm =================================================================== --- trunk/mariachi/lib/Mariachi.pm 2003-12-03 14:25:29 UTC (rev 1482) +++ trunk/mariachi/lib/Mariachi.pm 2003-12-03 15:56:12 UTC (rev 1483) @@ -9,7 +9,7 @@ use File::Find::Rule; use File::Basename; use base qw( Class::Accessor::Fast ); -our $VERSION = '0.51'; +our $VERSION = '0.52'; __PACKAGE__->mk_accessors( qw( config messages rootset start_time last_time tt ) ); @@ -203,7 +203,7 @@ @rootset = sort { $b->topmost->message->epoch_date <=> $a->topmost->message->epoch_date } @rootset; - + # And optionally reverse the order @rootset = reverse(@rootset) if $self->config->reverse;
Generated at 13:57 on 01 Jul 2004 by mariachi 0.52