Mis-add.
[p5sagit/p5-mst-13.2.git] / lib / Filter / Simple / README
1 ==============================================================================
2                   Release of version 0.77 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.77
50
51
52         - Re-allowed user-defined terminators to be regexes
53
54
55 ==============================================================================
56
57 AVAILABILITY
58
59 Filter::Simple has been uploaded to the CPAN
60 and is also available from:
61
62         http://www.csse.monash.edu.au/~damian/CPAN/Filter-Simple.tar.gz
63
64 ==============================================================================