Changeset 88
- Timestamp:
- 02/17/06 19:12:33
- Files:
-
- trunk/plagger/AUTHORS (added)
- trunk/plagger/MANIFEST (modified) (3 diffs)
- trunk/plagger/MANIFEST.SKIP (modified) (1 diff)
- trunk/plagger/lib/Plagger.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/MANIFEST
r2 r88 1 AUTHORS 1 2 Changes 2 config.yaml.sample3 3 inc/Module/AutoInstall.pm 4 4 inc/Module/Install.pm … … 17 17 lib/Plagger/Entry.pm 18 18 lib/Plagger/Feed.pm 19 lib/Plagger/Operator.pm 19 20 lib/Plagger/Plugin.pm 21 lib/Plagger/Plugin/Aggregator/Simple.pm 22 lib/Plagger/Plugin/CustomFeed/Frepa.pm 23 lib/Plagger/Plugin/CustomFeed/Mailman.pm 24 lib/Plagger/Plugin/CustomFeed/Mixi.pm 25 lib/Plagger/Plugin/Filter/Delicious.pm 26 lib/Plagger/Plugin/Filter/FeedBurnerPermalink.pm 27 lib/Plagger/Plugin/Filter/HatenaBookmarkTag.pm 28 lib/Plagger/Plugin/Filter/HatenaBookmarkUsersCount.pm 29 lib/Plagger/Plugin/Filter/URLBL.pm 30 lib/Plagger/Plugin/Publish/CHTML.pm 31 lib/Plagger/Plugin/Publish/Debug.pm 20 32 lib/Plagger/Plugin/Publish/Gmail.pm 33 lib/Plagger/Plugin/Publish/JavaScript.pm 34 lib/Plagger/Plugin/Publish/PSP.pm 35 lib/Plagger/Plugin/SmartFeed.pm 21 36 lib/Plagger/Plugin/Subscription/Bloglines.pm 37 lib/Plagger/Plugin/Subscription/Config.pm 38 lib/Plagger/Plugin/Subscription/OPML.pm 39 lib/Plagger/Plugin/Widget/Delicious.pm 40 lib/Plagger/Plugin/Widget/HatenaBookmark.pm 41 lib/Plagger/Plugin/Widget/HatenaBookmarkUsersCount.pm 42 lib/Plagger/Rule.pm 43 lib/Plagger/Rule/Always.pm 44 lib/Plagger/Rule/DateTimeCron.pm 45 lib/Plagger/Rule/EntryTag.pm 46 lib/Plagger/Rule/Expression.pm 47 lib/Plagger/Rule/FeedAttr.pm 48 lib/Plagger/Rule/FeedType.pm 49 lib/Plagger/Rule/Rating.pm 50 lib/Plagger/Rules.pm 51 lib/Plagger/Subscription.pm 52 lib/Plagger/Tag.pm 53 lib/Plagger/Template.pm 22 54 lib/Plagger/Update.pm 55 lib/Plagger/UserAgent.pm 23 56 Makefile.PL 24 57 MANIFEST This list of files … … 26 59 plagger 27 60 t/00_compile.t 61 templates/plugins/chtml_entry.tt 62 templates/plugins/chtml_feed.tt 63 templates/plugins/chtml_index.tt 28 64 templates/plugins/gmail_notify.tt 65 templates/plugins/javascript.tt 66 templates/plugins/psp.tt trunk/plagger/MANIFEST.SKIP
r2 r88 10 10 \.gz$ 11 11 \.cvsignore 12 config.yaml trunk/plagger/lib/Plagger.pm
r84 r88 1 1 package Plagger; 2 2 use strict; 3 our $VERSION = '0. 10';3 our $VERSION = '0.5.0'; 4 4 5 5 use 5.8.1; … … 202 202 =head1 SYNOPSIS 203 203 204 use Plagger;204 % plagger 205 205 206 206 =head1 DESCRIPTION 207 207 208 Plagger is a pluggable RSS/Atom feed aggregator. 208 Plagger is a pluggable RSS/Atom feed aggregator. See 209 L<http://plagger.org/> for the latest code, development community and 210 bug tracking. 209 211 210 212 =head1 AUTHOR 211 213 212 214 Tatsuhiko Miyagawa E<lt>miyagawa@bulknews.netE<gt> 215 216 See I<AUTHORS> file for the name of all the contributors. 213 217 214 218 =head1 COPYRIGHT … … 219 223 =head1 SEE ALSO 220 224 221 L<http://plagger. bulknews.net/>225 L<http://plagger.org/> 222 226 223 227 =cut
