Changeset 590

Show
Ignore:
Timestamp:
04/15/06 15:51:54
Author:
miyagawa
Message:

pacakging 0.6.3; spacing fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/plagger/Changes

    r563 r590  
    11The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 
     2 
     3== 0.6.3 (2006/04/15) == 
     4 
     5=== Core === 
     6 
     7 * EntryFullText: Fixed bug that date format is not properly decoded as UTF-8 
     8 * requires URI::Fetch 0.06. #168 
     9 * Added various sites upgrader files (miyagawa, s_nobu, ko, mamorou, nTeTs, youpy) 
     10 * Added atode.cc sample in examples directory 
     11 
     12=== New Plugins === 
     13 
     14 * Filter::BreakEntriesToFeeds: Break entries in each entry as a feed containing single entry (miyagawa) 
     15 * Filter::2chRSSPermalink: Fix rss.s2ch.net feeds permalink (youpy) 
     16 * Subscription::2chThreadList: Add 2ch threads to Subscription using rss.s2ch.net feeds (youpy) 
     17 
     18=== Plugins Updates === 
     19 
     20 * Subscription::Planet: Allow multiple keywords set in config files. Allow non utf-8 URI escape (Suggested by secondlife) 
     21 * CustomFeed::Mixi: Fix newline are not correctly extracted in Messages feed. Fixed first-time access bug without cookies 
     22 * Subscription::Bloglines: Fix atom:id bug when permaLink="false" 
    223 
    324== 0.6.2 (2006/04/10) == 
  • trunk/plagger/lib/Plagger.pm

    r564 r590  
    11package Plagger; 
    22use strict; 
    3 our $VERSION = '0.6.2'; 
     3our $VERSION = '0.6.3'; 
    44 
    55use 5.8.1; 
     
    1313 
    1414use base qw( Class::Accessor::Fast ); 
    15 __PACKAGE__->mk_accessors( qw(conf update subscription plugins_path cache ) ); 
     15__PACKAGE__->mk_accessors( qw(conf update subscription plugins_path cache) ); 
    1616 
    1717use Plagger::Cache; 
     
    4949        $self->load_include($config); 
    5050        $self->{conf} = $config->{global}; 
    51         $self->{conf}->{log}   ||= { level => 'debug' }; 
     51        $self->{conf}->{log} ||= { level => 'debug' }; 
    5252        $self->{config_path} = $opt{config}; 
    5353    } else { 
  • trunk/plagger/lib/Plagger/Cache.pm

    r448 r590  
    1414    $conf->{class}  ||= 'Cache::FileCache'; 
    1515    $conf->{params} ||= { 
    16         cache_root         => File::Spec->catfile($conf->{base}, 'cache'), 
     16        cache_root => File::Spec->catfile($conf->{base}, 'cache'), 
    1717    }; 
    1818