• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D10-Nov-20042.9 KiB7359

LibXML.pmH A D10-Nov-200416.6 KiB554283

MANIFESTH A D10-Nov-2004139 98

META.ymlH A D10-Nov-2004364 1210

Makefile.PLH A D24-Jan-2004525 167

READMEH A D10-Nov-20041 KiB3523

ex.plH A D24-Jan-20042.5 KiB10277

test.plH A D10-Nov-20041.6 KiB5533

README

1  ==================================================================
2  XML::SimpleObject::LibXML
3  Copyright 2001-2003 by Dan Brian.
4
5  This program is free software; you can redistribute it and/or modify
6  it under the same terms as Perl itself.
7  ==================================================================
8
9DESCRIPTION
10
11This is a small and simple package that takes the output of an XML parser
12and gives simple methods for accessing the structure of an XML document. It
13is very lightweight, but provides the simplest access to an XML document
14possible. It does not subclass XML::LibXML; rather, it is meant to serve
15purely as an object struct for an outgoing tree. Recently tree manipulation
16was also added.
17
18I originally wrote the module as an example of parsing without handlers. This
19was before it used other modules.
20
21REQUIREMENTS
22
23You need XML::LibXML.
24
25Tested on Linux, FreeBSD, and Win32 under perl5.6.0, 5.6.1, 5.8.0, 5.8.4.
26
27INSTALLATION
28
29  perl Makefile.PL
30  make
31  make install
32
33Then look at ex.pl. That pretty much sums up the functionality.
34
35