Changeset 120

Show
Ignore:
Timestamp:
11/15/06 05:17:52 (2 years ago)
Author:
gboggs
Message:

Improved POD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/HelloWorld/plugins/HelloWorld/HelloWorld.pl

    r118 r120  
    44# Choate, Hammersley and Haughey, chapter 10: Writing Plugins with 
    55# slight modifications by Gene Boggs.  If you spot an inaccuracy 
    6 # or improvement (in the context of the book), patches are welcome! 
     6# or improvement in the context of The Book or PluginManager 
     7# requirements, patches are welcome! 
    78# 
    89# $Id$ 
     
    1112use strict; 
    1213use warnings; 
    13 use Carp; 
     14 
    1415use MT; 
    1516use MT::Plugin; 
     
    100101=head1 NAME 
    101102 
    102 MT::Plugin::HelloWorld - Hacking Movable Type, Chapter Ten 
     103MT::Plugin::HelloWorld - Hacking Movable Type, Chapter Ten. 
    103104 
    104105=head1 DESCRIPTION 
    105106 
    106 This code is transcribed from "Hacking Movable Type" by Allen, 
    107 Choate, Hammersley and Haughey, chapter 10: "Writing Plugins" with 
    108 slight modifications by Gene Boggs.  If you spot an inaccuracy 
    109 or improvement, patches are welcome (in the context of the book)! 
     107This module is a simple example illustrating plugin basics, from the 
     108the book, "Hacking Movable Type" and with the MT PluginManager 
     109requirements - both linked below in the L</SEE ALSO> section. 
    110110 
    111 This module is a simple example to illustrate plugin basics and 
    112 possibly provide a starting point for beginning development and 
    113 learning.  "Use The Source, Luke." 
     111The code is transcribed from "Hacking Movable Type" by Allen, Choate, 
     112Hammersley and Haughey, Chapter 10: "Writing Plugins."  Slight 
     113modifications have been made by Gene Boggs.  If you spot an inaccuracy 
     114or improvement (in the context of The Book or PluginManager 
     115requirements), patches are welcome!  Please contact Gene 
     116E<lt>gboggs@sixapart.comE<gt>. 
    114117 
    115 This plugin contains the xml files required by PluginManager to 
    116 allow smooth or automated updating.  Currently, however, the paths 
    117 specified in these files do not currently reference physical 
    118 locations..
     118The distribution of this plugin contains the xml files required by 
     119PluginManager to allow automated updating.  Currently, the paths 
     120specified in these files do not reference physical locations.  This is 
     121definitely a L</TO DO> item
    119122 
    120123=head1 METHODS 
     
    134137=back 
    135138 
    136 =head1 AUTHORS & COPYRIGHT 
     139=head1 SEE ALSO 
     140 
     141=head2 Hacking Movable Type 
     142 
     143L<http://hackingmt.com/> 
     144 
     145L<http://bradchoate.com/weblog/2005/08/01/hacking-movable-type> 
     146 
     147=head2 PluginManager 
     148 
     149The code: L<http://code.sixapart.com/svn/mtplugins/trunk/PluginManager/>. 
     150 
     151The documentation: L<http://bradchoate.com/weblog/2005/08/01/hacking-movable-type>. 
     152 
     153=head1 AUTHORS 
    137154 
    138155=over 4 
    139  
    140 =item Copyright 2005-2006 
    141156 
    142157=item Brad Choate E<lt>brad@sixapart.comE<gt>