Diff for /embedaddon/libxml2/DOCBparser.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:37:58 version 1.1.1.2, 2014/06/15 19:53:31
Line 53  docbEncodeEntities(unsigned char *out ATTRIBUTE_UNUSED Line 53  docbEncodeEntities(unsigned char *out ATTRIBUTE_UNUSED
 /**  /**
  * docbParseDocument:   * docbParseDocument:
  * @ctxt:  an SGML parser context   * @ctxt:  an SGML parser context
 *  *
  * parse an SGML document (and build a tree if using the standard SAX   * parse an SGML document (and build a tree if using the standard SAX
  * interface).   * interface).
  *   *
Line 163  docbCreatePushParserCtxt(docbSAXHandlerPtr sax ATTRIBU Line 163  docbCreatePushParserCtxt(docbSAXHandlerPtr sax ATTRIBU
  * @cur:  a pointer to an array of xmlChar   * @cur:  a pointer to an array of xmlChar
  * @encoding:  a free form C string describing the SGML document encoding, or NULL   * @encoding:  a free form C string describing the SGML document encoding, or NULL
  * @sax:  the SAX handler block   * @sax:  the SAX handler block
 * @userData: if using SAX, this pointer will be provided on callbacks.  * @userData: if using SAX, this pointer will be provided on callbacks.
  *   *
  * parse an SGML in-memory document and build a tree.   * parse an SGML in-memory document and build a tree.
  * It use the given SAX function block to handle the parsing callback.   * It use the given SAX function block to handle the parsing callback.
  * If sax is NULL, fallback to the default DOM tree building routines.   * If sax is NULL, fallback to the default DOM tree building routines.
 *  *
  * Returns the resulting document tree   * Returns the resulting document tree
  */   */
   
Line 196  docbSAXParseDoc(xmlChar * cur ATTRIBUTE_UNUSED, Line 196  docbSAXParseDoc(xmlChar * cur ATTRIBUTE_UNUSED,
  * @encoding:  a free form C string describing the SGML document encoding, or NULL   * @encoding:  a free form C string describing the SGML document encoding, or NULL
  *   *
  * parse an SGML in-memory document and build a tree.   * parse an SGML in-memory document and build a tree.
 *  *
  * Returns the resulting document tree   * Returns the resulting document tree
  */   */
   
Line 221  docbParseDoc(xmlChar * cur ATTRIBUTE_UNUSED, Line 221  docbParseDoc(xmlChar * cur ATTRIBUTE_UNUSED,
  * @filename:  the filename   * @filename:  the filename
  * @encoding:  the SGML document encoding, or NULL   * @encoding:  the SGML document encoding, or NULL
  *   *
 * Create a parser context for a file content.  * Create a parser context for a file content.
  * Automatic support for ZLIB/Compress compressed document is provided   * Automatic support for ZLIB/Compress compressed document is provided
  * by default if found at compile-time.   * by default if found at compile-time.
  *   *
Line 247  docbCreateFileParserCtxt(const char *filename ATTRIBUT Line 247  docbCreateFileParserCtxt(const char *filename ATTRIBUT
  * @filename:  the filename   * @filename:  the filename
  * @encoding:  a free form C string describing the SGML document encoding, or NULL   * @encoding:  a free form C string describing the SGML document encoding, or NULL
  * @sax:  the SAX handler block   * @sax:  the SAX handler block
 * @userData: if using SAX, this pointer will be provided on callbacks.  * @userData: if using SAX, this pointer will be provided on callbacks.
  *   *
  * parse an SGML file and build a tree. Automatic support for ZLIB/Compress   * parse an SGML file and build a tree. Automatic support for ZLIB/Compress
  * compressed document is provided by default if found at compile-time.   * compressed document is provided by default if found at compile-time.

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>