XML::Toolkit::App - An XML::Toolkit Application


XML-Toolkit documentation  | view source Contained in the XML-Toolkit distribution.

Index


NAME

Top

XML::Toolkit::App - An XML::Toolkit Application

VERSION

Top

This documentation refers to version 0.02.

SYNOPSIS

Top

    use XML::Toolkit::App;

    my $loader = XML::Toolkit::App->new( xmlns => { '' => 'MyApp' } )->loader;
    $loader->parse_file( $file );
    print join '', @{ $loader->render };

or

    use XML::Toolkit::App;
    my $builder = XML::Toolkit::App->new( xmlns => { '' => 'MyApp' } )->builder
    $builder->parse_string($xml)
    say $builder->render()

DESCRIPTION

Top

SUBROUTINES / METHODS

Top

DEPENDENCIES

Top

Moose

AUTHOR

Top

Chris Prather (chris@prather.org)

LICENCE

Top

Copyright 2009 by Chris Prather.

This software is free. It is licensed under the same terms as Perl itself.


XML-Toolkit documentation  | view source Contained in the XML-Toolkit distribution.