How to Install and Uninstall perl-XML-NamespaceFactory Package on openSuSE Tumbleweed

Last updated: May 14,2024

1. Install "perl-XML-NamespaceFactory" package

This guide covers the steps necessary to install perl-XML-NamespaceFactory on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-XML-NamespaceFactory

2. Uninstall "perl-XML-NamespaceFactory" package

This guide covers the steps necessary to uninstall perl-XML-NamespaceFactory on openSuSE Tumbleweed:

$ sudo zypper remove perl-XML-NamespaceFactory

3. Information about the perl-XML-NamespaceFactory package on openSuSE Tumbleweed

Information for package perl-XML-NamespaceFactory:
--------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-XML-NamespaceFactory
Version : 1.02-1.30
Arch : noarch
Vendor : openSUSE
Installed Size : 25.5 KiB
Installed : No
Status : not installed
Source package : perl-XML-NamespaceFactory-1.02-1.30.src
Upstream URL : http://search.cpan.org/dist/XML-NamespaceFactory/
Summary : Simple factory objects for SAX namespaced names.
Description :
Simply create a new XML::NamespaceFactory object with the namespace you
wish to use as its single parameter. If you wish to use the empty
namespace, simply pass in an empty string (but undef will not do).
Then, when you want to get a JClark name, call a method on that object the
name of which is the local name you wish to have. It'll return the JClark
notation for that local name in your namespace.
Unfortunately, some local names legal in XML are not legal in Perl. To
circumvent this, you can use the hash notation in which you access a key on
the object the name of which is the local name you wish to have. This will
work just as the method call name but will accept more characters. Note
that it does not check that the name you ask for is a valid XML name. This
form is more general but slower.
If this is not clear, hopefully the SYNOPSIS should help :)