Changeset 1174
- Timestamp:
- 07/27/06 03:34:10
- Files:
-
- trunk/plagger/Changes (modified) (2 diffs)
- trunk/plagger/MANIFEST (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/Changes
r1145 r1174 1 1 The latest, HTML version of this document is always available at http://plagger.org/trac.cgi/wiki/PlaggerChangeLog 2 3 == 0.7.5 (2006/07/26) == 4 5 === Core === 6 7 * Merge from branches/refactoring-planet 8 * Plagger::UserAgent now deals with local files to get their MIME type correct 9 * Big refactoring done for $plugin->templatize() usage. #229 10 * Start using Test::Base for unit tests and convert most of existent tests to TB based 11 * Plagger->bootstrap() now returns $context 12 * Added $plugin->load_assets method in a base class 13 * decode $content before feed auto-discovery to avoid HTML::Parser warnings 14 * Bump up XML::Feed requirement to 0.09 so it can generate RSS 2.0 with content:encoded. #104 15 * remove inc from svn 16 * $feed->primary_author to return feed author by invsesting entries authors 17 18 === New Plugins === 19 20 * Bundle::Planet: to load bunch of plugins under the table to create Planet site with a few lines of config 21 * Filter::StripTagsFromTitle: Strip tags found in title. #289 22 * Filter::HTMLScrubber: standalone HTML filter to scrub HTML, merged from feature-server (typester) 23 * Publish::FOAFRoll: generate foafroll RDF ala Planet 24 25 === Plugin Updates === 26 27 * Publish::Planet: accept style_url as a list. #316 28 * Publish::Planet: Fixed typo in sixapart-std template. #309 29 * Publish::Planet: members_list is now deprecated and on by default 30 * Publish::Planet: Bye to HTML::Tidy and HTML::Scrubber 31 * Publish::Planet: 'skin' config is now renamed to 'theme' 32 * Publish::Planet: skip non-http URLs 33 * Subscription::Planet: add URL based search. #286 34 * Subscription::Planet: language based goruping. #288 35 * Bundle::Planet: Add OPML generation support 36 * Bundle::Planet: Add FOAFRoll generation support 37 * Aggregator::Null: fixed the fatal bug so it works 38 * Rule::Fresh: now you can use human readable duraion format like '7 days'. Requires Time::Duration::Parse 39 * Publish::Feed: 'full_content' config (defaults to 1) specified whether to publish fullcontent in the feeds 40 * Publish::Feed: now generate Atom 1.0 by default if you use XML::Atom >= 0.20 41 * Publish::OPML: Now OPML validator compatible 2 42 3 43 == 0.7.4 (2006/07/24) == … … 17 57 * plugin_path now can be a scalar 18 58 * Use Term::Encoding to detect terminal encoding automatically if available. #329 19 * Updated Encode.pm dependency for callbacks. #32259 * Updated Encode.pm dependency for callbacks. 20 60 * Filter::EntryFullText now allows to write XPath expression to extract entry body (youpy) 21 61 * Replace 'FOREACH foo IN bar' with 'FOREACH foo = bar' for TT backward compatibility (cmarcelo) trunk/plagger/MANIFEST
r1145 r1174 143 143 assets/plugins/Publish-CHTML/chtml_feed.tt 144 144 assets/plugins/Publish-CHTML/chtml_index.tt 145 assets/plugins/Publish-FOAFRoll/foafroll.tt 145 146 assets/plugins/Publish-Gmail/gmail_notify.tt 146 147 assets/plugins/Publish-JavaScript/javascript.tt … … 161 162 assets/plugins/Search-Namazu/namazu.tt 162 163 assets/plugins/Search-Spotlight/spotlight.tt 164 assets/plugins/Subscription-Planet/default.yaml 165 assets/plugins/Subscription-Planet/ja.yaml 163 166 AUTHORS 164 167 bin/plagger-ircbot … … 170 173 examples/irc.yaml 171 174 examples/livedoorreader2gmail.yaml 175 examples/planet-old.yaml 172 176 examples/planet.yaml 173 177 examples/podcast.yaml … … 186 190 inc/Module/Install/Metadata.pm 187 191 inc/Module/Install/Scripts.pm 192 inc/Module/Install/TestBase.pm 188 193 inc/Module/Install/Win32.pm 189 194 inc/Module/Install/WriteAll.pm 195 inc/Spiffy.pm 196 inc/Test/Base.pm 197 inc/Test/Base/Filter.pm 198 inc/Test/Builder.pm 199 inc/Test/Builder/Module.pm 190 200 inc/Test/More.pm 191 201 lib/Plagger.pm … … 206 216 lib/Plagger/Plugin/Aggregator/Simple.pm 207 217 lib/Plagger/Plugin/Aggregator/Xango.pm 218 lib/Plagger/Plugin/Bundle/Planet.pm 208 219 lib/Plagger/Plugin/CustomFeed/2chSearch.pm 209 220 lib/Plagger/Plugin/CustomFeed/AmazonAssociateReportJP.pm … … 255 266 lib/Plagger/Plugin/Filter/HatenaKeywordTag.pm 256 267 lib/Plagger/Plugin/Filter/HEADEnclosureMetadata.pm 268 lib/Plagger/Plugin/Filter/HTMLScrubber.pm 257 269 lib/Plagger/Plugin/Filter/ImageInfo.pm 258 270 lib/Plagger/Plugin/Filter/LivedoorKeywordUnlink.pm … … 271 283 lib/Plagger/Plugin/Filter/SpamAssassin.pm 272 284 lib/Plagger/Plugin/Filter/StripRSSAd.pm 285 lib/Plagger/Plugin/Filter/StripTagsFromTitle.pm 273 286 lib/Plagger/Plugin/Filter/TagsToTitle.pm 274 287 lib/Plagger/Plugin/Filter/tDiaryComment.pm … … 297 310 lib/Plagger/Plugin/Publish/Delicious.pm 298 311 lib/Plagger/Plugin/Publish/Feed.pm 312 lib/Plagger/Plugin/Publish/FOAFRoll.pm 299 313 lib/Plagger/Plugin/Publish/Gmail.pm 300 314 lib/Plagger/Plugin/Publish/HatenaBookmark.pm … … 378 392 plagger 379 393 t/00_compile.t 394 t/samples/delicious.xml 395 t/samples/googlevideo.xml 396 t/samples/hatenafotolife.rdf 397 t/samples/monkey.rss 398 t/samples/nasty.xml 399 t/samples/non-http-link.xml 400 t/samples/photocast.rss 401 t/samples/rss-full.xml 402 t/samples/tags-in-title.xml 403 t/samples/vox.xml 404 t/TestPlagger.pm
