Update to 2.6.28:
2.6.28: Apr 17 2007:
- Documentation: comment fixes (Markus Keim), xpath comments fixes too
(James Dennett)
- Bug fixes: XPath bug (William Brack), HTML parser autoclose stack usage
(Usamah Malik), various regexp bug fixes (DV and William), path conversion
on Windows (Igor Zlatkovic), htmlCtxtReset fix (Michael Day), XPath
principal node of axis bug, HTML serialization of some codepoint
(Steven Rainwater), user data propagation in XInclude (Michael Day),
standalone and XML decl detection (Michael Day), Python id ouptut
for some id, fix the big python string memory leak, URI parsing fixes
(Stéphane Bidoul and William), long comments parsing bug (William),
concurrent threads initialization (Ted Phelps), invalid char
in text XInclude (William), XPath memory leak (William), tab in
python problems (Andreas Hanke), XPath node comparison error
(Oleg Paraschenko), cleanup patch for reader (Julien Reichel),
XML Schemas attribute group (William), HTML parsing problem (William),
fix char 0x2d in regexps (William), regexp quantifier range with
min occurs of 0 (William), HTML script/style parsing (Mike Day)
- Improvement: make xmlTextReaderSetup() public
- Compilation and postability: fix a missing include problem (William),
__ss_familly on AIX again (Björn Wiberg), compilation without zlib
(Michael Day), catalog patch for Win32 (Christian Ehrlicher),
Windows CE fixes (Andreas Stricke)
- Various CVS to SVN infrastructure changes
2007-05-03 15:19:00 +02:00
|
|
|
@comment $NetBSD: PLIST,v 1.40 2007/05/03 13:19:00 wiz Exp $
|
2001-06-29 13:47:12 +02:00
|
|
|
bin/xml2-config
|
2001-09-27 01:22:17 +02:00
|
|
|
bin/xmlcatalog
|
2001-06-29 13:47:12 +02:00
|
|
|
bin/xmllint
|
|
|
|
include/libxml2/libxml/DOCBparser.h
|
|
|
|
include/libxml2/libxml/HTMLparser.h
|
|
|
|
include/libxml2/libxml/HTMLtree.h
|
|
|
|
include/libxml2/libxml/SAX.h
|
Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.
Changes:
2.6.2: Nov 4 2003:
- XPath context unregistration fixes
- text node coalescing fixes (Mark Lilback)
- API to screate a W3C Schemas from an existing document (Steve Ball)
- BeOS patches (Marcin 'Shard' Konicki)
- xmlStrVPrintf function added (Aleksey Sanin)
- compilation fixes (Mark Vakoc)
- stdin parsing fix (William Brack)
- a posteriori DTD validation fixes
- xmlReader bug fixes: Walker fixes, python bindings
- fixed xmlStopParser() to really stop the parser and errors
- always generate line numbers when using the new xmlReadxxx
functions
- added XInclude support to the xmlReader interface
- implemented XML_PARSE_NONET parser option
- DocBook XSLT processing bug fixed
- HTML serialization for <p> elements (William Brack and me)
- XPointer failure in XInclude are now handled as resource errors
- fixed xmllint --html to use the HTML serializer on output (added
--xmlout to implement the previous behaviour of saving it using the XML
serializer)
2.6.1: Oct 28 2003:
- Mostly bugfixes after the big 2.6.0 changes
- Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
(William Brack)
- Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
Zlatkovic)
- xmlWriter bugfix (Alfred Mickautsch)
- chvalid.[ch]: couple of fixes from Stephane Bidoul
- context reset: error state reset, push parser reset (Graham
Bennett)
- context reuse: generate errors if file is not readable
- defaulted attributes for element coming from internal entities
(Stephane Bidoul)
- Python: tab and spaces mix (William Brack)
- Error handler could crash in DTD validation in 2.6.0
- xmlReader: do not use the document or element _private field
- testSAX.c: avoid a problem with some PIs (Massimo Morara)
- general bug fixes: mandatory encoding in text decl, serializing
Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
XPath errors not reported, slow HTML parsing of large documents.
2.6.0: Oct 20 2003:
- Major revision release: should be API and ABI compatible but got a lot
of change
- Increased the library modularity, far more options can be stripped out,
a --with-minimum configuration will weight around 160KBytes
- Use per parser and per document dictionnary, allocate names and small
text nodes from the dictionnary
- Switch to a SAX2 like parser rewrote most of the XML parser core,
provides namespace resolution and defaulted attributes, minimize memory
allocations and copies, namespace checking and specific error handling,
immutable buffers, make predefined entities static structures, etc...
- rewrote all the error handling in the library, all errors can be
intercepted at a structured level, with precise information
available.
- New simpler and more generic XML and HTML parser APIs, allowing to
easilly modify the parsing options and reuse parser context for multiple
consecutive documents.
- Similar new APIs for the xmlReader, for options and reuse, provided new
functions to access content as const strings, use them for Python
bindings
- a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
Walker i.e. reader on a document tree based on Alfred Mickautsch code,
make room in nodes for line numbers, reference counting and future PSVI
extensions, generation of character ranges to be checked with faster
algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer
access
2003-12-04 20:33:38 +01:00
|
|
|
include/libxml2/libxml/SAX2.h
|
2002-04-26 12:32:37 +02:00
|
|
|
include/libxml2/libxml/c14n.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/catalog.h
|
Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.
Changes:
2.6.2: Nov 4 2003:
- XPath context unregistration fixes
- text node coalescing fixes (Mark Lilback)
- API to screate a W3C Schemas from an existing document (Steve Ball)
- BeOS patches (Marcin 'Shard' Konicki)
- xmlStrVPrintf function added (Aleksey Sanin)
- compilation fixes (Mark Vakoc)
- stdin parsing fix (William Brack)
- a posteriori DTD validation fixes
- xmlReader bug fixes: Walker fixes, python bindings
- fixed xmlStopParser() to really stop the parser and errors
- always generate line numbers when using the new xmlReadxxx
functions
- added XInclude support to the xmlReader interface
- implemented XML_PARSE_NONET parser option
- DocBook XSLT processing bug fixed
- HTML serialization for <p> elements (William Brack and me)
- XPointer failure in XInclude are now handled as resource errors
- fixed xmllint --html to use the HTML serializer on output (added
--xmlout to implement the previous behaviour of saving it using the XML
serializer)
2.6.1: Oct 28 2003:
- Mostly bugfixes after the big 2.6.0 changes
- Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
(William Brack)
- Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
Zlatkovic)
- xmlWriter bugfix (Alfred Mickautsch)
- chvalid.[ch]: couple of fixes from Stephane Bidoul
- context reset: error state reset, push parser reset (Graham
Bennett)
- context reuse: generate errors if file is not readable
- defaulted attributes for element coming from internal entities
(Stephane Bidoul)
- Python: tab and spaces mix (William Brack)
- Error handler could crash in DTD validation in 2.6.0
- xmlReader: do not use the document or element _private field
- testSAX.c: avoid a problem with some PIs (Massimo Morara)
- general bug fixes: mandatory encoding in text decl, serializing
Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
XPath errors not reported, slow HTML parsing of large documents.
2.6.0: Oct 20 2003:
- Major revision release: should be API and ABI compatible but got a lot
of change
- Increased the library modularity, far more options can be stripped out,
a --with-minimum configuration will weight around 160KBytes
- Use per parser and per document dictionnary, allocate names and small
text nodes from the dictionnary
- Switch to a SAX2 like parser rewrote most of the XML parser core,
provides namespace resolution and defaulted attributes, minimize memory
allocations and copies, namespace checking and specific error handling,
immutable buffers, make predefined entities static structures, etc...
- rewrote all the error handling in the library, all errors can be
intercepted at a structured level, with precise information
available.
- New simpler and more generic XML and HTML parser APIs, allowing to
easilly modify the parsing options and reuse parser context for multiple
consecutive documents.
- Similar new APIs for the xmlReader, for options and reuse, provided new
functions to access content as const strings, use them for Python
bindings
- a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
Walker i.e. reader on a document tree based on Alfred Mickautsch code,
make room in nodes for line numbers, reference counting and future PSVI
extensions, generation of character ranges to be checked with faster
algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer
access
2003-12-04 20:33:38 +01:00
|
|
|
include/libxml2/libxml/chvalid.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/debugXML.h
|
Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.
Changes:
2.6.2: Nov 4 2003:
- XPath context unregistration fixes
- text node coalescing fixes (Mark Lilback)
- API to screate a W3C Schemas from an existing document (Steve Ball)
- BeOS patches (Marcin 'Shard' Konicki)
- xmlStrVPrintf function added (Aleksey Sanin)
- compilation fixes (Mark Vakoc)
- stdin parsing fix (William Brack)
- a posteriori DTD validation fixes
- xmlReader bug fixes: Walker fixes, python bindings
- fixed xmlStopParser() to really stop the parser and errors
- always generate line numbers when using the new xmlReadxxx
functions
- added XInclude support to the xmlReader interface
- implemented XML_PARSE_NONET parser option
- DocBook XSLT processing bug fixed
- HTML serialization for <p> elements (William Brack and me)
- XPointer failure in XInclude are now handled as resource errors
- fixed xmllint --html to use the HTML serializer on output (added
--xmlout to implement the previous behaviour of saving it using the XML
serializer)
2.6.1: Oct 28 2003:
- Mostly bugfixes after the big 2.6.0 changes
- Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
(William Brack)
- Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
Zlatkovic)
- xmlWriter bugfix (Alfred Mickautsch)
- chvalid.[ch]: couple of fixes from Stephane Bidoul
- context reset: error state reset, push parser reset (Graham
Bennett)
- context reuse: generate errors if file is not readable
- defaulted attributes for element coming from internal entities
(Stephane Bidoul)
- Python: tab and spaces mix (William Brack)
- Error handler could crash in DTD validation in 2.6.0
- xmlReader: do not use the document or element _private field
- testSAX.c: avoid a problem with some PIs (Massimo Morara)
- general bug fixes: mandatory encoding in text decl, serializing
Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
XPath errors not reported, slow HTML parsing of large documents.
2.6.0: Oct 20 2003:
- Major revision release: should be API and ABI compatible but got a lot
of change
- Increased the library modularity, far more options can be stripped out,
a --with-minimum configuration will weight around 160KBytes
- Use per parser and per document dictionnary, allocate names and small
text nodes from the dictionnary
- Switch to a SAX2 like parser rewrote most of the XML parser core,
provides namespace resolution and defaulted attributes, minimize memory
allocations and copies, namespace checking and specific error handling,
immutable buffers, make predefined entities static structures, etc...
- rewrote all the error handling in the library, all errors can be
intercepted at a structured level, with precise information
available.
- New simpler and more generic XML and HTML parser APIs, allowing to
easilly modify the parsing options and reuse parser context for multiple
consecutive documents.
- Similar new APIs for the xmlReader, for options and reuse, provided new
functions to access content as const strings, use them for Python
bindings
- a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
Walker i.e. reader on a document tree based on Alfred Mickautsch code,
make room in nodes for line numbers, reference counting and future PSVI
extensions, generation of character ranges to be checked with faster
algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer
access
2003-12-04 20:33:38 +01:00
|
|
|
include/libxml2/libxml/dict.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/encoding.h
|
|
|
|
include/libxml2/libxml/entities.h
|
2001-11-16 21:59:32 +01:00
|
|
|
include/libxml2/libxml/globals.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/hash.h
|
|
|
|
include/libxml2/libxml/list.h
|
|
|
|
include/libxml2/libxml/nanoftp.h
|
|
|
|
include/libxml2/libxml/nanohttp.h
|
|
|
|
include/libxml2/libxml/parser.h
|
|
|
|
include/libxml2/libxml/parserInternals.h
|
Update to 2.6.4, from Min Sik Kim in PR pkg/23895 with some changes by me:
2.6.4: Dec 24 2003:
- Windows build fixes (Igor Zlatkovic)
- Some serious XInclude problems reported by Oleg Paraschenko and
- Unix and Makefile packaging fixes (me, William Brack,
- Documentation improvements (John Fleck, William Brack), example fix
(Lucas Brasilino)
- bugfixes: xmlTextReaderExpand() with xmlReaderWalker, XPath handling of
NULL strings (William Brack) , API building reader or parser from
filedescriptor should not close it, changed XPath sorting to be stable
again (William Brack), xmlGetNodePath() generating '(null)' (William
Brack), DTD validation and namespace bug (William Brack), XML Schemas
double inclusion behaviour
2.6.3: Dec 10 2003:
- documentation updates and cleanup (DV, William Brack, John Fleck)
- added a repository of examples, examples from Aleksey Sanin, Dodji
Seketeli, Alfred Mickautsch
- Windows updates: Mark Vakoc, Igor Zlatkovic, Eric Zurcher, Mingw
(Kenneth Haley)
- Unicode range checking (William Brack)
- code cleanup (William Brack)
- Python bindings: doc (John Fleck), bug fixes
- UTF-16 cleanup and BOM issues (William Brack)
- bug fixes: ID and xmlReader validation, XPath (William Brack),
xmlWriter (Alfred Mickautsch), hash.h inclusion problem, HTML parser
(James Bursa), attribute defaulting and validation, some serialization
cleanups, XML_GET_LINE macro, memory debug when using threads (William
Brack), serialization of attributes and entities content, xmlWriter
(Daniel Schulman)
- XInclude bugfix, new APIs and update to the last version including the
namespace change.
- XML Schemas improvements: include (Robert Stepanek), import and
namespace handling, fixed the regression tests troubles, added examples
based on Eric van der Vlist book, regexp fixes
- preliminary pattern support for streaming (needed for schemas
constraints), added xmlTextReaderPreservePattern() to collect subdocument
when streaming.
- various fixes in the structured error handling
2003-12-26 22:49:08 +01:00
|
|
|
include/libxml2/libxml/pattern.h
|
Update to 2.5.3.
Changes in the package:
- Enable threading.
- Move html documentation and examples where they should be.
- Use catalogs.mk to get and set default system-wide catalogs.
Changes since 2.4.25:
2.5.3: Feb 10 2003:
- RelaxNG and XML Schemas datatypes improvements, and added a first
version of RelaxNG Python bindings
- Fixes: XLink (Sean Chittenden), XInclude (Sean Chittenden), API fix for
serializing namespace nodes, encoding conversion bug, XHTML1
serialization
- Portability fixes: Windows (Igor), AMD 64bits RPM spec file
2.5.2: Feb 5 2003:
- First implementation of RelaxNG, added --relaxng flag to xmllint
- Schemas support now compiled in by default.
- Bug fixes: DTD validation, namespace checking, XInclude and entities,
delegateURI in XML Catalogs, HTML parser, XML reader (Stéphane Bidoul),
XPath parser and evaluation, UTF8ToUTF8 serialization, XML reader memory
consumption, HTML parser, HTML serialization in the presence of
namespaces
- added an HTML API to check elements and attributes.
- Documentation improvement, PDF for the tutorial (John Fleck), doc
patches (Stefan Kost)
- Portability fixes: NetBSD (Julio Merino), Windows (Igor Zlatkovic)
- Added python bindings for XPointer, contextual error reporting
(Stéphane Bidoul)
- URI/file escaping problems (Stefano Zacchiroli)
2.5.1: Jan 8 2003:
- Fixes a memory leak and configuration/compilation problems in 2.5.0
- documentation updates (John)
- a couple of XmlTextReader fixes
2.5.0: Jan 6 2003:
- New XmltextReader interface based on C#
API (with help of Stéphane Bidoul)
- Windows: more exports, including the new API (Igor)
- XInclude fallback fix
- Python: bindings for the new API, packaging (Stéphane Bidoul),
drv_libxml2.py Python xml.sax driver (Stéphane Bidoul), fixes, speedup
and iterators for Python-2.2 (Hannu Krosing)
- Tutorial fixes (john Fleck and Niraj Tolia) xmllint man update
(John)
- Fix an XML parser bug raised by Vyacheslav Pindyura
- Fix for VMS serialization (Nigel Hall) and config (Craig A. Berry)
- Entities handling fixes
- new API to optionally track node creation and deletion (Lukas
Schroeder)
- Added documentation for the XmltextReader interface and some XML guidelines
2.4.30: Dec 12 2002:
- 2.4.29 broke the python bindings, rereleasing
- Improvement/fixes of the XML API generator, and couple of minor code
fixes.
2.4.29: Dec 11 2002:
- Windows fixes (Igor): Windows CE port, pthread linking, python bindings
(Stéphane Bidoul), Mingw (Magnus Henoch), and export list updates
- Fix for prev in python bindings (ERDI Gergo)
- Fix for entities handling (Marcus Clarke)
- Refactored the XML and HTML dumps to a single code path, fixed XHTML1
dump
- Fix for URI parsing when handling URNs with fragment identifiers
- Fix for HTTP URL escaping problem
- added an TextXmlReader (C#) like API (work in progress)
- Rewrote the API in XML generation script, includes a C parser and saves
more informations needed for C# bindings
2.4.28: Nov 22 2002:
- a couple of python binding fixes
- 2 bug fixes in the XML push parser
- potential memory leak removed (Martin Stoilov)
- fix to the configure script for Unix (Dimitri Papadopoulos)
- added encoding support for XInclude parse="text"
- autodetection of XHTML1 and specific serialization rules added
- nasty threading bug fixed (William Brack)
2.4.27: Nov 17 2002:
- fixes for the Python bindings
- a number of bug fixes: SGML catalogs, xmlParseBalancedChunkMemory(),
HTML parser, Schemas (Charles Bozeman), document fragment support
(Christian Glahn), xmlReconciliateNs (Brian Stafford), XPointer,
xmlFreeNode(), xmlSAXParseMemory (Peter Jones), xmlGetNodePath (Petr
Pajas), entities processing
- added grep to xmllint --shell
- VMS update patch from Craig A. Berry
- cleanup of the Windows build with support for more compilers (Igor),
better thread support on Windows
- cleanup of Unix Makefiles and spec file
- Improvements to the documentation (John Fleck)
2.4.26: Oct 18 2002:
- Patches for Windows CE port, improvements on Windows paths handling
- Fixes to the validation code (DTD and Schemas), xmlNodeGetPath() ,
HTML serialization, Namespace compliance, and a number of small
problems
2003-02-24 21:40:15 +01:00
|
|
|
include/libxml2/libxml/relaxng.h
|
2002-05-17 15:02:29 +02:00
|
|
|
include/libxml2/libxml/schemasInternals.h
|
update tp 2.6.21
2.6.21: Sep 4 2005:
- build fixes: Cygwin portability fixes (Gerrit P. Haase), calling
convention problems on Windows (Marcus Boerger), cleanups based on
Linus' sparse tool, update of win32/configure.js (Rob Richards),
remove warnings on Windows(Marcus Boerger), compilation without SAX1,
detection of the Python binary, use $GCC inestad of $CC = 'gcc' (Andrew
W. Nosenko), compilation/link with threads and old gcc, compile
problem by C370 on Z/OS,
- bug fixes: http_proxy environments (Peter Breitenlohner), HTML UTF-8
bug (Jiri Netolicky), XPath NaN compare bug (William Brack),
htmlParseScript potential bug, Schemas regexp handling of spaces,
Base64 Schemas comparisons NIST passes, automata build error xsd:all,
xmlGetNodePath for namespaced attributes (Alexander Pohoyda),
xmlSchemas foreign namespaces handling, XML Schemas facet comparison
(Kupriyanov Anatolij), xmlSchemaPSimpleTypeErr error report (Kasimier
Buchcik), xml: namespace ahndling in Schemas (Kasimier), empty model
group in Schemas (Kasimier), wilcard in Schemas (Kasimier), URI
composition (William), xs:anyType in Schemas (Kasimier), Python resolver
emmitting error messages directly, Python xmlAttr.parent (Jakub Piotr
Clapa), trying to fix the file path/URI conversion,
xmlTextReaderGetAttribute fix (Rob Richards), xmlSchemaFreeAnnot memleak
(Kasimier), HTML UTF-8 serialization, streaming XPath, Schemas determinism
detection problem, XInclude bug, Schemas context type (Dean Hill),
validation fix (Derek Poon), xmlTextReaderGetAttribute[Ns] namespaces
(Rob Richards), Schemas type fix (Kuba Nowakowski), UTF-8 parser bug,
error in encoding handling, xmlGetLineNo fixes, bug on entities handling,
entity name extraction in error handling with XInclude, text nodes
in HTML body tags (Gary Coady), xml:id and IDness at the treee level
fixes, XPath streaming patterns bugs.
- improvements: structured interfaces for schemas and RNG error reports
(Marcus Boerger), optimization of the char data inner loop parsing
(thanks to Behdad Esfahbod for the idea), schematron validation
though not finished yet, xmlSaveOption to omit XML declaration,
keyref match error reports (Kasimier), formal expression handling
code not plugged yet, more lax mode for the HTML parser,
parser XML_PARSE_COMPACT option for text nodes allocation.
- documentation: xmllint man page had --nonet duplicated
2005-09-05 09:37:50 +02:00
|
|
|
include/libxml2/libxml/schematron.h
|
2001-11-16 21:59:32 +01:00
|
|
|
include/libxml2/libxml/threads.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/tree.h
|
|
|
|
include/libxml2/libxml/uri.h
|
|
|
|
include/libxml2/libxml/valid.h
|
|
|
|
include/libxml2/libxml/xinclude.h
|
|
|
|
include/libxml2/libxml/xlink.h
|
|
|
|
include/libxml2/libxml/xmlIO.h
|
2002-05-17 15:02:29 +02:00
|
|
|
include/libxml2/libxml/xmlautomata.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/xmlerror.h
|
Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.
Changes:
2.6.2: Nov 4 2003:
- XPath context unregistration fixes
- text node coalescing fixes (Mark Lilback)
- API to screate a W3C Schemas from an existing document (Steve Ball)
- BeOS patches (Marcin 'Shard' Konicki)
- xmlStrVPrintf function added (Aleksey Sanin)
- compilation fixes (Mark Vakoc)
- stdin parsing fix (William Brack)
- a posteriori DTD validation fixes
- xmlReader bug fixes: Walker fixes, python bindings
- fixed xmlStopParser() to really stop the parser and errors
- always generate line numbers when using the new xmlReadxxx
functions
- added XInclude support to the xmlReader interface
- implemented XML_PARSE_NONET parser option
- DocBook XSLT processing bug fixed
- HTML serialization for <p> elements (William Brack and me)
- XPointer failure in XInclude are now handled as resource errors
- fixed xmllint --html to use the HTML serializer on output (added
--xmlout to implement the previous behaviour of saving it using the XML
serializer)
2.6.1: Oct 28 2003:
- Mostly bugfixes after the big 2.6.0 changes
- Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
(William Brack)
- Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
Zlatkovic)
- xmlWriter bugfix (Alfred Mickautsch)
- chvalid.[ch]: couple of fixes from Stephane Bidoul
- context reset: error state reset, push parser reset (Graham
Bennett)
- context reuse: generate errors if file is not readable
- defaulted attributes for element coming from internal entities
(Stephane Bidoul)
- Python: tab and spaces mix (William Brack)
- Error handler could crash in DTD validation in 2.6.0
- xmlReader: do not use the document or element _private field
- testSAX.c: avoid a problem with some PIs (Massimo Morara)
- general bug fixes: mandatory encoding in text decl, serializing
Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
XPath errors not reported, slow HTML parsing of large documents.
2.6.0: Oct 20 2003:
- Major revision release: should be API and ABI compatible but got a lot
of change
- Increased the library modularity, far more options can be stripped out,
a --with-minimum configuration will weight around 160KBytes
- Use per parser and per document dictionnary, allocate names and small
text nodes from the dictionnary
- Switch to a SAX2 like parser rewrote most of the XML parser core,
provides namespace resolution and defaulted attributes, minimize memory
allocations and copies, namespace checking and specific error handling,
immutable buffers, make predefined entities static structures, etc...
- rewrote all the error handling in the library, all errors can be
intercepted at a structured level, with precise information
available.
- New simpler and more generic XML and HTML parser APIs, allowing to
easilly modify the parsing options and reuse parser context for multiple
consecutive documents.
- Similar new APIs for the xmlReader, for options and reuse, provided new
functions to access content as const strings, use them for Python
bindings
- a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
Walker i.e. reader on a document tree based on Alfred Mickautsch code,
make room in nodes for line numbers, reference counting and future PSVI
extensions, generation of character ranges to be checked with faster
algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer
access
2003-12-04 20:33:38 +01:00
|
|
|
include/libxml2/libxml/xmlexports.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/xmlmemory.h
|
2005-01-16 23:28:34 +01:00
|
|
|
include/libxml2/libxml/xmlmodule.h
|
Update to 2.5.3.
Changes in the package:
- Enable threading.
- Move html documentation and examples where they should be.
- Use catalogs.mk to get and set default system-wide catalogs.
Changes since 2.4.25:
2.5.3: Feb 10 2003:
- RelaxNG and XML Schemas datatypes improvements, and added a first
version of RelaxNG Python bindings
- Fixes: XLink (Sean Chittenden), XInclude (Sean Chittenden), API fix for
serializing namespace nodes, encoding conversion bug, XHTML1
serialization
- Portability fixes: Windows (Igor), AMD 64bits RPM spec file
2.5.2: Feb 5 2003:
- First implementation of RelaxNG, added --relaxng flag to xmllint
- Schemas support now compiled in by default.
- Bug fixes: DTD validation, namespace checking, XInclude and entities,
delegateURI in XML Catalogs, HTML parser, XML reader (Stéphane Bidoul),
XPath parser and evaluation, UTF8ToUTF8 serialization, XML reader memory
consumption, HTML parser, HTML serialization in the presence of
namespaces
- added an HTML API to check elements and attributes.
- Documentation improvement, PDF for the tutorial (John Fleck), doc
patches (Stefan Kost)
- Portability fixes: NetBSD (Julio Merino), Windows (Igor Zlatkovic)
- Added python bindings for XPointer, contextual error reporting
(Stéphane Bidoul)
- URI/file escaping problems (Stefano Zacchiroli)
2.5.1: Jan 8 2003:
- Fixes a memory leak and configuration/compilation problems in 2.5.0
- documentation updates (John)
- a couple of XmlTextReader fixes
2.5.0: Jan 6 2003:
- New XmltextReader interface based on C#
API (with help of Stéphane Bidoul)
- Windows: more exports, including the new API (Igor)
- XInclude fallback fix
- Python: bindings for the new API, packaging (Stéphane Bidoul),
drv_libxml2.py Python xml.sax driver (Stéphane Bidoul), fixes, speedup
and iterators for Python-2.2 (Hannu Krosing)
- Tutorial fixes (john Fleck and Niraj Tolia) xmllint man update
(John)
- Fix an XML parser bug raised by Vyacheslav Pindyura
- Fix for VMS serialization (Nigel Hall) and config (Craig A. Berry)
- Entities handling fixes
- new API to optionally track node creation and deletion (Lukas
Schroeder)
- Added documentation for the XmltextReader interface and some XML guidelines
2.4.30: Dec 12 2002:
- 2.4.29 broke the python bindings, rereleasing
- Improvement/fixes of the XML API generator, and couple of minor code
fixes.
2.4.29: Dec 11 2002:
- Windows fixes (Igor): Windows CE port, pthread linking, python bindings
(Stéphane Bidoul), Mingw (Magnus Henoch), and export list updates
- Fix for prev in python bindings (ERDI Gergo)
- Fix for entities handling (Marcus Clarke)
- Refactored the XML and HTML dumps to a single code path, fixed XHTML1
dump
- Fix for URI parsing when handling URNs with fragment identifiers
- Fix for HTTP URL escaping problem
- added an TextXmlReader (C#) like API (work in progress)
- Rewrote the API in XML generation script, includes a C parser and saves
more informations needed for C# bindings
2.4.28: Nov 22 2002:
- a couple of python binding fixes
- 2 bug fixes in the XML push parser
- potential memory leak removed (Martin Stoilov)
- fix to the configure script for Unix (Dimitri Papadopoulos)
- added encoding support for XInclude parse="text"
- autodetection of XHTML1 and specific serialization rules added
- nasty threading bug fixed (William Brack)
2.4.27: Nov 17 2002:
- fixes for the Python bindings
- a number of bug fixes: SGML catalogs, xmlParseBalancedChunkMemory(),
HTML parser, Schemas (Charles Bozeman), document fragment support
(Christian Glahn), xmlReconciliateNs (Brian Stafford), XPointer,
xmlFreeNode(), xmlSAXParseMemory (Peter Jones), xmlGetNodePath (Petr
Pajas), entities processing
- added grep to xmllint --shell
- VMS update patch from Craig A. Berry
- cleanup of the Windows build with support for more compilers (Igor),
better thread support on Windows
- cleanup of Unix Makefiles and spec file
- Improvements to the documentation (John Fleck)
2.4.26: Oct 18 2002:
- Patches for Windows CE port, improvements on Windows paths handling
- Fixes to the validation code (DTD and Schemas), xmlNodeGetPath() ,
HTML serialization, Namespace compliance, and a number of small
problems
2003-02-24 21:40:15 +01:00
|
|
|
include/libxml2/libxml/xmlreader.h
|
2002-05-17 15:02:29 +02:00
|
|
|
include/libxml2/libxml/xmlregexp.h
|
Update to 2.6.8:
2.6.8: Mar 23 2004:
- First step of the cleanup of the serialization code and APIs
- XML Schemas: mixed content (Adam Dickmeiss), QName handling fixes (Adam
Dickmeiss), anyURI for "" (John Belmonte)
- Python: Canonicalization C14N support added (Anthony Carrico)
- xmlDocCopyNode() extension (William)
- Relax-NG: fix when processing XInclude results (William), external
reference in interleave (William), missing error on <choice>
failure (William), memory leak in schemas datatype facets.
- xmlWriter: patch for better DTD support (Alfred Mickautsch)
- bug fixes: xmlXPathLangFunction memory leak (Mike Hommey and William
Brack), no ID errors if using HTML_PARSE_NOERROR, xmlcatalog fallbacks to
URI on SYSTEM lookup failure, XInclude parse flags inheritance (William),
XInclude and XPointer fixes for entities (William), XML parser bug
reported by Holger Rauch, nanohttp fd leak (William), regexps char
groups '-' handling (William), dictionnary reference counting problems,
do not close stderr.
- performance patches from Petr Pajas
- Documentation fixes: XML_CATALOG_FILES in man pages (Mike Hommey)
- compilation and portability fixes: --without-valid, catalog cleanups
(Peter Breitenlohner), MingW patch (Roland Schwingel), cross-compilation
to Windows (Christophe de Vienne), --with-html-dir fixup (Julio Merino
Vidal), Windows build (Eric Zurcher)
2004-03-28 23:31:46 +02:00
|
|
|
include/libxml2/libxml/xmlsave.h
|
2002-05-17 15:02:29 +02:00
|
|
|
include/libxml2/libxml/xmlschemas.h
|
|
|
|
include/libxml2/libxml/xmlschemastypes.h
|
Update to 2.6.5, provided by Min Sik Kim in PR pkg/24271.
Changes:
- Bugfixes: dictionnaries for schemas (William Brack), regexp segfault
(William), xs:all problem (William), a number of XPointer bugfixes
(William), xmllint error go to stderr, DTD validation problem with
namespace, memory leak (William), SAX1 cleanup and minimal options fixes
(Mark Vadoc), parser context reset on error (Shaun McCance), XPath union
evaluation problem (William) , xmlReallocLoc with NULL (Aleksey Sanin),
XML Schemas double free (Steve Ball), XInclude with no href, argument
callbacks order for XPath callbacks (Frederic Peters)
- Documentation: python scripts (William Brack), xslt stylesheets (John
Fleck), doc (Sven Zimmerman), I/O example.
- XInclude: various fixes for conformance, problem related to dictionnary
references (William & me), recursion (William)
- xmlWriter: indentation (Lucas Brasilino), memory leaks (Alfred
Mickautsch),
- xmlSchemas: normalizedString datatype (John Belmonte)
- code cleanup for strings functions (William)
- Windows: compiler patches (Mark Vakoc)
- Parser optimizations, a few new XPath and dictionnary APIs for future
XSLT optimizations.
2004-01-31 23:13:52 +01:00
|
|
|
include/libxml2/libxml/xmlstring.h
|
2002-05-17 15:02:29 +02:00
|
|
|
include/libxml2/libxml/xmlunicode.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/xmlversion.h
|
Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.
Changes:
2.6.2: Nov 4 2003:
- XPath context unregistration fixes
- text node coalescing fixes (Mark Lilback)
- API to screate a W3C Schemas from an existing document (Steve Ball)
- BeOS patches (Marcin 'Shard' Konicki)
- xmlStrVPrintf function added (Aleksey Sanin)
- compilation fixes (Mark Vakoc)
- stdin parsing fix (William Brack)
- a posteriori DTD validation fixes
- xmlReader bug fixes: Walker fixes, python bindings
- fixed xmlStopParser() to really stop the parser and errors
- always generate line numbers when using the new xmlReadxxx
functions
- added XInclude support to the xmlReader interface
- implemented XML_PARSE_NONET parser option
- DocBook XSLT processing bug fixed
- HTML serialization for <p> elements (William Brack and me)
- XPointer failure in XInclude are now handled as resource errors
- fixed xmllint --html to use the HTML serializer on output (added
--xmlout to implement the previous behaviour of saving it using the XML
serializer)
2.6.1: Oct 28 2003:
- Mostly bugfixes after the big 2.6.0 changes
- Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
(William Brack)
- Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
Zlatkovic)
- xmlWriter bugfix (Alfred Mickautsch)
- chvalid.[ch]: couple of fixes from Stephane Bidoul
- context reset: error state reset, push parser reset (Graham
Bennett)
- context reuse: generate errors if file is not readable
- defaulted attributes for element coming from internal entities
(Stephane Bidoul)
- Python: tab and spaces mix (William Brack)
- Error handler could crash in DTD validation in 2.6.0
- xmlReader: do not use the document or element _private field
- testSAX.c: avoid a problem with some PIs (Massimo Morara)
- general bug fixes: mandatory encoding in text decl, serializing
Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
XPath errors not reported, slow HTML parsing of large documents.
2.6.0: Oct 20 2003:
- Major revision release: should be API and ABI compatible but got a lot
of change
- Increased the library modularity, far more options can be stripped out,
a --with-minimum configuration will weight around 160KBytes
- Use per parser and per document dictionnary, allocate names and small
text nodes from the dictionnary
- Switch to a SAX2 like parser rewrote most of the XML parser core,
provides namespace resolution and defaulted attributes, minimize memory
allocations and copies, namespace checking and specific error handling,
immutable buffers, make predefined entities static structures, etc...
- rewrote all the error handling in the library, all errors can be
intercepted at a structured level, with precise information
available.
- New simpler and more generic XML and HTML parser APIs, allowing to
easilly modify the parsing options and reuse parser context for multiple
consecutive documents.
- Similar new APIs for the xmlReader, for options and reuse, provided new
functions to access content as const strings, use them for Python
bindings
- a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
Walker i.e. reader on a document tree based on Alfred Mickautsch code,
make room in nodes for line numbers, reference counting and future PSVI
extensions, generation of character ranges to be checked with faster
algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer
access
2003-12-04 20:33:38 +01:00
|
|
|
include/libxml2/libxml/xmlwriter.h
|
2001-06-29 13:47:12 +02:00
|
|
|
include/libxml2/libxml/xpath.h
|
|
|
|
include/libxml2/libxml/xpathInternals.h
|
|
|
|
include/libxml2/libxml/xpointer.h
|
2001-09-27 01:22:17 +02:00
|
|
|
lib/libxml2.la
|
|
|
|
lib/pkgconfig/libxml-2.0.pc
|
2001-06-29 13:47:12 +02:00
|
|
|
lib/xml2Conf.sh
|
|
|
|
man/man1/xml2-config.1
|
2001-09-27 01:22:17 +02:00
|
|
|
man/man1/xmlcatalog.1
|
|
|
|
man/man1/xmllint.1
|
2002-04-26 12:32:37 +02:00
|
|
|
man/man3/libxml.3
|
2001-06-29 13:47:12 +02:00
|
|
|
share/aclocal/libxml.m4
|
Update to 2.6.8:
2.6.8: Mar 23 2004:
- First step of the cleanup of the serialization code and APIs
- XML Schemas: mixed content (Adam Dickmeiss), QName handling fixes (Adam
Dickmeiss), anyURI for "" (John Belmonte)
- Python: Canonicalization C14N support added (Anthony Carrico)
- xmlDocCopyNode() extension (William)
- Relax-NG: fix when processing XInclude results (William), external
reference in interleave (William), missing error on <choice>
failure (William), memory leak in schemas datatype facets.
- xmlWriter: patch for better DTD support (Alfred Mickautsch)
- bug fixes: xmlXPathLangFunction memory leak (Mike Hommey and William
Brack), no ID errors if using HTML_PARSE_NOERROR, xmlcatalog fallbacks to
URI on SYSTEM lookup failure, XInclude parse flags inheritance (William),
XInclude and XPointer fixes for entities (William), XML parser bug
reported by Holger Rauch, nanohttp fd leak (William), regexps char
groups '-' handling (William), dictionnary reference counting problems,
do not close stderr.
- performance patches from Petr Pajas
- Documentation fixes: XML_CATALOG_FILES in man pages (Mike Hommey)
- compilation and portability fixes: --without-valid, catalog cleanups
(Peter Breitenlohner), MingW patch (Roland Schwingel), cross-compilation
to Windows (Christophe de Vienne), --with-html-dir fixup (Julio Merino
Vidal), Windows build (Eric Zurcher)
2004-03-28 23:31:46 +02:00
|
|
|
share/doc/${PKGNAME}/Copyright
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/DOM.gif
|
|
|
|
share/doc/libxml2/FAQ.html
|
|
|
|
share/doc/libxml2/Libxml2-Logo-180x168.gif
|
|
|
|
share/doc/libxml2/Libxml2-Logo-90x34.gif
|
|
|
|
share/doc/libxml2/encoding.html
|
2006-05-15 10:27:31 +02:00
|
|
|
share/doc/libxml2/examples.xml
|
|
|
|
share/doc/libxml2/examples.xsl
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/html/book1.html
|
|
|
|
share/doc/libxml2/html/home.png
|
Update to 2.6.28:
2.6.28: Apr 17 2007:
- Documentation: comment fixes (Markus Keim), xpath comments fixes too
(James Dennett)
- Bug fixes: XPath bug (William Brack), HTML parser autoclose stack usage
(Usamah Malik), various regexp bug fixes (DV and William), path conversion
on Windows (Igor Zlatkovic), htmlCtxtReset fix (Michael Day), XPath
principal node of axis bug, HTML serialization of some codepoint
(Steven Rainwater), user data propagation in XInclude (Michael Day),
standalone and XML decl detection (Michael Day), Python id ouptut
for some id, fix the big python string memory leak, URI parsing fixes
(Stéphane Bidoul and William), long comments parsing bug (William),
concurrent threads initialization (Ted Phelps), invalid char
in text XInclude (William), XPath memory leak (William), tab in
python problems (Andreas Hanke), XPath node comparison error
(Oleg Paraschenko), cleanup patch for reader (Julien Reichel),
XML Schemas attribute group (William), HTML parsing problem (William),
fix char 0x2d in regexps (William), regexp quantifier range with
min occurs of 0 (William), HTML script/style parsing (Mike Day)
- Improvement: make xmlTextReaderSetup() public
- Compilation and postability: fix a missing include problem (William),
__ss_familly on AIX again (Björn Wiberg), compilation without zlib
(Michael Day), catalog patch for Win32 (Christian Ehrlicher),
Windows CE fixes (Andreas Stricke)
- Various CVS to SVN infrastructure changes
2007-05-03 15:19:00 +02:00
|
|
|
share/doc/libxml2/html/index.html
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/html/left.png
|
|
|
|
share/doc/libxml2/html/libxml-DOCBparser.html
|
|
|
|
share/doc/libxml2/html/libxml-HTMLparser.html
|
|
|
|
share/doc/libxml2/html/libxml-HTMLtree.html
|
|
|
|
share/doc/libxml2/html/libxml-SAX.html
|
|
|
|
share/doc/libxml2/html/libxml-SAX2.html
|
|
|
|
share/doc/libxml2/html/libxml-c14n.html
|
|
|
|
share/doc/libxml2/html/libxml-catalog.html
|
|
|
|
share/doc/libxml2/html/libxml-chvalid.html
|
|
|
|
share/doc/libxml2/html/libxml-debugXML.html
|
|
|
|
share/doc/libxml2/html/libxml-dict.html
|
|
|
|
share/doc/libxml2/html/libxml-encoding.html
|
|
|
|
share/doc/libxml2/html/libxml-entities.html
|
|
|
|
share/doc/libxml2/html/libxml-globals.html
|
|
|
|
share/doc/libxml2/html/libxml-hash.html
|
|
|
|
share/doc/libxml2/html/libxml-lib.html
|
|
|
|
share/doc/libxml2/html/libxml-list.html
|
|
|
|
share/doc/libxml2/html/libxml-nanoftp.html
|
|
|
|
share/doc/libxml2/html/libxml-nanohttp.html
|
|
|
|
share/doc/libxml2/html/libxml-parser.html
|
|
|
|
share/doc/libxml2/html/libxml-parserInternals.html
|
|
|
|
share/doc/libxml2/html/libxml-pattern.html
|
|
|
|
share/doc/libxml2/html/libxml-relaxng.html
|
|
|
|
share/doc/libxml2/html/libxml-schemasInternals.html
|
|
|
|
share/doc/libxml2/html/libxml-schematron.html
|
|
|
|
share/doc/libxml2/html/libxml-threads.html
|
|
|
|
share/doc/libxml2/html/libxml-tree.html
|
|
|
|
share/doc/libxml2/html/libxml-uri.html
|
|
|
|
share/doc/libxml2/html/libxml-valid.html
|
|
|
|
share/doc/libxml2/html/libxml-xinclude.html
|
|
|
|
share/doc/libxml2/html/libxml-xlink.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlIO.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlautomata.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlerror.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlexports.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlmemory.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlmodule.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlreader.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlregexp.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlsave.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlschemas.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlschemastypes.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlstring.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlunicode.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlversion.html
|
|
|
|
share/doc/libxml2/html/libxml-xmlwriter.html
|
|
|
|
share/doc/libxml2/html/libxml-xpath.html
|
|
|
|
share/doc/libxml2/html/libxml-xpathInternals.html
|
|
|
|
share/doc/libxml2/html/libxml-xpointer.html
|
|
|
|
share/doc/libxml2/html/right.png
|
|
|
|
share/doc/libxml2/html/up.png
|
2006-05-15 10:27:31 +02:00
|
|
|
share/doc/libxml2/io1.c
|
|
|
|
share/doc/libxml2/io1.res
|
|
|
|
share/doc/libxml2/io2.c
|
|
|
|
share/doc/libxml2/io2.res
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/libxml.gif
|
2006-05-15 10:27:31 +02:00
|
|
|
share/doc/libxml2/parse1.c
|
|
|
|
share/doc/libxml2/parse2.c
|
|
|
|
share/doc/libxml2/parse3.c
|
|
|
|
share/doc/libxml2/parse4.c
|
|
|
|
share/doc/libxml2/reader1.c
|
|
|
|
share/doc/libxml2/reader1.res
|
|
|
|
share/doc/libxml2/reader2.c
|
|
|
|
share/doc/libxml2/reader3.c
|
|
|
|
share/doc/libxml2/reader3.res
|
|
|
|
share/doc/libxml2/reader4.c
|
|
|
|
share/doc/libxml2/reader4.res
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/redhat.gif
|
|
|
|
share/doc/libxml2/smallfootonly.gif
|
|
|
|
share/doc/libxml2/structure.gif
|
2006-05-15 10:27:31 +02:00
|
|
|
share/doc/libxml2/test1.xml
|
|
|
|
share/doc/libxml2/test2.xml
|
|
|
|
share/doc/libxml2/test3.xml
|
|
|
|
share/doc/libxml2/testWriter.c
|
|
|
|
share/doc/libxml2/tree1.c
|
|
|
|
share/doc/libxml2/tree1.res
|
|
|
|
share/doc/libxml2/tree2.c
|
|
|
|
share/doc/libxml2/tree2.res
|
|
|
|
share/doc/libxml2/tst.xml
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/tutorial/apa.html
|
|
|
|
share/doc/libxml2/tutorial/apb.html
|
|
|
|
share/doc/libxml2/tutorial/apc.html
|
|
|
|
share/doc/libxml2/tutorial/apd.html
|
|
|
|
share/doc/libxml2/tutorial/ape.html
|
|
|
|
share/doc/libxml2/tutorial/apf.html
|
|
|
|
share/doc/libxml2/tutorial/apg.html
|
|
|
|
share/doc/libxml2/tutorial/aph.html
|
|
|
|
share/doc/libxml2/tutorial/api.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s02.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s03.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s04.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s05.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s06.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s07.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s08.html
|
|
|
|
share/doc/libxml2/tutorial/ar01s09.html
|
|
|
|
share/doc/libxml2/tutorial/images/blank.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/1.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/10.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/2.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/3.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/4.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/5.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/6.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/7.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/8.png
|
|
|
|
share/doc/libxml2/tutorial/images/callouts/9.png
|
|
|
|
share/doc/libxml2/tutorial/images/caution.png
|
|
|
|
share/doc/libxml2/tutorial/images/draft.png
|
|
|
|
share/doc/libxml2/tutorial/images/home.png
|
|
|
|
share/doc/libxml2/tutorial/images/important.png
|
|
|
|
share/doc/libxml2/tutorial/images/next.png
|
|
|
|
share/doc/libxml2/tutorial/images/note.png
|
|
|
|
share/doc/libxml2/tutorial/images/prev.png
|
|
|
|
share/doc/libxml2/tutorial/images/tip.png
|
|
|
|
share/doc/libxml2/tutorial/images/toc-blank.png
|
|
|
|
share/doc/libxml2/tutorial/images/toc-minus.png
|
|
|
|
share/doc/libxml2/tutorial/images/toc-plus.png
|
|
|
|
share/doc/libxml2/tutorial/images/up.png
|
|
|
|
share/doc/libxml2/tutorial/images/warning.png
|
|
|
|
share/doc/libxml2/tutorial/includeaddattribute.c
|
|
|
|
share/doc/libxml2/tutorial/includeaddkeyword.c
|
|
|
|
share/doc/libxml2/tutorial/includeconvert.c
|
|
|
|
share/doc/libxml2/tutorial/includegetattribute.c
|
|
|
|
share/doc/libxml2/tutorial/includekeyword.c
|
|
|
|
share/doc/libxml2/tutorial/includexpath.c
|
|
|
|
share/doc/libxml2/tutorial/index.html
|
|
|
|
share/doc/libxml2/tutorial/ix01.html
|
|
|
|
share/doc/libxml2/tutorial/xmltutorial.pdf
|
|
|
|
share/doc/libxml2/w3c.png
|
2006-05-15 10:27:31 +02:00
|
|
|
share/doc/libxml2/writer.xml
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
share/doc/libxml2/xml.html
|
2006-05-15 10:27:31 +02:00
|
|
|
share/doc/libxml2/xpath1.c
|
|
|
|
share/doc/libxml2/xpath1.res
|
|
|
|
share/doc/libxml2/xpath2.c
|
|
|
|
share/doc/libxml2/xpath2.res
|
2003-07-01 11:45:54 +02:00
|
|
|
share/examples/libxml2/testHTML.c
|
|
|
|
share/examples/libxml2/testSAX.c
|
|
|
|
share/examples/libxml2/testXPath.c
|
|
|
|
share/examples/libxml2/xmllint.c
|
2006-10-30 21:57:30 +01:00
|
|
|
share/gtk-doc/html/libxml2/general.html
|
|
|
|
share/gtk-doc/html/libxml2/home.png
|
|
|
|
share/gtk-doc/html/libxml2/index.html
|
|
|
|
share/gtk-doc/html/libxml2/left.png
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-DOCBparser.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-HTMLparser.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-HTMLtree.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-SAX.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-SAX2.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-c14n.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-catalog.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-chvalid.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-debugXML.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-dict.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-encoding.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-entities.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-globals.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-hash.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-list.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-nanoftp.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-nanohttp.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-parser.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-parserInternals.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-pattern.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-relaxng.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-schemasInternals.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-schematron.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-threads.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-tree.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-uri.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-valid.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xinclude.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xlink.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlIO.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlautomata.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlerror.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlexports.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlmemory.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlmodule.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlreader.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlregexp.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlsave.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlschemas.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlstring.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlunicode.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlversion.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xmlwriter.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xpath.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xpathInternals.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2-xpointer.html
|
|
|
|
share/gtk-doc/html/libxml2/libxml2.devhelp
|
|
|
|
share/gtk-doc/html/libxml2/right.png
|
|
|
|
share/gtk-doc/html/libxml2/style.css
|
|
|
|
share/gtk-doc/html/libxml2/up.png
|
|
|
|
@dirrm share/gtk-doc/html/libxml2
|
Updated to 2.6.2 provided by Min Sik Kim PR pkg/23488.
Changes:
2.6.2: Nov 4 2003:
- XPath context unregistration fixes
- text node coalescing fixes (Mark Lilback)
- API to screate a W3C Schemas from an existing document (Steve Ball)
- BeOS patches (Marcin 'Shard' Konicki)
- xmlStrVPrintf function added (Aleksey Sanin)
- compilation fixes (Mark Vakoc)
- stdin parsing fix (William Brack)
- a posteriori DTD validation fixes
- xmlReader bug fixes: Walker fixes, python bindings
- fixed xmlStopParser() to really stop the parser and errors
- always generate line numbers when using the new xmlReadxxx
functions
- added XInclude support to the xmlReader interface
- implemented XML_PARSE_NONET parser option
- DocBook XSLT processing bug fixed
- HTML serialization for <p> elements (William Brack and me)
- XPointer failure in XInclude are now handled as resource errors
- fixed xmllint --html to use the HTML serializer on output (added
--xmlout to implement the previous behaviour of saving it using the XML
serializer)
2.6.1: Oct 28 2003:
- Mostly bugfixes after the big 2.6.0 changes
- Unix compilation patches: libxml.m4 (Patrick Welche), warnings cleanup
(William Brack)
- Windows compilation patches (Joachim Bauch, Stephane Bidoul, Igor
Zlatkovic)
- xmlWriter bugfix (Alfred Mickautsch)
- chvalid.[ch]: couple of fixes from Stephane Bidoul
- context reset: error state reset, push parser reset (Graham
Bennett)
- context reuse: generate errors if file is not readable
- defaulted attributes for element coming from internal entities
(Stephane Bidoul)
- Python: tab and spaces mix (William Brack)
- Error handler could crash in DTD validation in 2.6.0
- xmlReader: do not use the document or element _private field
- testSAX.c: avoid a problem with some PIs (Massimo Morara)
- general bug fixes: mandatory encoding in text decl, serializing
Document Fragment nodes, xmlSearchNs 2.6.0 problem (Kasimier Buchcik),
XPath errors not reported, slow HTML parsing of large documents.
2.6.0: Oct 20 2003:
- Major revision release: should be API and ABI compatible but got a lot
of change
- Increased the library modularity, far more options can be stripped out,
a --with-minimum configuration will weight around 160KBytes
- Use per parser and per document dictionnary, allocate names and small
text nodes from the dictionnary
- Switch to a SAX2 like parser rewrote most of the XML parser core,
provides namespace resolution and defaulted attributes, minimize memory
allocations and copies, namespace checking and specific error handling,
immutable buffers, make predefined entities static structures, etc...
- rewrote all the error handling in the library, all errors can be
intercepted at a structured level, with precise information
available.
- New simpler and more generic XML and HTML parser APIs, allowing to
easilly modify the parsing options and reuse parser context for multiple
consecutive documents.
- Similar new APIs for the xmlReader, for options and reuse, provided new
functions to access content as const strings, use them for Python
bindings
- a lot of other smaller API improvements: xmlStrPrintf (Aleksey Sanin),
Walker i.e. reader on a document tree based on Alfred Mickautsch code,
make room in nodes for line numbers, reference counting and future PSVI
extensions, generation of character ranges to be checked with faster
algorithm (William), xmlParserMaxDepth (Crutcher Dunnavant), buffer
access
2003-12-04 20:33:38 +01:00
|
|
|
@dirrm share/examples/libxml2
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
@dirrm share/doc/libxml2/tutorial/images/callouts
|
|
|
|
@dirrm share/doc/libxml2/tutorial/images
|
|
|
|
@dirrm share/doc/libxml2/tutorial
|
|
|
|
@dirrm share/doc/libxml2/html
|
2006-05-15 10:27:31 +02:00
|
|
|
@dirrm share/doc/${PKGNAME}
|
Update to 2.6.22:
2.6.22: Sep 12 2005:
- build fixes: compile without schematron (Stéphane Bidoul)
- bug fixes: xmlDebugDumpNode on namespace node (Oleg Paraschenko)i,
CDATA push parser bug, xmlElemDump problem with XHTML1 doc,
XML_FEATURE_xxx clash with expat headers renamed XML_WITH_xxx,
fix some output formatting for meta element (Rob Richards),
script and style XHTML1 serialization (David Madore), Attribute
derivation fixups in XSD (Kasimier Buchcik), better IDC error
reports (Kasimier Buchcik)
- improvements: add XML_SAVE_NO_EMPTY xmlSaveOption (Rob Richards),
add XML_SAVE_NO_XHTML xmlSaveOption, XML Schemas improvements
preparing for derive (Kasimier Buchcik).
- documentation: generation of gtk-doc like docs, integration with
devhelp.
pkgsrc change: install docs into share/doc instead of share/doc/html.
Ok'd by maintainer, recht.
2005-09-30 21:58:00 +02:00
|
|
|
@dirrm share/doc/libxml2
|
2001-09-27 01:22:17 +02:00
|
|
|
@dirrm include/libxml2/libxml
|
|
|
|
@dirrm include/libxml2
|