Changeset 250
- Timestamp:
- 05/15/07 17:54:04 (2 years ago)
- Files:
-
- trunk/src/ingy/Document-Tools/Changes (modified) (1 diff)
- trunk/src/ingy/Document-Tools/MANIFEST (modified) (1 diff)
- trunk/src/ingy/Document-Tools/Makefile.PL (modified) (1 diff)
- trunk/src/ingy/Document-Tools/lib/Document/Parser.pm (modified) (4 diffs)
- trunk/src/ingy/Document-Tools/lib/Document/Tools.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ingy/Document-Tools/Changes
r231 r250 1 --- 2 version: 0.11 3 date: Sun Apr 15 23:25:12 CST 2007 4 changes: Small changes 5 --- 1 6 version: 0.10 2 7 date: Sat Apr 7 13:26:50 JST 2007 trunk/src/ingy/Document-Tools/MANIFEST
r231 r250 6 6 inc/Module/Install/Makefile.pm 7 7 inc/Module/Install/Metadata.pm 8 inc/Module/Install/Perldoc.pm 8 9 inc/Module/Install/Win32.pm 9 10 inc/Module/Install/WriteAll.pm trunk/src/ingy/Document-Tools/Makefile.PL
r231 r250 5 5 6 6 requires perl => '5.6.1'; 7 perldoc; 7 8 8 9 WriteAll; trunk/src/ingy/Document-Tools/lib/Document/Parser.pm
r243 r250 212 212 1; 213 213 214 =for perldoc 215 This POD generated by Perldoc-0.21. 216 DO NOT EDIT. Your changes will be lost. 217 218 =encoding utf8 219 214 220 =head1 NAME 215 221 … … 229 235 =head1 DESCRIPTION 230 236 231 Document::Parser is a base class that you can use to easily generate a parse232 for text document markups (like Wiki or POD markups).237 Document::Parser is a base class that you can use to easily generate a 238 parser for text document markups (like Wiki or POD markups). 233 239 234 240 See this parser as an example: … … 242 248 =head1 AUTHOR 243 249 244 Ingy döt Net <ingy@cpan.org>250 Ingy döt Net 245 251 246 252 =head1 COPYRIGHT … … 252 258 253 259 See http://www.perl.com/perl/misc/Artistic.html 260 261 =cut trunk/src/ingy/Document-Tools/lib/Document/Tools.pm
r231 r250 3 3 use strict; 4 4 use warnings; 5 our $VERSION = '0.1 0';5 our $VERSION = '0.11'; 6 6 7 7 1;
