XML/SAX/Context version 0.01 ============================ $Id: README,v 1.3 2003/08/15 16:11:31 mrodrigu Exp $ DESCRIPTION A sub-class of XML::SAX::Base that stores context information during parsing XML::SAX::Context can be used just as XML::SAX::Base, but it will let you use various methods from the SAX handlers that give you access to the current parsing context: current tag, level in the tree, ancestors... I found that this kind of code needs to be written for a lot of SAX processing, so this module provides it once and for all. It simply stores the stack of open elements and provides methods to access it. See the pod for the list of methods that are provided by the module. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES This module requires these other modules and libraries: XML::SAX::Base Hook::LexWrap List::Util COPYRIGHT AND LICENCE Put the correct copyright and licence information here. Copyright (C) 2003 Michel Rodriguez This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.