Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

publican::createbrand(3pm) [debian man page]

Publican::CreateBrand(3pm)				User Contributed Perl Documentation				Publican::CreateBrand(3pm)

NAME
Publican::CreateBrand - A module for generating new brand boilerplate. VERSION
This document describes Publican::CreateBrand version 0.1 SYNOPSIS
use Publican::CreateBrand; my $creator = Publican::CreateBrand->new({name => 'foo'}); $creator->create(); DESCRIPTION
Creates a new Brand for use with the publican package INTERFACE
new Create a Publican object set. Parameters: name Brand Name (Required) create Create all the required files. xml_files Create XML files. conf_files Create configuration files. images Create images dir and all the default images in svg and png format. default_images Generate images with default text in SVG and PNG formats. DIAGNOSTICS
"unknown args %s" All subs with named parameters will return this error when unexpected named arguments are provided. "%s is a required parameter" Any sub with a mandatory parameter will return this error if the parameter is undef. ""Can't create brand, directory %s exists!" When creating a Brand a directory is created with the same name as the brand. If a directory with that name is in the current directory the creation will fail. "Invalid language supplied: %s" The language supplied is not a valid language. "Can't create directory: %s" "Could not open %s for output!" "Can't write file" "Can't open SVG file %s" CONFIGURATION AND ENVIRONMENT
Publican::CreateBrand requires no configuration files or environment variables. DEPENDENCIES
Carp version Config::Simple File::Path File::pushd DateTime Image::Magick Publican Term::ANSIColor INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
None reported. Please report any bugs or feature requests to "publican-list@redhat.com", or through the web interface at <https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Publican&amp;component=publican>. AUTHOR
Jeff Fearn "<jfearn@redhat.com>" perl v5.14.2 2012-06-18 Publican::CreateBrand(3pm)

Check Out this Related Man Page

Publican::XmlClean(3pm) 				User Contributed Perl Documentation				   Publican::XmlClean(3pm)

NAME
Publican::XmlClean - A module to reformat XML to Publican standards VERSION
This document describes Publican::XmlClean version $VERSION SYNOPSIS
use Publican::XmlClean; my $cleaner = Publican::XmlClean->new( { clean_id => 1 } ); foreach my $xml_file ( sort(@xml_files) ) { $cleaner->process_file( { file => $xml_file, out_file => $xml_file } ); } DESCRIPTION
Publican::XmlClean tidies XML formatting and filters structure based on input rules. INTERFACE
new Create a new Publican::XmlClean object. print_known_tags Print a list of tags that have had their output QA'd. print_banned_tags Print a list of tags that are not supported. prune_xml($node) Remove unwanted nodes. If $lang is set then delete all nodes that have lang set and do not contain $lang If $arch is set then delete all nodes that have arch set and do not contain $arch If $condition is set then delete all nodes that have condition set and do not contain $condition Clean_ID Rename ID's and update xrefs. If this node has a title as a child set it's ID else remove the ID print_xml Print out utf8 XML files Have to output xml/DTD header my_as_XML Traverse tree and output xml as text. Overrides traverse ... evil stuff. validate_tables Ensure Tables comply to requirements not enforceable in XML validation. 1. tgroup attribute cols must match the number of entries in every row. sort_glossaries Sort glosslists process_file Create XML::TreeBuilder object and perform operations. DIAGNOSTICS
"unknown args %s" All subs with named parameters will return this error when unexpected named arguments are provided. "%s is a required argument" Any sub with a mandatory parameter will return this error if the parameter is undef. "Could not open %s for output!" The named file could not be opened. "Can't calculate image size of %s" Images are automatically scaled if thy are to wide, this check could not be performed due to either access permissions or file weirdness. CONFIGURATION AND ENVIRONMENT
Publican::XmlClean requires no configuration files or environment variables. DEPENDENCIES
Carp version XML::TreeBuilder Text::Wrap Config::Simple Publican File::Path Image::Size Term::ANSIColor Cwd INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests to "publican-list@redhat.com", or through the web interface at <https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Publican&#59amp;version=rawhide&amp;component=publican>. AUTHOR
Jeff Fearn "<jfearn@redhat.com>" perl v5.14.2 2012-06-18 Publican::XmlClean(3pm)
Man Page