VOOZH about

URL: https://manpages.org/xacobeoutils/3

⇱ man Xacobeo::Utils (3): Utilities.


Xacobeo::Utils(3) Utilities.

SYNOPSIS


use Xacobeo::Utils qw(:dom :xml);

if (isa_dom_text($node)) {
my $text = escape_xml_text($node->nodeValue);
print "$text\n";
}

DESCRIPTION

This package provides utility functions that are shared among the different modules in this project.

IMPORTS

The following import tags are defined:

:xml

Import the utilities.

:dom

Imports the utilities.

FUNCTIONS

The following functions are available:

escape_xml_text

Escapes the text as if would be added to a Text node. This function escapes only the entities <, > and &.

Parameters:

  • The string to escape.

escape_xml_attribute

Escapes the text as if would be added to an Attribute. This function escapes the entities <, >, &, ' and ".

Parameters:

  • The string to escape.

isa_dom_document

Returns true if the node is a (instance of XML::LibXML::Document).

Parameters:

  • The node to check.

isa_dom_element

Returns true if the node is a (instance of XML::LibXML::Element).

Parameters:

  • The node to check.

isa_dom_attr

Returns true if the node is a (instance of XML::LibXML::Attr).

Parameters:

  • The node to check.

isa_dom_nodelist

Returns true if the node is a (instance of XML::LibXML::NodeList).

Parameters:

  • The node to check.

isa_dom_text

Returns true if the node is a (instance of XML::LibXML::Text).

: XML::LibXML considers that and nodes are also nodes. This method doesn't consider a nor a node as being nodes.

Parameters:

  • The node to check.

isa_dom_comment

Returns true if the node is a (instance of XML::LibXML::Comment).

Parameters:

  • The node to check.

isa_dom_node

Returns true if the node is a (instance of XML::LibXML::Node).

Parameters:

  • The node to check.

isa_dom_pi

Returns true if the node is a (also known as: processing instruction) (instance of XML::LibXML::PI).

Parameters:

  • The node to check.

isa_dom_dtd

Returns true if the node is a (instance of XML::LibXML::Dtd).

Parameters:

  • The node to check.

isa_dom_cdata

Returns true if the node is a (instance of XML::LibXML::CDATASection).

Parameters:

  • The node to check.

isa_dom_namespace

Returns true if the node is a (instance of XML::LibXML::Namespace).

: The doesn't define an object type named but XML::LibXML does so this function is named 'isa_dom' for consistency with the other functions.

Parameters:

  • The node to check.

isa_dom_literal

Returns true if the node is a (instance of XML::LibXML::Literal).

: The doesn't define an object type named but XML::LibXML does so this function is named 'isa_dom' for consistency with the other functions.

Parameters:

  • The node to check.

isa_dom_boolean

Returns true if the node is a (instance of XML::LibXML::Boolean).

: The doesn't define an object type named but XML::LibXML does so this function is named 'isa_dom' for consistency with the other functions.

Parameters:

  • The node to check.

isa_dom_number

Returns true if the node is a (instance of XML::LibXML::Number).

: The doesn't define an object type named but XML::LibXML does so this function is named 'isa_dom' for consistency with the other functions.

Parameters:

  • The node to check.

scrollify

Wraps a widget in a scrolled window.

Parameters:

  • The widget to wrap.

  • The width of the scroll window. If then -1 will be used.

  • The height of the scroll window. If then -1 will be used.

AUTHORS

Emmanuel Rodriguez <[email protected]>.

COPYRIGHT AND LICENSE

Copyright (C) 2008,2009 by Emmanuel Rodriguez.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.