This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Oops (fix previous fix).
[perl5.git] / lib / Filter / Simple / README
1 ==============================================================================
2                   Release of version 0.78 of Filter::Simple
3 ==============================================================================
4
5
6 NAME
7     Filter::Simple - Simplified source filtering
8
9 SYNOPSIS
10      # in MyFilter.pm:
11
12          package MyFilter;
13
14          use Filter::Simple;
15          
16          FILTER { ... };
17
18          # or just:
19          #
20          # use Filter::Simple sub { ... };
21
22
23      # in user's code:
24
25          use MyFilter;
26
27          # this is filtered
28
29          no MyFilter;
30
31          # this is not
32
33
34 DESCRIPTION
35     The Filter::Simple module provides a simplified interface to
36     Filter::Util::Call; one that is sufficient for most common cases.
37
38 AUTHOR
39     Damian Conway (damian@conway.org)
40
41 COPYRIGHT
42     Copyright (c) 2000-2001, Damian Conway. All Rights Reserved.
43     This module is free software. It may be used, redistributed
44         and/or modified under the same terms as Perl itself.
45
46
47 ==============================================================================
48
49 CHANGES IN VERSION 0.78
50
51
52         - Re-corified test modules in line with Jarkko's new scheme
53
54         - Various POD nits unknitted (thanks Autrijus)
55
56         - Added the missing DotsForArrows.pm demo file (thanks Autrijus)
57
58         - Added support for Perl 5.005
59
60         - added prereq for Text::Balanced in Makefile.PL
61
62         - Added note about use of /m flag when using ^ or $ in filter regexes
63
64
65 ==============================================================================
66
67 AVAILABILITY
68
69 Filter::Simple has been uploaded to the CPAN
70 and is also available from:
71
72         http://www.csse.monash.edu.au/~damian/CPAN/Filter-Simple.tar.gz
73
74 ==============================================================================