summaryrefslogtreecommitdiff
path: root/textproc/p5-XML-Descent/DESCR
diff options
context:
space:
mode:
authorbouyer <bouyer>2015-09-11 15:11:32 +0000
committerbouyer <bouyer>2015-09-11 15:11:32 +0000
commitbeeb967555a5b1c939818d2ab1d8dccc1a92ddcc (patch)
tree47b2e296cf62adecbed2a16312685e737fbe2fc4 /textproc/p5-XML-Descent/DESCR
parentd98f0fe33f673ab53e6a23d551e9ef3a76b54834 (diff)
downloadpkgsrc-beeb967555a5b1c939818d2ab1d8dccc1a92ddcc.tar.gz
Import p5-XML-Descent-1.04 to pkgsrc
The conventional models for parsing XML are either DOM (a data structure representing the entire document tree is created) or SAX (callbacks are issued for each element in the XML). XML grammar is recursive - so it's nice to be able to write recursive parsers for it. XML::Descent allows such parsers to be created.
Diffstat (limited to 'textproc/p5-XML-Descent/DESCR')
-rw-r--r--textproc/p5-XML-Descent/DESCR6
1 files changed, 6 insertions, 0 deletions
diff --git a/textproc/p5-XML-Descent/DESCR b/textproc/p5-XML-Descent/DESCR
new file mode 100644
index 00000000000..f2417136c8d
--- /dev/null
+++ b/textproc/p5-XML-Descent/DESCR
@@ -0,0 +1,6 @@
+The conventional models for parsing XML are either DOM (a data structure
+representing the entire document tree is created) or SAX (callbacks are
+issued for each element in the XML).
+
+XML grammar is recursive - so it's nice to be able to write recursive
+parsers for it. XML::Descent allows such parsers to be created.