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

..03-May-2022-

Enhanced/H03-May-2022-747429

LibXML/H03-May-2022-396185

ChangesH A D07-Mar-20031.6 KiB4534

MANIFESTH A D27-Jan-200277 97

Makefile.PLH A D03-May-2022417 1410

READMEH A D21-Jan-20031.1 KiB3523

SimpleObject.pmH A D03-May-20227.1 KiB291113

ex.plH A D22-Jan-20021.3 KiB6145

test.plH A D25-Aug-2001662 215

README

1  ==================================================================
2  XML::SimpleObject
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::Parser or XML::LibXML; rather, it is meant
15to serve purely as an object struct for an outgoing tree.
16
17I originally wrote the module as an example of parsing without handlers.
18
19REQUIREMENTS
20
21You need either XML::Parser (for XML::SimpleObject) or XML::LibXML (for
22XML::SimpleObject::LibXML).
23
24Tested on Linux, FreeBSD, and Win32 under perl5.6.0 and perl5.6.1.
25
26INSTALLATION
27
28  (cd LibXML/; if installing the LibXML version)
29  perl Makefile.PL
30  make
31  make install
32
33Then look at ex.pl. That pretty much sums up the functionality.
34
35