Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

padre::ppi::updatecopyright(3pm) [debian man page]

Padre::PPI::UpdateCopyright(3pm)			User Contributed Perl Documentation			  Padre::PPI::UpdateCopyright(3pm)

NAME
Padre::PPI::UpdateCopyright - Demonstration transform SYNOPSIS
my $transform = Padre::PPI::UpdateCopyright->new( name => 'Adam Kennedy' ); $transform->apply( Padre::Current->document ); DESCRIPTION
"Padre::PPI::UpdateCopyright" provides a demonstration of a typical Padre::Transform class. This class implements a document transform that will take the name of an author and update the copyright statement to refer to the current year, if it does not already do so. METHODS
new my $transform = Padre::PPI::UpdateCopyright->new( name => 'Adam Kennedy' ); The "new" constructor creates a new transform object for a specific author. It takes a single "name" parameter that should be the name (or longer string) for the author. Specifying the name is required to allow the changing of a subset of copyright statements that refer to you from a larger set in a file. name The "name" accessor returns the author name that the transform will be searching for copyright statements of. TO DO
May need to overload some methods to forcefully prevent Document objects becoming children of another Node. SUPPORT
See the support section in the main module. AUTHOR
Adam Kennedy <adamk@cpan.org> COPYRIGHT
Copyright 2009-2010 The Padre development team as listed in Padre.pm. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.14.2 2012-06-27 Padre::PPI::UpdateCopyright(3pm)

Check Out this Related Man Page

PPI::Transform::UpdateCopyright(3)			User Contributed Perl Documentation			PPI::Transform::UpdateCopyright(3)

NAME
PPI::Transform::UpdateCopyright - Demonstration PPI::Transform class SYNOPSIS
my $transform = PPI::Transform::UpdateCopyright->new( name => 'Adam Kennedy' ); $transform->file('Module.pm'); DESCRIPTION
PPI::Transform::UpdateCopyright provides a demonstration of a typical PPI::Transform class. This class implements a document transform that will take the name of an author and update the copyright statement to refer to the current year, if it does not already do so. METHODS
new my $transform = PPI::Transform::UpdateCopyright->new( name => 'Adam Kennedy' ); The "new" constructor creates a new transform object for a specific author. It takes a single "name" parameter that should be the name (or longer string) for the author. Specifying the name is required to allow the changing of a subset of copyright statements that refer to you from a larger set in a file. name The "name" accessor returns the author name that the transform will be searching for copyright statements of. TO DO
- May need to overload some methods to forcefully prevent Document objects becoming children of another Node. SUPPORT
See the support section in the main module. AUTHOR
Adam Kennedy <adamk@cpan.org> COPYRIGHT
Copyright 2009 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.16.2 2011-02-25 PPI::Transform::UpdateCopyright(3)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed script - transform 1st matching line only

How do transform only the first line that matches my regex? I've tried q but it just quit my script in the middle. (9 Replies)
Discussion started by: yogert909
9 Replies

2. UNIX for Dummies Questions & Answers

How to log transform a text file?

How can I log transform (log 2) a text file which is a single column of numbers? (4 Replies)
Discussion started by: evelibertine
4 Replies

3. Shell Programming and Scripting

transpose selected columns

Can I transform input like the below ? Note: Insert zeros if there is no value to transform. Input key name score key1 abc 10 key2 abc 20 key1 xxx 100 key2 xxx 20 key1 zzz 0 key2 zzz 29 key3 zzz 129 key1 yyy 39output abc ... (1 Reply)
Discussion started by: quincyjones
1 Replies

4. Programming

STL transform question

Hi all, I pass to the transform algorithm two vectors, and the suma function. #include <algorithm> #include <iostream> #include <iterator> #include <vector> using namespace std; class Duo{ public: int one; int two; }; Duo suma(Duo first, Duo last){ Duo ret; ... (1 Reply)
Discussion started by: santiagorf
1 Replies