Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

template::declare::tagset::rdf(3pm) [debian man page]

Template::Declare::TagSet::RDF(3pm)			User Contributed Perl Documentation		       Template::Declare::TagSet::RDF(3pm)

NAME
Template::Declare::TagSet::RDF - Template::Declare tag set for RDF SYNOPSIS
# normal use on the user side: use base 'Template::Declare'; use Template::Declare::Tags RDF => { namespace => 'rdf' }; template foo => sub { rdf::RDF { attr { 'xmlns:rdf' => "http://www.w3.org/1999/02/22-rdf-syntax-ns#" } rdf::Description { attr { about => "Matilda" } #... } } }; DESCRIPTION
Template::Declare::TagSet::RDF defines a full set of RDF tags for use in Template::Declare templates. You generally won't use this module directly, but will load it via: use Template::Declare::Tags 'RDF'; METHODS
new( PARAMS ) my $html_tag_set = Template::Declare::TagSet->new({ package => 'MyRDF', namespace => 'rdf', }); Constructor inherited from Template::Declare::TagSet. get_tag_list my $list = $tag_set->get_tag_list(); Returns an array ref of all the RDF tags defined by Template::Declare::TagSet::RDF. Here is the complete list: "Alt" "Bag" "Description" "List" "Property" "RDF" "Seq" "Statement" "XMLLiteral" "about" "li" "first" "nil" "object" "predicate" "resource" "rest" "subject" "type" "value" "_1" "_2" "_3" "_4" "_5" "_6" "_7" "_8" "_9" "_10" This list may be not exhaustive; if you find some important missing ones, please let us know. :) AUTHOR
Agent Zhang <agentzh@yahoo.cn> SEE ALSO
Template::Declare::TagSet, Template::Declare::TagSet::HTML, Template::Declare::TagSet::XUL, Template::Declare::Tags, Template::Declare. perl v5.10.1 2010-12-08 Template::Declare::TagSet::RDF(3pm)

Check Out this Related Man Page

Template::Manual(3)					User Contributed Perl Documentation				       Template::Manual(3)

NAME
Template::Manual - Template Toolkit User Manual Template Toolkit Manual The Template Toolkit manual contains documentation on using and extending the Template Toolkit. Template::Manual::Intro The Template::Manual::Intro page provides an introduction to the Template Toolkit Template::Manual::Syntax The Template::Manual::Syntax desribes the syntax and structure of templates and the directive tags embedded within them. Template::Manual::Directives The Template::Manual::Directives page lists all the Template Toolkit directives and gives examples of their use. Template::Manual::Variables The Template::Manual::Variables page describes the use of variables in templates. Template::Manual::VMethods The Template::Manual::VMethods page provides a full list of virtual methods that can be used in conjunction with variables, and gives examples of their use. Template::Manual::Config The Template::Manual::Config page describes all of the Template Toolkit configuration options. Template::Manual::Filters The Template::Manual::Filters page lists all of the Template Toolkit filters and gives examples of their use. Template::Manual::Plugins The Template::Manual::Plugins page lists all of the standard plugins distributed with Template Toolkit and gives examples of their use. Template::Manual::Internals The Template::Manual::Internals page describes the internal workings of the Template Toolkit. It is aimed at developers who wish to extend or modify the Template::Manual::Views The Template::Manual::Views page describes the experimental "VIEW" directive. Template::Manual::Credits The Template::Manual::Credits page lists the people who have contributed to the Template Toolkit. perl v5.12.1 2008-11-13 Template::Manual(3)
Man Page