Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/libxml-raku/libxml-raku
Raku bindings to the libxml2 native library
https://github.com/libxml-raku/libxml-raku
libxml-dom libxml2 raku xpath
Last synced: 3 months ago
JSON representation
Raku bindings to the libxml2 native library
- Host: GitHub
- URL: https://github.com/libxml-raku/libxml-raku
- Owner: libxml-raku
- License: artistic-2.0
- Created: 2019-01-07T02:37:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-18T20:00:15.000Z (8 months ago)
- Last Synced: 2024-05-18T21:20:46.882Z (8 months ago)
- Topics: libxml-dom, libxml2, raku, xpath
- Language: Raku
- Homepage:
- Size: 5.08 MB
- Stars: 11
- Watchers: 3
- Forks: 5
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[![Actions Status](https://github.com/libxml-raku/LibXML-raku/workflows/test/badge.svg)](https://github.com/libxml-raku/LibXML-raku/actions)
[![SparrowCI](https://ci.sparrowhub.io/project/git-dwarring-LibXML-raku/badge)](https://ci.sparrowhub.io)[[Raku LibXML Project]](https://libxml-raku.github.io)
/ [[LibXML Module]](https://libxml-raku.github.io/LibXML-raku)
/ [](https://libxml-raku.github.io/LibXML-raku/)NAME
====LibXML - Raku bindings to the libxml2 native library
SYNOPSIS
========use LibXML;
use LibXML::Document;
my LibXML::Document $doc .= parse: :string('');
$doc.root.nodeValue = 'World!';
say $doc.Str;
#
# World!
say $doc;
# World!my Version $library-version = LibXML.version;
my Version $module-version = LibXML.^ver;DESCRIPTION
===========This module is an interface to libxml2, providing XML and HTML parsers with DOM, SAX and XMLReader interfaces, a large subset of DOM Layer 3 interface and a XML::XPath-like interface to XPath API of libxml2.
For further information, please check the following documentation:
DOM Objects
-----------The nodes in the Document Object Model (DOM) are represented by the following classes (most of which "inherit" from [LibXML::Node](https://libxml-raku.github.io/LibXML-raku/Node)):
* [LibXML::Document](https://libxml-raku.github.io/LibXML-raku/Document) - LibXML DOM document class
* [LibXML::Attr](https://libxml-raku.github.io/LibXML-raku/Attr) - LibXML attribute class
* [LibXML::CDATA](https://libxml-raku.github.io/LibXML-raku/CDATA) - LibXML class for DOM CDATA sections
* [LibXML::Comment](https://libxml-raku.github.io/LibXML-raku/Comment) - LibXML class for comment DOM nodes
* [LibXML::DocumentFragment](https://libxml-raku.github.io/LibXML-raku/DocumentFragment) - LibXML's DOM L2 Document Fragment implementation
* [LibXML::Dtd](https://libxml-raku.github.io/LibXML-raku/Dtd) - LibXML front-end for DTD validation
* [LibXML::Element](https://libxml-raku.github.io/LibXML-raku/Element) - LibXML class for element nodes
* [LibXML::EntityRef](https://libxml-raku.github.io/LibXML-raku/EntityRef) - LibXML class for entity references
* [LibXML::Namespace](https://libxml-raku.github.io/LibXML-raku/Namespace) - LibXML namespaces (Inherits from [LibXML::Item](https://libxml-raku.github.io/LibXML-raku/Item))
* [LibXML::Node](https://libxml-raku.github.io/LibXML-raku/Node) - LibXML DOM abstract base node class
* [LibXML::Text](https://libxml-raku.github.io/LibXML-raku/Text) - LibXML text node class
* [LibXML::PI](https://libxml-raku.github.io/LibXML-raku/PI) - LibXML DOM processing instruction nodes
See also [LibXML::DOM](https://libxml-raku.github.io/LibXML-raku/DOM), which summarizes DOM classes and methods.
Container/Mapping classes
-------------------------* [LibXML::Attr::Map](https://libxml-raku.github.io/LibXML-raku/Attr/Map) - LibXML DOM attribute map class
* [LibXML::Node::List](https://libxml-raku.github.io/LibXML-raku/Node/List) - Sibling Node Lists
* [LibXML::Node::Set](https://libxml-raku.github.io/LibXML-raku/Node/Set) - XPath Node Sets
* [LibXML::HashMap](https://libxml-raku.github.io/LibXML-raku/HashMap) - LibXML Hash Bindings
Parsing
-------* [LibXML::Parser](https://libxml-raku.github.io/LibXML-raku/Parser) - LibXML Parser bindings
* [LibXML::PushParser](https://libxml-raku.github.io/LibXML-raku/PushParser) - LibXML Push Parser bindings
* [LibXML::Reader](https://libxml-raku.github.io/LibXML-raku/Reader) - LibXML Reader (pull parser) bindings
### SAX Parser
* [LibXML::SAX::Builder](https://libxml-raku.github.io/LibXML-raku/SAX/Builder) - Builds SAX callback sets
* [LibXML::SAX::Handler::SAX2](https://libxml-raku.github.io/LibXML-raku/SAX/Handler/SAX2) - SAX handler base class
* [LibXML::SAX::Handler::XML](https://libxml-raku.github.io/LibXML-raku/SAX/Handler/XML) - SAX Handler for XML
XPath and Searching
-------------------* [LibXML::XPath::Expression](https://libxml-raku.github.io/LibXML-raku/XPath/Expression) - XPath Compiled Expressions
* [LibXML::XPath::Context](https://libxml-raku.github.io/LibXML-raku/XPath/Context) - XPath Evaluation Contexts
* [LibXML::Pattern](https://libxml-raku.github.io/LibXML-raku/Pattern) - LibXML Patterns
* [LibXML::RegExp](https://libxml-raku.github.io/LibXML-raku/RegExp) - LibXML Regular Expression bindings
Validation
----------* [LibXML::Dtd](https://libxml-raku.github.io/LibXML-raku/Dtd) - LibXML DTD validation class
* [LibXML::Schema](https://libxml-raku.github.io/LibXML-raku/Schema) - LibXML schema validation class
* [LibXML::RelaxNG](https://libxml-raku.github.io/LibXML-raku/RelaxNG) - LibXML RelaxNG validation class
Other
-----* [LibXML::Config](https://libxml-raku.github.io/LibXML-raku/Config) - LibXML global and local configuration
* [LibXML::Enums](https://libxml-raku.github.io/LibXML-raku/Enums) - XML_* enumerated constants
* [LibXML::Raw](https://libxml-raku.github.io/LibXML-raku/Raw) - LibXML native interface
* [LibXML::ErrorHandling](https://libxml-raku.github.io/LibXML-raku/ErrorHandling) - LibXML class for Error handling
* [LibXML::InputCallback](https://libxml-raku.github.io/LibXML-raku/InputCallback) - LibXML class for Input callback handling
* See also [LibXML::Threads](https://libxml-raku.github.io/LibXML-raku/Threads), for notes on threading and concurrency
PREREQUISITES
=============This module may requires the libxml2 library to be installed. Please follow the instructions below based on your platform:
Debian/Ubuntu Linux
-------------------```shell
sudo apt-get install libxml2-dev
```Additional packages (such as build-essential) may be required to enable make, C compilation and linking.
Mac OS X
--------```shell
brew update
brew install libxml2
```The Xcode package also needs to be installed to enable compilation.
Windows
-------This module uses prebuilt DLLs on Windows. There are currently some configuration (`LibXML::Config`) restrictions:
* `parser-locking` is set `True` to to disable concurrent parsing. This is due to known threading issues and unresolved failures in `t/90threads.t`
* `iconv` is `False`. The library is built without full Unicode support, which restricts the ability to read and write various encoding schemes.
* `compression` is `False`. The library is built without full compression, and is unable to read and write compressed XML directly.
ACKNOWLEDGEMENTS
================This Raku module:
* is based on the Perl XML::LibXML module; in particular, the test suite, selected XS and C code and documentation.
* derives SelectorQuery() and SelectorQueryAll() methods from the Perl XML::LibXML::QuerySelector module.
* also draws on an earlier attempt at a Perl 6 (nee Raku) port (XML::LibXML).
With thanks to: Christian Glahn, Ilya Martynov, Matt Sergeant, Petr Pajas, Shlomi Fish, Toby Inkster, Tobias Leich, Xliff, and others.
COPYRIGHT
=========2001-2007, AxKit.com Ltd.
2002-2006, Christian Glahn.
2006-2009, Petr Pajas.
LICENSE
=======This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0 [http://www.perlfoundation.org/artistic_license_2_0](http://www.perlfoundation.org/artistic_license_2_0).