home *** CD-ROM | disk | FTP | other *** search
- ==============================================================================
- Release of version 0.78 of Filter::Simple
- ==============================================================================
-
-
- NAME
- Filter::Simple - Simplified source filtering
-
- SYNOPSIS
- # in MyFilter.pm:
-
- package MyFilter;
-
- use Filter::Simple;
-
- FILTER { ... };
-
- # or just:
- #
- # use Filter::Simple sub { ... };
-
-
- # in user's code:
-
- use MyFilter;
-
- # this is filtered
-
- no MyFilter;
-
- # this is not
-
-
- DESCRIPTION
- The Filter::Simple module provides a simplified interface to
- Filter::Util::Call; one that is sufficient for most common cases.
-
- AUTHOR
- Damian Conway (damian@conway.org)
-
- COPYRIGHT
- Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
- This module is free software. It may be used, redistributed
- and/or modified under the same terms as Perl itself.
-
-
- ==============================================================================
-
- CHANGES IN VERSION 0.78
-
-
- - Re-corified test modules in line with Jarkko's new scheme
-
- - Various POD nits unknitted (thanks Autrijus)
-
- - Added the missing DotsForArrows.pm demo file (thanks Autrijus)
-
- - Added support for Perl 5.005
-
- - added prereq for Text::Balanced in Makefile.PL
-
- - Added note about use of /m flag when using ^ or $ in filter regexes
-
-
- ==============================================================================
-
- AVAILABILITY
-
- Filter::Simple has been uploaded to the CPAN
- and is also available from:
-
- http://www.csse.monash.edu.au/~damian/CPAN/Filter-Simple.tar.gz
-
- ==============================================================================
-