facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
177 lines
4.9 KiB
C
177 lines
4.9 KiB
C
/* libxml2 - Library for parsing XML documents
|
|
* Copyright (C) 2006-2019 Free Software Foundation, Inc.
|
|
*
|
|
* This file is not part of the GNU gettext program, but is used with
|
|
* GNU gettext.
|
|
*
|
|
* The original copyright notice is as follows:
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is fur-
|
|
* nished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
|
|
* NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
/*
|
|
* Summary: specific APIs to process HTML tree, especially serialization
|
|
* Description: this module implements a few function needed to process
|
|
* tree in an HTML specific way.
|
|
*/
|
|
|
|
#ifndef __HTML_TREE_H__
|
|
#define __HTML_TREE_H__
|
|
|
|
#include <stdio.h>
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/HTMLparser.h>
|
|
|
|
#ifdef LIBXML_HTML_ENABLED
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* HTML_TEXT_NODE:
|
|
*
|
|
* Macro. A text node in a HTML document is really implemented
|
|
* the same way as a text node in an XML document.
|
|
*/
|
|
#define HTML_TEXT_NODE XML_TEXT_NODE
|
|
/**
|
|
* HTML_ENTITY_REF_NODE:
|
|
*
|
|
* Macro. An entity reference in a HTML document is really implemented
|
|
* the same way as an entity reference in an XML document.
|
|
*/
|
|
#define HTML_ENTITY_REF_NODE XML_ENTITY_REF_NODE
|
|
/**
|
|
* HTML_COMMENT_NODE:
|
|
*
|
|
* Macro. A comment in a HTML document is really implemented
|
|
* the same way as a comment in an XML document.
|
|
*/
|
|
#define HTML_COMMENT_NODE XML_COMMENT_NODE
|
|
/**
|
|
* HTML_PRESERVE_NODE:
|
|
*
|
|
* Macro. A preserved node in a HTML document is really implemented
|
|
* the same way as a CDATA section in an XML document.
|
|
*/
|
|
#define HTML_PRESERVE_NODE XML_CDATA_SECTION_NODE
|
|
/**
|
|
* HTML_PI_NODE:
|
|
*
|
|
* Macro. A processing instruction in a HTML document is really implemented
|
|
* the same way as a processing instruction in an XML document.
|
|
*/
|
|
#define HTML_PI_NODE XML_PI_NODE
|
|
|
|
XMLPUBFUN htmlDocPtr XMLCALL
|
|
htmlNewDoc (const xmlChar *URI,
|
|
const xmlChar *ExternalID);
|
|
XMLPUBFUN htmlDocPtr XMLCALL
|
|
htmlNewDocNoDtD (const xmlChar *URI,
|
|
const xmlChar *ExternalID);
|
|
XMLPUBFUN const xmlChar * XMLCALL
|
|
htmlGetMetaEncoding (htmlDocPtr doc);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlSetMetaEncoding (htmlDocPtr doc,
|
|
const xmlChar *encoding);
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
XMLPUBFUN void XMLCALL
|
|
htmlDocDumpMemory (xmlDocPtr cur,
|
|
xmlChar **mem,
|
|
int *size);
|
|
XMLPUBFUN void XMLCALL
|
|
htmlDocDumpMemoryFormat (xmlDocPtr cur,
|
|
xmlChar **mem,
|
|
int *size,
|
|
int format);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlDocDump (FILE *f,
|
|
xmlDocPtr cur);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlSaveFile (const char *filename,
|
|
xmlDocPtr cur);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlNodeDump (xmlBufferPtr buf,
|
|
xmlDocPtr doc,
|
|
xmlNodePtr cur);
|
|
XMLPUBFUN void XMLCALL
|
|
htmlNodeDumpFile (FILE *out,
|
|
xmlDocPtr doc,
|
|
xmlNodePtr cur);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlNodeDumpFileFormat (FILE *out,
|
|
xmlDocPtr doc,
|
|
xmlNodePtr cur,
|
|
const char *encoding,
|
|
int format);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlSaveFileEnc (const char *filename,
|
|
xmlDocPtr cur,
|
|
const char *encoding);
|
|
XMLPUBFUN int XMLCALL
|
|
htmlSaveFileFormat (const char *filename,
|
|
xmlDocPtr cur,
|
|
const char *encoding,
|
|
int format);
|
|
|
|
XMLPUBFUN void XMLCALL
|
|
htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf,
|
|
xmlDocPtr doc,
|
|
xmlNodePtr cur,
|
|
const char *encoding,
|
|
int format);
|
|
XMLPUBFUN void XMLCALL
|
|
htmlDocContentDumpOutput(xmlOutputBufferPtr buf,
|
|
xmlDocPtr cur,
|
|
const char *encoding);
|
|
XMLPUBFUN void XMLCALL
|
|
htmlDocContentDumpFormatOutput(xmlOutputBufferPtr buf,
|
|
xmlDocPtr cur,
|
|
const char *encoding,
|
|
int format);
|
|
XMLPUBFUN void XMLCALL
|
|
htmlNodeDumpOutput (xmlOutputBufferPtr buf,
|
|
xmlDocPtr doc,
|
|
xmlNodePtr cur,
|
|
const char *encoding);
|
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
|
|
XMLPUBFUN int XMLCALL
|
|
htmlIsBooleanAttr (const xmlChar *name);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* LIBXML_HTML_ENABLED */
|
|
|
|
#endif /* __HTML_TREE_H__ */
|
|
|