X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FRegexp-Wildcards.git;a=blobdiff_plain;f=lib%2FRegexp%2FWildcards.pm;h=329e77a1ffcad15b1ae6dec9ec7838bf1138a14a;hp=095666e00aa74a32c1bebd2f0531e31eca5b66dd;hb=b59989cf4ef20a00d992f8b249836e8105602f79;hpb=caa5f3c462570ffc1eb2c4222266978d1c925c3b diff --git a/lib/Regexp/Wildcards.pm b/lib/Regexp/Wildcards.pm index 095666e..329e77a 100644 --- a/lib/Regexp/Wildcards.pm +++ b/lib/Regexp/Wildcards.pm @@ -11,11 +11,11 @@ Regexp::Wildcards - Converts wildcard expressions to Perl regular expressions. =head1 VERSION -Version 0.07 +Version 0.08 =cut -our $VERSION = '0.07'; +our $VERSION = '0.08'; =head1 SYNOPSIS @@ -233,12 +233,15 @@ These five functions are exported only on request : C, C, C [ @EXPORT_OK ] ); +our @EXPORT = (); +our %EXPORT_TAGS = ( + 'funcs' => [ 'wc2re', map { 'wc2re_'.$_ } keys %types ], +); +our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS; +our @EXPORT_FAIL = qw/extract/, + (map { 'do_'.$_ } qw/jokers sql commas brackets bracketed/), + (map { 'capture_'.$_ } qw/single any brackets/); +$EXPORT_TAGS{'all'} = [ @EXPORT_OK ]; =head1 DEPENDENCIES @@ -260,17 +263,13 @@ L has the C class method that handles joke =head1 AUTHOR -Vincent Pit, C<< >> +Vincent Pit, C<< >>, L. -You can contact me by mail or on #perl @ FreeNode (Prof_Vince). +You can contact me by mail or on #perl @ FreeNode (vincent or Prof_Vince). =head1 BUGS -Please report any bugs or feature requests to -C, or through the web interface at -L. -I will be notified, and then you'll automatically be notified of progress on -your bug as I make changes. +Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT @@ -280,7 +279,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2007 Vincent Pit, all rights reserved. +Copyright 2007-2008 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.