Template::Plugin::XML::File - TT plugin for XML files


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

Index


NAME

Top

Template::Plugin::XML::File - TT plugin for XML files

SYNOPSIS

Top

    # different want to specify an XML file name
    [% USE xf = XML.File( filename ) %]
    [% USE xf = XML.File( file     = filename ) %]
    [% USE xf = XML.File( name     = filename ) %]
    [% USE xf = XML.File( xml_file = filename ) %]

    # different want to specify an XML file handle
    [% USE xf = XML.File( handle ) %]
    [% USE xf = XML.File( fh       = handle ) %]
    [% USE xf = XML.File( handle   = handle ) %]
    [% USE xf = XML.File( xml_fh   = handle ) %]

    [% xf.type   %]   # 'name' or 'handle'
    [% xf.name   %]   # filename (if defined)
    [% xf.handle %]   # file handle (if defined)




DESCRIPTION

Top

TODO

METHODS

Top

TODO

AUTHORS

Top

Andy Wardley, Mark Fowler and others...

COPYRIGHT

Top

SEE ALSO

Top

Template, Template::Plugins, Template::Plugin::XML::DOM, Template::Plugin::XML::RSS, Template::Plugin::XML::Simple, Template::Plugin::XML::XPath


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