Changeset 153 for DeliciousTags

Show
Ignore:
Timestamp:
10/26/05 23:18:52 (3 years ago)
Author:
ogawa
Message:

Add self-documentation of this plugin.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • DeliciousTags/trunk/DeliciousTags.pl

    r152 r153  
    1919my $plugin = MT::Plugin::DeliciousTags->new({ 
    2020    name => 'Delicious Tags', 
    21     description => "Add MTDelciousTags for showing del.icio.us tags", 
     21    description => "A plugin for importing and displaying your del.icio.us tags", 
     22    doc_link => 'http://as-is.net/hacks/2005/10/delicious_tags_plugin.html', 
    2223    author_name => 'Hirotaka Ogawa', 
    2324    author_link => 'http://profile.typekey.com/ogawa/', 
     
    9798__END__ 
    9899 
    99 Example: 
     100=head1 NAME 
     101 
     102DeliciousTags.pl - A simple Movable Type plugin for displaying your 
     103del.icio.us tags. 
     104 
     105=head1 DESCRIPTION 
     106 
     107This plugin allows you to import your del.icio.us tags into your 
     108MT blogs. 
     109 
     110=head1 TAGS 
     111 
     112=over 4 
     113 
     114=item MTDeliciousTags [user="..."][pass="..."][sort_by="tag|count"][sort_order="ascend|descend][lastn="N"] 
     115 
     116A container tag for your del.icio.us tags. "user" and "pass" are required. 
     117 
     118=item MTDeliciousTag 
     119 
     120Generates a del.icio.us tag. 
     121 
     122=item MTDeliciousTagURL 
     123 
     124Generates the URL to a del.icio.us (e.g., http://del.icio.us/user/tag). 
     125 
     126=item MTDeliciousTagCount 
     127 
     128Generates the number how many a del.icio.us tag appears in your 
     129del.icio.us bookmarks. 
     130 
     131=item MTDeliciousTagsHeader 
     132 
     133A container tag that renders its contents before the first del.icio.us 
     134tag. 
     135 
     136=item MTDeliciousTagsFooter 
     137 
     138A container tag that renders its contents after the last del.icio.us 
     139tag. 
     140 
     141=back 
     142 
     143=head1 EXAMPLE 
    100144 
    101145<MTDeliciousTags user="del.icio.us.username" pass="del.icio.us.password"> 
     
    105149<MTDeliciousTagsFooter></ol></MTDeliciousTagsFooter> 
    106150</MTDeliciousTags> 
     151 
     152=head1 LICENSE 
     153 
     154This code is released under the Artistic License. The terms of the 
     155Artistic License are described at 
     156L<http://www.perl.com/language/misc/Artistic.html>. 
     157 
     158=head1 AUTHOR & COPYRIGHT 
     159 
     160Copyright (c) 2005 Hirotaka Ogawa (hirotaka.ogawa at gmail.com) 
     161 
     162=cut 
     163 
     164=end