Changeset 1908
- Timestamp:
- 12/05/06 16:38:05
- Files:
-
- trunk/plagger/Changes (modified) (1 diff)
- trunk/plagger/MANIFEST (modified) (6 diffs)
- trunk/plagger/lib/Plagger.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r1870 r1908 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 3 == 0.7.17 (2006/12/04) == 4 5 === Core === 6 7 * Summary::Simple: Fix HTML extraction so it respect attributes (nikc) 8 * Force stringify ID in safe_id 9 * Namespace::MediaRSS: Try mrss namespace with and without the trailing slash 10 11 === New Plugins === 12 13 * Filter::HTMLTidy: use HTML::Tidy to scrub HTML document 14 15 === Plugins Updates === 16 17 * CustomFeed::Debug: reuse feed object to work with SmartFeed 18 * Publish::Planet: update template to use Plagger::Text 19 * Filter::EntryFullText: grab TITLE from HTML if there's no title set 20 * CustomFeed::Simple: make URLs extracted with XPath absolute 21 * Subscription::HatenaGroup: use Plagger::FeedParser rather than XML::Feed 22 * CustomFeed::YouTube: update regexp (mizzy) 23 * Subscription::LivedoorReader: don't use strip_html 24 * Publish::Excel: don't use strip_html 25 * CustomFeed::Simple: don't set title if it's already set in Subscription (typester) 26 * Publish::Feed: added taguri_base config 27 * Bundle::Planet: pass URI domain to taguri_base 28 * Filter::DegradeYouTube: update regexp 29 * CustomFeed::Mailman: updated regexp to work with wrapped subject 30 * Publish::Gmail: added timeout config for mailroute when used with SMTP-TLS 2 31 3 32 == 0.7.16 (2006/11/26) == trunk/plagger/MANIFEST
r1870 r1908 28 28 assets/plugins/Filter-EntryFullText/business-i.yaml 29 29 assets/plugins/Filter-EntryFullText/business_nikkeibp_co_jp.yaml 30 assets/plugins/Filter-EntryFullText/catalyst_advent.yaml 30 31 assets/plugins/Filter-EntryFullText/cdjournal.yaml 31 32 assets/plugins/Filter-EntryFullText/chugoku-np.yaml … … 50 51 assets/plugins/Filter-EntryFullText/gyao_content.pl 51 52 assets/plugins/Filter-EntryFullText/hatena_diary.pl 53 assets/plugins/Filter-EntryFullText/hatena_serif.yaml 52 54 assets/plugins/Filter-EntryFullText/headlines_yahoo_jp.yaml 53 55 assets/plugins/Filter-EntryFullText/hmv.yaml … … 112 114 assets/plugins/Filter-EntryFullText/sportsnavi.yaml 113 115 assets/plugins/Filter-EntryFullText/stage6.yaml 116 assets/plugins/Filter-EntryFullText/talesweaver_news.yaml 114 117 assets/plugins/Filter-EntryFullText/technobahn_com.yaml 115 118 assets/plugins/Filter-EntryFullText/tencount.yaml … … 256 259 deps/Filter-HatenaKeywordTag.yaml 257 260 deps/Filter-HTMLScrubber.yaml 261 deps/Filter-HTMLTidy.yaml 258 262 deps/Filter-ImageInfo.yaml 259 263 deps/Filter-Kansai.yaml … … 460 464 lib/Plagger/Plugin/Filter/HEADEnclosureMetadata.pm 461 465 lib/Plagger/Plugin/Filter/HTMLScrubber.pm 466 lib/Plagger/Plugin/Filter/HTMLTidy.pm 462 467 lib/Plagger/Plugin/Filter/ImageInfo.pm 463 468 lib/Plagger/Plugin/Filter/Kansai.pm … … 634 639 t/samples/feed.xml 635 640 t/samples/feeds.txt 641 t/samples/flickr_new.xml 636 642 t/samples/googlevideo.xml 637 643 t/samples/guess-language/english.xml trunk/plagger/lib/Plagger.pm
r1878 r1908 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0.7.1 6';3 our $VERSION = '0.7.17'; 4 4 5 5 use 5.8.1;
