Changeset 120
- Timestamp:
- 11/15/06 05:17:52 (2 years ago)
- Files:
-
- trunk/HelloWorld/plugins/HelloWorld/HelloWorld.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/HelloWorld/plugins/HelloWorld/HelloWorld.pl
r118 r120 4 4 # Choate, Hammersley and Haughey, chapter 10: Writing Plugins with 5 5 # 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! 7 8 # 8 9 # $Id$ … … 11 12 use strict; 12 13 use warnings; 13 use Carp; 14 14 15 use MT; 15 16 use MT::Plugin; … … 100 101 =head1 NAME 101 102 102 MT::Plugin::HelloWorld - Hacking Movable Type, Chapter Ten 103 MT::Plugin::HelloWorld - Hacking Movable Type, Chapter Ten. 103 104 104 105 =head1 DESCRIPTION 105 106 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)! 107 This module is a simple example illustrating plugin basics, from the 108 the book, "Hacking Movable Type" and with the MT PluginManager 109 requirements - both linked below in the L</SEE ALSO> section. 110 110 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." 111 The code is transcribed from "Hacking Movable Type" by Allen, Choate, 112 Hammersley and Haughey, Chapter 10: "Writing Plugins." Slight 113 modifications have been made by Gene Boggs. If you spot an inaccuracy 114 or improvement (in the context of The Book or PluginManager 115 requirements), patches are welcome! Please contact Gene 116 E<lt>gboggs@sixapart.comE<gt>. 114 117 115 Th is plugin contains the xml files required by PluginManager to116 allow smooth or automated updating. Currently, however, the paths117 specified in these files do not currently reference physical118 locations...118 The distribution of this plugin contains the xml files required by 119 PluginManager to allow automated updating. Currently, the paths 120 specified in these files do not reference physical locations. This is 121 definitely a L</TO DO> item. 119 122 120 123 =head1 METHODS … … 134 137 =back 135 138 136 =head1 AUTHORS & COPYRIGHT 139 =head1 SEE ALSO 140 141 =head2 Hacking Movable Type 142 143 L<http://hackingmt.com/> 144 145 L<http://bradchoate.com/weblog/2005/08/01/hacking-movable-type> 146 147 =head2 PluginManager 148 149 The code: L<http://code.sixapart.com/svn/mtplugins/trunk/PluginManager/>. 150 151 The documentation: L<http://bradchoate.com/weblog/2005/08/01/hacking-movable-type>. 152 153 =head1 AUTHORS 137 154 138 155 =over 4 139 140 =item Copyright 2005-2006141 156 142 157 =item Brad Choate E<lt>brad@sixapart.comE<gt>
