Take me over?
NAME
Posy::Plugin::Dump - Posy plugin to aid debugging by dumping object contents
VERSION
This describes version 0.05 of Posy::Plugin::Dump.
SYNOPSIS
@plugins = qw(Posy::Core
...
Posy::Plugin::Dump));
@actions = qw(init_params
parse_path
stop_if_not_found
...
dump
);
DESCRIPTION
This plugin is for developers to aid debugging by "dumping" the contents of $self and the "state" hashes to STDERR when it is called. Provides a 'dump' method which can be put as an action into the actions list or into the entry_actions list (or both).
Activation
This plugin needs to be added to both the plugins list and the actions list. It doesn't really matter where it is in the plugins list.
In the (entry_)actions list, it goes whereever you want it to go.
Flow Action Methods
Methods implementing actions.
dump
$self->dump();
$self->dump(\%flow_state);
$self->dump(\%flow_state, \%current_entry, \%entry_state);
Dump object data (for debugging)
This can be called as a flow action or as an entry action, and will dump the given state hashes accordingly.
REQUIRES
Data::Dumper
Posy::Core
Posy
Test::More
SEE ALSO
perl(1). Posy
BUGS
Please report any bugs or feature requests to the author.
AUTHOR
Kathryn Andersen (RUBYKAT)
perlkat AT katspace dot com
http://www.katspace.com
COPYRIGHT AND LICENCE
Copyright (c) 2004 by Kathryn Andersen
Based in part on the 'css' blosxom plugin by Eric Davis <edavis <at> foobargeek <dot> com> http://www.foobargeek.com And in part on the 'flavourmenu' blosxom plugin by Tim Lambert (lambert <at> cse <dot> unsw <dot> edu <dot> au)
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.