Changeset 16279 for lang/perl/Aspect
- Timestamp:
- 07/25/08 03:56:07 (5 years ago)
- Location:
- lang/perl/Aspect/trunk
- Files:
-
- 4 added
- 21 modified
-
.shipit (modified) (1 diff)
-
LICENSE (added)
-
MANIFEST (modified) (2 diffs)
-
Makefile.PL (modified) (1 diff)
-
lib/Aspect.pm (modified) (2 diffs)
-
lib/Aspect/Advice.pm (modified) (1 diff)
-
lib/Aspect/AdviceContext.pm (modified) (1 diff)
-
lib/Aspect/Library/Listenable.pm (modified) (1 diff)
-
lib/Aspect/Library/Memoize.pm (modified) (1 diff)
-
lib/Aspect/Library/Profiler.pm (modified) (1 diff)
-
lib/Aspect/Library/Singleton.pm (modified) (1 diff)
-
lib/Aspect/Library/TestClass.pm (modified) (1 diff)
-
lib/Aspect/Library/Wormhole.pm (modified) (1 diff)
-
lib/Aspect/Modular.pm (modified) (1 diff)
-
lib/Aspect/Pointcut.pm (modified) (2 diffs)
-
lib/Aspect/Pointcut/AndOp.pm (modified) (2 diffs)
-
lib/Aspect/Pointcut/BinOp.pm (modified) (2 diffs)
-
lib/Aspect/Pointcut/Call.pm (modified) (2 diffs)
-
lib/Aspect/Pointcut/Cflow.pm (modified) (2 diffs)
-
lib/Aspect/Pointcut/NotOp.pm (modified) (2 diffs)
-
lib/Aspect/Pointcut/OrOp.pm (modified) (2 diffs)
-
lib/Aspect/Weaver.pm (modified) (2 diffs)
-
t/00_compile.t (added)
-
t/00_perl_critic.t (added)
-
t/00_pod.t (added)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Aspect/trunk/.shipit
r12707 r16279 1 steps = ApplyYAMLChangeLogVersion, Manifest, DistTest, Commit, Tag, MakeDist, MyUploadCPAN, DistClean, Twitter1 steps = FindVersion, ChangeVersion, CheckChangeLog, Manifest, DistTest, Commit, Tag, MakeDist, MyUploadCPAN, DistClean, Twitter 2 2 3 3 svk.tagpattern = //local/coderepos/Aspect/tags/Aspect-%v -
lang/perl/Aspect/trunk/MANIFEST
r9731 r16279 20 20 inc/Module/Install/Makefile.pm 21 21 inc/Module/Install/Metadata.pm 22 inc/Module/Install/StandardTests.pm23 inc/Module/Install/Template.pm24 22 inc/Module/Install/Win32.pm 25 23 inc/Module/Install/WriteAll.pm 26 24 inc/Test/Compile.pm 27 25 inc/Test/More.pm 28 inc/UNIVERSAL/require.pm29 26 lib/Aspect.pm 30 27 lib/Aspect/Advice.pm … … 46 43 lib/Aspect/Pointcut/OrOp.pm 47 44 lib/Aspect/Weaver.pm 45 LICENSE 48 46 Makefile.PL 49 47 MANIFEST This list of files 50 48 META.yml 51 49 README 50 t/00_compile.t 51 t/00_perl_critic.t 52 t/00_pod.t 52 53 t/01_all.t 53 54 t/lib/_Aspect/tests/Advice/Foo.pm -
lang/perl/Aspect/trunk/Makefile.PL
r9731 r16279 11 11 12 12 build_requires 'Test::More' => '0.70'; 13 build_requires 'Test::Compile'; 13 14 14 process_templates(15 first_year => 2001,16 rest_from => "$ENV{HOME}/.mitlib/standard_pod",17 start_tag => '{%',18 end_tag => '%}',19 other_authors => [20 'Ran Eilam C<< <eilara@cpan.org> >>'21 ],22 );23 24 use_standard_tests(without => 'pod_coverage');25 15 auto_install; 26 16 auto_include; -
lang/perl/Aspect/trunk/lib/Aspect.pm
r9731 r16279 56 56 __END__ 57 57 58 {% USE p = PodGenerated %}59 60 58 =head1 NAME 61 59 … … 456 454 distribution. 457 455 458 {% PROCESS standard_pod %} 456 =head1 BUGS AND LIMITATIONS 457 458 No bugs have been reported. 459 460 Please report any bugs or feature requests through the web interface at 461 L<http://rt.cpan.org>. 462 463 =head1 INSTALLATION 464 465 See perlmodinstall for information and options on installing Perl modules. 466 467 =head1 AVAILABILITY 468 469 The latest version of this module is available from the Comprehensive Perl 470 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 471 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 472 473 =head1 AUTHORS 474 475 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 476 477 Ran Eilam C<< <eilara@cpan.org> >> 478 479 =head1 COPYRIGHT AND LICENSE 480 481 Copyright 2001 by Marcel GrE<uuml>nauer 482 483 This library is free software; you can redistribute it and/or modify 484 it under the same terms as Perl itself. 459 485 460 486 =cut 487 -
lang/perl/Aspect/trunk/lib/Aspect/Advice.pm
r9731 r16279 133 133 See the L<Aspect|::Aspect> pod for a guide to the Aspect module. 134 134 135 {% PROCESS standard_pod %} 135 =head1 BUGS AND LIMITATIONS 136 137 No bugs have been reported. 138 139 Please report any bugs or feature requests through the web interface at 140 L<http://rt.cpan.org>. 141 142 =head1 INSTALLATION 143 144 See perlmodinstall for information and options on installing Perl modules. 145 146 =head1 AVAILABILITY 147 148 The latest version of this module is available from the Comprehensive Perl 149 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 150 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 151 152 =head1 AUTHORS 153 154 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 155 156 Ran Eilam C<< <eilara@cpan.org> >> 157 158 =head1 COPYRIGHT AND LICENSE 159 160 Copyright 2001 by Marcel GrE<uuml>nauer 161 162 This library is free software; you can redistribute it and/or modify 163 it under the same terms as Perl itself. 136 164 137 165 =cut 166 -
lang/perl/Aspect/trunk/lib/Aspect/AdviceContext.pm
r9731 r16279 212 212 C<Aspect::Pointcut::Cflow> creates contexts for each matched call flow. 213 213 214 {% PROCESS standard_pod %} 214 =head1 BUGS AND LIMITATIONS 215 216 No bugs have been reported. 217 218 Please report any bugs or feature requests through the web interface at 219 L<http://rt.cpan.org>. 220 221 =head1 INSTALLATION 222 223 See perlmodinstall for information and options on installing Perl modules. 224 225 =head1 AVAILABILITY 226 227 The latest version of this module is available from the Comprehensive Perl 228 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 229 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 230 231 =head1 AUTHORS 232 233 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 234 235 Ran Eilam C<< <eilara@cpan.org> >> 236 237 =head1 COPYRIGHT AND LICENSE 238 239 Copyright 2001 by Marcel GrE<uuml>nauer 240 241 This library is free software; you can redistribute it and/or modify 242 it under the same terms as Perl itself. 215 243 216 244 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Library/Listenable.pm
r9731 r16279 579 579 class, by adding the code to fire events inside your "hot" methods. 580 580 581 {% PROCESS standard_pod %} 581 =head1 BUGS AND LIMITATIONS 582 583 No bugs have been reported. 584 585 Please report any bugs or feature requests through the web interface at 586 L<http://rt.cpan.org>. 587 588 =head1 INSTALLATION 589 590 See perlmodinstall for information and options on installing Perl modules. 591 592 =head1 AVAILABILITY 593 594 The latest version of this module is available from the Comprehensive Perl 595 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 596 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 597 598 =head1 AUTHORS 599 600 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 601 602 Ran Eilam C<< <eilara@cpan.org> >> 603 604 =head1 COPYRIGHT AND LICENSE 605 606 Copyright 2001 by Marcel GrE<uuml>nauer 607 608 This library is free software; you can redistribute it and/or modify 609 it under the same terms as Perl itself. 582 610 583 611 =cut 612 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Memoize.pm
r9731 r16279 62 62 of the distribution. 63 63 64 {% PROCESS standard_pod %} 64 =head1 BUGS AND LIMITATIONS 65 66 No bugs have been reported. 67 68 Please report any bugs or feature requests through the web interface at 69 L<http://rt.cpan.org>. 70 71 =head1 INSTALLATION 72 73 See perlmodinstall for information and options on installing Perl modules. 74 75 =head1 AVAILABILITY 76 77 The latest version of this module is available from the Comprehensive Perl 78 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 79 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 80 81 =head1 AUTHORS 82 83 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 84 85 Ran Eilam C<< <eilara@cpan.org> >> 86 87 =head1 COPYRIGHT AND LICENSE 88 89 Copyright 2001 by Marcel GrE<uuml>nauer 90 91 This library is free software; you can redistribute it and/or modify 92 it under the same terms as Perl itself. 65 93 66 94 =cut 95 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Profiler.pm
r9731 r16279 82 82 of the distribution. 83 83 84 {% PROCESS standard_pod %} 84 =head1 BUGS AND LIMITATIONS 85 86 No bugs have been reported. 87 88 Please report any bugs or feature requests through the web interface at 89 L<http://rt.cpan.org>. 90 91 =head1 INSTALLATION 92 93 See perlmodinstall for information and options on installing Perl modules. 94 95 =head1 AVAILABILITY 96 97 The latest version of this module is available from the Comprehensive Perl 98 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 99 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 100 101 =head1 AUTHORS 102 103 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 104 105 Ran Eilam C<< <eilara@cpan.org> >> 106 107 =head1 COPYRIGHT AND LICENSE 108 109 Copyright 2001 by Marcel GrE<uuml>nauer 110 111 This library is free software; you can redistribute it and/or modify 112 it under the same terms as Perl itself. 85 113 86 114 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Library/Singleton.pm
r9731 r16279 93 93 C<examples/> directory of the distribution. 94 94 95 {% PROCESS standard_pod %} 95 =head1 BUGS AND LIMITATIONS 96 97 No bugs have been reported. 98 99 Please report any bugs or feature requests through the web interface at 100 L<http://rt.cpan.org>. 101 102 =head1 INSTALLATION 103 104 See perlmodinstall for information and options on installing Perl modules. 105 106 =head1 AVAILABILITY 107 108 The latest version of this module is available from the Comprehensive Perl 109 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 110 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 111 112 =head1 AUTHORS 113 114 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 115 116 Ran Eilam C<< <eilara@cpan.org> >> 117 118 =head1 COPYRIGHT AND LICENSE 119 120 Copyright 2001 by Marcel GrE<uuml>nauer 121 122 This library is free software; you can redistribute it and/or modify 123 it under the same terms as Perl itself. 96 124 97 125 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Library/TestClass.pm
r9731 r16279 97 97 C<XUL-Node> tests use this aspect extensively. 98 98 99 {% PROCESS standard_pod %} 99 =head1 BUGS AND LIMITATIONS 100 101 No bugs have been reported. 102 103 Please report any bugs or feature requests through the web interface at 104 L<http://rt.cpan.org>. 105 106 =head1 INSTALLATION 107 108 See perlmodinstall for information and options on installing Perl modules. 109 110 =head1 AVAILABILITY 111 112 The latest version of this module is available from the Comprehensive Perl 113 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 114 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 115 116 =head1 AUTHORS 117 118 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 119 120 Ran Eilam C<< <eilara@cpan.org> >> 121 122 =head1 COPYRIGHT AND LICENSE 123 124 Copyright 2001 by Marcel GrE<uuml>nauer 125 126 This library is free software; you can redistribute it and/or modify 127 it under the same terms as Perl itself. 100 128 101 129 =cut 130 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Wormhole.pm
r9731 r16279 130 130 C<examples/> directory of the distribution. 131 131 132 {% PROCESS standard_pod %} 132 =head1 BUGS AND LIMITATIONS 133 134 No bugs have been reported. 135 136 Please report any bugs or feature requests through the web interface at 137 L<http://rt.cpan.org>. 138 139 =head1 INSTALLATION 140 141 See perlmodinstall for information and options on installing Perl modules. 142 143 =head1 AVAILABILITY 144 145 The latest version of this module is available from the Comprehensive Perl 146 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 147 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 148 149 =head1 AUTHORS 150 151 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 152 153 Ran Eilam C<< <eilara@cpan.org> >> 154 155 =head1 COPYRIGHT AND LICENSE 156 157 Copyright 2001 by Marcel GrE<uuml>nauer 158 159 This library is free software; you can redistribute it and/or modify 160 it under the same terms as Perl itself. 133 161 134 162 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Modular.pm
r9731 r16279 93 93 package. L<Aspect::Library::Singleton> for example. 94 94 95 {% PROCESS standard_pod %} 95 =head1 BUGS AND LIMITATIONS 96 97 No bugs have been reported. 98 99 Please report any bugs or feature requests through the web interface at 100 L<http://rt.cpan.org>. 101 102 =head1 INSTALLATION 103 104 See perlmodinstall for information and options on installing Perl modules. 105 106 =head1 AVAILABILITY 107 108 The latest version of this module is available from the Comprehensive Perl 109 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 110 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 111 112 =head1 AUTHORS 113 114 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 115 116 Ran Eilam C<< <eilara@cpan.org> >> 117 118 =head1 COPYRIGHT AND LICENSE 119 120 Copyright 2001 by Marcel GrE<uuml>nauer 121 122 This library is free software; you can redistribute it and/or modify 123 it under the same terms as Perl itself. 96 124 97 125 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut.pm
r9731 r16279 48 48 __END__ 49 49 50 {% USE p = PodGenerated %}51 52 50 =head1 NAME 53 51 … … 72 70 See the L<Aspect|::Aspect> pod for a guide to the Aspect module. 73 71 74 {% PROCESS standard_pod %} 72 =head1 BUGS AND LIMITATIONS 73 74 No bugs have been reported. 75 76 Please report any bugs or feature requests through the web interface at 77 L<http://rt.cpan.org>. 78 79 =head1 INSTALLATION 80 81 See perlmodinstall for information and options on installing Perl modules. 82 83 =head1 AVAILABILITY 84 85 The latest version of this module is available from the Comprehensive Perl 86 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 87 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 88 89 =head1 AUTHORS 90 91 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 92 93 Ran Eilam C<< <eilara@cpan.org> >> 94 95 =head1 COPYRIGHT AND LICENSE 96 97 Copyright 2001 by Marcel GrE<uuml>nauer 98 99 This library is free software; you can redistribute it and/or modify 100 it under the same terms as Perl itself. 75 101 76 102 =cut 103 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/AndOp.pm
r9731 r16279 19 19 __END__ 20 20 21 {% USE p = PodGenerated %}22 23 21 =head1 NAME 24 22 25 {% p.package %}- Logical 'and' operation pointcut23 Aspect::Pointcut::AndOp - Logical 'and' operation pointcut 26 24 27 25 =head1 SYNOPSIS 28 26 29 {% p.package %}->new;27 Aspect::Pointcut::AndOp->new; 30 28 31 29 =head1 DESCRIPTION … … 33 31 None yet. 34 32 35 {% PROCESS standard_pod %} 33 =head1 BUGS AND LIMITATIONS 34 35 No bugs have been reported. 36 37 Please report any bugs or feature requests through the web interface at 38 L<http://rt.cpan.org>. 39 40 =head1 INSTALLATION 41 42 See perlmodinstall for information and options on installing Perl modules. 43 44 =head1 AVAILABILITY 45 46 The latest version of this module is available from the Comprehensive Perl 47 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 48 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 49 50 =head1 AUTHORS 51 52 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 53 54 Ran Eilam C<< <eilara@cpan.org> >> 55 56 =head1 COPYRIGHT AND LICENSE 57 58 Copyright 2001 by Marcel GrE<uuml>nauer 59 60 This library is free software; you can redistribute it and/or modify 61 it under the same terms as Perl itself. 36 62 37 63 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/BinOp.pm
r9731 r16279 42 42 __END__ 43 43 44 {% USE p = PodGenerated %}45 46 44 =head1 NAME 47 45 48 {% p.package %}- Binary operation pointcut46 Aspect::Pointcut::BinOp - Binary operation pointcut 49 47 50 48 =head1 SYNOPSIS 51 49 52 {% p.package %}->new;50 Aspect::Pointcut::BinOp->new; 53 51 54 52 =head1 DESCRIPTION … … 56 54 None yet. 57 55 58 {% PROCESS standard_pod %} 56 =head1 BUGS AND LIMITATIONS 57 58 No bugs have been reported. 59 60 Please report any bugs or feature requests through the web interface at 61 L<http://rt.cpan.org>. 62 63 =head1 INSTALLATION 64 65 See perlmodinstall for information and options on installing Perl modules. 66 67 =head1 AVAILABILITY 68 69 The latest version of this module is available from the Comprehensive Perl 70 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 71 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 72 73 =head1 AUTHORS 74 75 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 76 77 Ran Eilam C<< <eilara@cpan.org> >> 78 79 =head1 COPYRIGHT AND LICENSE 80 81 Copyright 2001 by Marcel GrE<uuml>nauer 82 83 This library is free software; you can redistribute it and/or modify 84 it under the same terms as Perl itself. 59 85 60 86 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/Call.pm
r9731 r16279 24 24 __END__ 25 25 26 {% USE p = PodGenerated %}27 28 26 =head1 NAME 29 27 30 {% p.package %}- Call pointcut28 Aspect::Pointcut::Call - Call pointcut 31 29 32 30 =head1 SYNOPSIS 33 31 34 {% p.package %}->new;32 Aspect::Pointcut::Call->new; 35 33 36 34 =head1 DESCRIPTION … … 38 36 None yet. 39 37 40 {% PROCESS standard_pod %} 38 =head1 BUGS AND LIMITATIONS 39 40 No bugs have been reported. 41 42 Please report any bugs or feature requests through the web interface at 43 L<http://rt.cpan.org>. 44 45 =head1 INSTALLATION 46 47 See perlmodinstall for information and options on installing Perl modules. 48 49 =head1 AVAILABILITY 50 51 The latest version of this module is available from the Comprehensive Perl 52 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 53 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 54 55 =head1 AUTHORS 56 57 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 58 59 Ran Eilam C<< <eilara@cpan.org> >> 60 61 =head1 COPYRIGHT AND LICENSE 62 63 Copyright 2001 by Marcel GrE<uuml>nauer 64 65 This library is free software; you can redistribute it and/or modify 66 it under the same terms as Perl itself. 41 67 42 68 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/Cflow.pm
r9731 r16279 62 62 __END__ 63 63 64 {% USE p = PodGenerated %}65 66 64 =head1 NAME 67 65 68 {% p.package %}- Cflow pointcut66 Aspect::Pointcut::Cflow - Cflow pointcut 69 67 70 68 =head1 SYNOPSIS 71 69 72 {% p.package %}->new;70 Aspect::Pointcut::Cflow->new; 73 71 74 72 =head1 DESCRIPTION … … 76 74 None yet. 77 75 78 {% PROCESS standard_pod %} 76 =head1 BUGS AND LIMITATIONS 77 78 No bugs have been reported. 79 80 Please report any bugs or feature requests through the web interface at 81 L<http://rt.cpan.org>. 82 83 =head1 INSTALLATION 84 85 See perlmodinstall for information and options on installing Perl modules. 86 87 =head1 AVAILABILITY 88 89 The latest version of this module is available from the Comprehensive Perl 90 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 91 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 92 93 =head1 AUTHORS 94 95 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 96 97 Ran Eilam C<< <eilara@cpan.org> >> 98 99 =head1 COPYRIGHT AND LICENSE 100 101 Copyright 2001 by Marcel GrE<uuml>nauer 102 103 This library is free software; you can redistribute it and/or modify 104 it under the same terms as Perl itself. 79 105 80 106 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/NotOp.pm
r9731 r16279 29 29 __END__ 30 30 31 {% USE p = PodGenerated %}32 33 31 =head1 NAME 34 32 35 {% p.package %}- Logical 'not' operation pointcut33 Aspect::Pointcut::NotOp - Logical 'not' operation pointcut 36 34 37 35 =head1 SYNOPSIS 38 36 39 {% p.package %}->new;37 Aspect::Pointcut::NotOp->new; 40 38 41 39 =head1 DESCRIPTION … … 43 41 None yet. 44 42 45 {% PROCESS standard_pod %} 43 =head1 BUGS AND LIMITATIONS 44 45 No bugs have been reported. 46 47 Please report any bugs or feature requests through the web interface at 48 L<http://rt.cpan.org>. 49 50 =head1 INSTALLATION 51 52 See perlmodinstall for information and options on installing Perl modules. 53 54 =head1 AVAILABILITY 55 56 The latest version of this module is available from the Comprehensive Perl 57 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 58 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 59 60 =head1 AUTHORS 61 62 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 63 64 Ran Eilam C<< <eilara@cpan.org> >> 65 66 =head1 COPYRIGHT AND LICENSE 67 68 Copyright 2001 by Marcel GrE<uuml>nauer 69 70 This library is free software; you can redistribute it and/or modify 71 it under the same terms as Perl itself. 46 72 47 73 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/OrOp.pm
r9731 r16279 19 19 __END__ 20 20 21 {% USE p = PodGenerated %}22 23 21 =head1 NAME 24 22 25 {% p.package %}- Logical 'or' operation pointcut23 Aspect::Pointcut::OrOp - Logical 'or' operation pointcut 26 24 27 25 =head1 SYNOPSIS 28 26 29 {% p.package %}->new;27 Aspect::Pointcut::OrOp->new; 30 28 31 29 =head1 DESCRIPTION … … 33 31 None yet. 34 32 35 {% PROCESS standard_pod %} 33 =head1 BUGS AND LIMITATIONS 34 35 No bugs have been reported. 36 37 Please report any bugs or feature requests through the web interface at 38 L<http://rt.cpan.org>. 39 40 =head1 INSTALLATION 41 42 See perlmodinstall for information and options on installing Perl modules. 43 44 =head1 AVAILABILITY 45 46 The latest version of this module is available from the Comprehensive Perl 47 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 48 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 49 50 =head1 AUTHORS 51 52 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 53 54 Ran Eilam C<< <eilara@cpan.org> >> 55 56 =head1 COPYRIGHT AND LICENSE 57 58 Copyright 2001 by Marcel GrE<uuml>nauer 59 60 This library is free software; you can redistribute it and/or modify 61 it under the same terms as Perl itself. 36 62 37 63 =cut -
lang/perl/Aspect/trunk/lib/Aspect/Weaver.pm
r9731 r16279 42 42 __END__ 43 43 44 {% USE p = PodGenerated %}45 46 44 =head1 NAME 47 45 … … 65 63 See the L<Aspect|::Aspect> pod for a guide to the Aspect module. 66 64 67 {% PROCESS standard_pod %} 65 =head1 BUGS AND LIMITATIONS 66 67 No bugs have been reported. 68 69 Please report any bugs or feature requests through the web interface at 70 L<http://rt.cpan.org>. 71 72 =head1 INSTALLATION 73 74 See perlmodinstall for information and options on installing Perl modules. 75 76 =head1 AVAILABILITY 77 78 The latest version of this module is available from the Comprehensive Perl 79 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 80 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 81 82 =head1 AUTHORS 83 84 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 85 86 Ran Eilam C<< <eilara@cpan.org> >> 87 88 =head1 COPYRIGHT AND LICENSE 89 90 Copyright 2001 by Marcel GrE<uuml>nauer 91 92 This library is free software; you can redistribute it and/or modify 93 it under the same terms as Perl itself. 68 94 69 95 =cut 96
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)