X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Plugin.git;a=blobdiff_plain;f=Plugin.pod;h=137199c10c43926c405946dadc26544a6a7065d6;hp=76e8b3a7971423c35c7c1f010701aa4a2b73b21a;hb=47afe57f6afc7b312d1da725bb38f99ae70b157a;hpb=5feac29518975b05987edbc997123cfa06586bb8 diff --git a/Plugin.pod b/Plugin.pod index 76e8b3a..137199c 100644 --- a/Plugin.pod +++ b/Plugin.pod @@ -19,12 +19,12 @@ C or runtime for C patterns, or something inbetween depending on variable interpolation etc. When this module is loaded into a scope it inserts a hook into -C<$^H{regcomp}> (as described in L) to have each regexp -constructed in its lexical scope handled by this engine, but it -differs from other engines in that it also inserts other hooks into -C<%^H> in the same scope that point to user-defined subroutines to use -during compilation, execution etc, these are described in -L below. +C<$^H{regcomp}> (as described in L and L) to +have each regexp constructed in its lexical scope handled by this +engine, but it differs from other engines in that it also inserts +other hooks into C<%^H> in the same scope that point to user-defined +subroutines to use during compilation, execution etc, these are +described in L below. The callbacks (e.g. L) then get called with a L object as their first argument. This object @@ -51,7 +51,7 @@ caller's scope use use the following snippet: sub import { - # Populates the caller's %^H with our callbacks + # Sets the caller's $^H{regcomp} his %^H with our callbacks re::engine::Plugin->import( comp => \&comp, exec => \&exec, @@ -391,14 +391,18 @@ Please report any bugs that aren't already listed at L to L -=head1 AUTHOR +=head1 AUTHORS -Evar ArnfjErE Bjarmason +Evar ArnfjErE Bjarmason C<< >> + +Vincent Pit C<< >> =head1 LICENSE Copyright 2007-2008 Evar ArnfjErE Bjarmason. +Copyright 2009 Vincent Pit. + This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.