Mis-add.
[p5sagit/p5-mst-13.2.git] / lib / Filter / Simple / README
CommitLineData
55a1c97c 1==============================================================================
201f4820 2 Release of version 0.77 of Filter::Simple
55a1c97c 3==============================================================================
4
5
6NAME
7 Filter::Simple - Simplified source filtering
8
9SYNOPSIS
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
34DESCRIPTION
35 The Filter::Simple module provides a simplified interface to
36 Filter::Util::Call; one that is sufficient for most common cases.
37
38AUTHOR
39 Damian Conway (damian@conway.org)
40
41COPYRIGHT
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
201f4820 49CHANGES IN VERSION 0.77
dfa18578 50
51
201f4820 52 - Re-allowed user-defined terminators to be regexes
55a1c97c 53
55a1c97c 54
55==============================================================================
56
57AVAILABILITY
58
59Filter::Simple has been uploaded to the CPAN
60and is also available from:
61
62 http://www.csse.monash.edu.au/~damian/CPAN/Filter-Simple.tar.gz
63
64==============================================================================