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

..03-May-2022-

bin/H13-Dec-2012-3327

example/H03-May-2022-4,6624,115

lib/XML/H13-Dec-2012-3,0471,684

t/H13-Dec-2012-4,0353,619

Build.PLH A D11-Oct-2012705 2926

ChangesH A D13-Dec-20122.6 KiB9367

LICENSEH A D13-Dec-201218.2 KiB378292

MANIFESTH A D09-Oct-20122.1 KiB102101

META.ymlH A D13-Dec-2012658 2928

Makefile.PLH A D13-Dec-2012301 85

READMEH A D09-Oct-20121.5 KiB5434

README

1XML-Rules
2
3This is yet another XML module built on top of XML::Parser:Expat.
4
5It allows you to specify "rules", subroutines to be run once a tag
6is fully parsed and either process the data from the tag itself
7and its children or specify what parts of the data and how to add
8to the data structure being built for the parent tag.
9
10You may look at this either as a XML::Simple on steroids, a way
11to build a more customized datastructure out of your XML or as yet
12another even based XML parser that differs from the rest in that it
13handles building the structure(s) containing the needed data for you,
14simplifying the callbacks.
15
16Please see http://www.perlmonks.org/?node_id=581313 for discussion.
17
18INSTALLATION
19
20To install this module, run the following commands:
21
22    perl Build.PL
23    ./Build
24    ./Build test
25    ./Build install
26
27
28SUPPORT AND DOCUMENTATION
29
30After installing, you can find documentation for this module with the perldoc command.
31
32    perldoc XML::Rules
33
34You can also look for information at:
35
36    Search CPAN
37        http://search.cpan.org/dist/XML-Rules
38
39    CPAN Request Tracker:
40        http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-Rules
41
42    AnnoCPAN, annotated CPAN documentation:
43        http://annocpan.org/dist/XML-Rules
44
45    CPAN Ratings:
46        http://cpanratings.perl.org/d/XML-Rules
47
48COPYRIGHT AND LICENCE
49
50Copyright (C) 2006-2012 Jan Krynicky
51
52This program is free software; you can redistribute it and/or modify it
53under the same terms as Perl itself.
54