Software: Apache. PHP/7.3.33 uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) Safe-mode: OFF (not secure) /opt/alt/libxml2/usr/share/gtk-doc/html/libxml2/ drwxr-xr-x |
Viewing file: Select action/file-type:
relaxngrelaxng - implementation of the Relax-NG validation implementation of the Relax-NG validation Author(s): Daniel Veillard Synopsistypedef struct _xmlRelaxNG xmlRelaxNG; typedef struct _xmlRelaxNGParserCtxt xmlRelaxNGParserCtxt; typedef xmlRelaxNGParserCtxt * xmlRelaxNGParserCtxtPtr; typedef enum xmlRelaxNGParserFlag; typedef xmlRelaxNG * xmlRelaxNGPtr; typedef struct _xmlRelaxNGValidCtxt xmlRelaxNGValidCtxt; typedef xmlRelaxNGValidCtxt * xmlRelaxNGValidCtxtPtr; typedef enum xmlRelaxNGValidErr; void xmlRelaxNGCleanupTypes (void); void xmlRelaxNGDump (FILE * output, DescriptionDetailsStructure xmlRelaxNGstruct _xmlRelaxNG { The content of this structure is not made public by the API. } xmlRelaxNG; Structure xmlRelaxNGParserCtxtstruct _xmlRelaxNGParserCtxt { The content of this structure is not made public by the API. } xmlRelaxNGParserCtxt; Typedef xmlRelaxNGParserCtxtPtrxmlRelaxNGParserCtxt * xmlRelaxNGParserCtxtPtr; Enum xmlRelaxNGParserFlagenum xmlRelaxNGParserFlag { XML_RELAXNGP_NONE = 0 XML_RELAXNGP_FREE_DOC = 1 XML_RELAXNGP_CRNG = 2 }; Typedef xmlRelaxNGPtrxmlRelaxNG * xmlRelaxNGPtr; Structure xmlRelaxNGValidCtxtstruct _xmlRelaxNGValidCtxt { The content of this structure is not made public by the API. } xmlRelaxNGValidCtxt; Typedef xmlRelaxNGValidCtxtPtrxmlRelaxNGValidCtxt * xmlRelaxNGValidCtxtPtr; Enum xmlRelaxNGValidErrenum xmlRelaxNGValidErr { XML_RELAXNG_OK = 0 XML_RELAXNG_ERR_MEMORY = 1 XML_RELAXNG_ERR_TYPE = 2 XML_RELAXNG_ERR_TYPEVAL = 3 XML_RELAXNG_ERR_DUPID = 4 XML_RELAXNG_ERR_TYPECMP = 5 XML_RELAXNG_ERR_NOSTATE = 6 XML_RELAXNG_ERR_NODEFINE = 7 XML_RELAXNG_ERR_LISTEXTRA = 8 XML_RELAXNG_ERR_LISTEMPTY = 9 XML_RELAXNG_ERR_INTERNODATA = 10 XML_RELAXNG_ERR_INTERSEQ = 11 XML_RELAXNG_ERR_INTEREXTRA = 12 XML_RELAXNG_ERR_ELEMNAME = 13 XML_RELAXNG_ERR_ATTRNAME = 14 XML_RELAXNG_ERR_ELEMNONS = 15 XML_RELAXNG_ERR_ATTRNONS = 16 XML_RELAXNG_ERR_ELEMWRONGNS = 17 XML_RELAXNG_ERR_ATTRWRONGNS = 18 XML_RELAXNG_ERR_ELEMEXTRANS = 19 XML_RELAXNG_ERR_ATTREXTRANS = 20 XML_RELAXNG_ERR_ELEMNOTEMPTY = 21 XML_RELAXNG_ERR_NOELEM = 22 XML_RELAXNG_ERR_NOTELEM = 23 XML_RELAXNG_ERR_ATTRVALID = 24 XML_RELAXNG_ERR_CONTENTVALID = 25 XML_RELAXNG_ERR_EXTRACONTENT = 26 XML_RELAXNG_ERR_INVALIDATTR = 27 XML_RELAXNG_ERR_DATAELEM = 28 XML_RELAXNG_ERR_VALELEM = 29 XML_RELAXNG_ERR_LISTELEM = 30 XML_RELAXNG_ERR_DATATYPE = 31 XML_RELAXNG_ERR_VALUE = 32 XML_RELAXNG_ERR_LIST = 33 XML_RELAXNG_ERR_NOGRAMMAR = 34 XML_RELAXNG_ERR_EXTRADATA = 35 XML_RELAXNG_ERR_LACKDATA = 36 XML_RELAXNG_ERR_INTERNAL = 37 XML_RELAXNG_ERR_ELEMWRONG = 38 XML_RELAXNG_ERR_TEXTWRONG = 39 }; Function type xmlRelaxNGValidityErrorFuncvoid xmlRelaxNGValidityErrorFunc (void * ctx, Signature of an error callback from a Relax-NG validation
Function type xmlRelaxNGValidityWarningFuncvoid xmlRelaxNGValidityWarningFunc (void * ctx, Signature of a warning callback from a Relax-NG validation
xmlRelaxNGCleanupTypes ()void xmlRelaxNGCleanupTypes (void) DEPRECATED: This function will be made private. Call xmlCleanupParser to free global state but see the warnings there. xmlCleanupParser should be only called once at program exit. In most cases, you don't have call cleanup functions at all. Cleanup the default Schemas type library associated to RelaxNG xmlRelaxNGDump ()void xmlRelaxNGDump (FILE * output, Dump a RelaxNG structure back
xmlRelaxNGDumpTree ()void xmlRelaxNGDumpTree (FILE * output, Dump the transformed RelaxNG tree.
xmlRelaxNGFree ()void xmlRelaxNGFree (xmlRelaxNGPtr schema) Deallocate a RelaxNG structure.
xmlRelaxNGFreeParserCtxt ()void xmlRelaxNGFreeParserCtxt (xmlRelaxNGParserCtxtPtr ctxt) Free the resources associated to the schema parser context
xmlRelaxNGFreeValidCtxt ()void xmlRelaxNGFreeValidCtxt (xmlRelaxNGValidCtxtPtr ctxt) Free the resources associated to the schema validation context
xmlRelaxNGGetParserErrors ()int xmlRelaxNGGetParserErrors (xmlRelaxNGParserCtxtPtr ctxt, Get the callback information used to handle errors for a validation context
xmlRelaxNGGetValidErrors ()int xmlRelaxNGGetValidErrors (xmlRelaxNGValidCtxtPtr ctxt, Get the error and warning callback information
xmlRelaxNGInitTypes ()int xmlRelaxNGInitTypes (void) Initialize the default type libraries.
xmlRelaxNGNewDocParserCtxt ()xmlRelaxNGParserCtxtPtr xmlRelaxNGNewDocParserCtxt (xmlDocPtr doc) Create an XML RelaxNGs parser context for that document. Note: since the process of compiling a RelaxNG schemas modifies the document, the @doc parameter is duplicated internally.
xmlRelaxNGNewMemParserCtxt ()xmlRelaxNGParserCtxtPtr xmlRelaxNGNewMemParserCtxt (const char * buffer, Create an XML RelaxNGs parse context for that memory buffer expected to contain an XML RelaxNGs file.
xmlRelaxNGNewParserCtxt ()xmlRelaxNGParserCtxtPtr xmlRelaxNGNewParserCtxt (const char * URL) Create an XML RelaxNGs parse context for that file/resource expected to contain an XML RelaxNGs file.
xmlRelaxNGNewValidCtxt ()xmlRelaxNGValidCtxtPtr xmlRelaxNGNewValidCtxt (xmlRelaxNGPtr schema) Create an XML RelaxNGs validation context based on the given schema
xmlRelaxNGParse ()xmlRelaxNGPtr xmlRelaxNGParse (xmlRelaxNGParserCtxtPtr ctxt) parse a schema definition resource and build an internal XML Schema structure which can be used to validate instances.
xmlRelaxNGSetParserErrors ()void xmlRelaxNGSetParserErrors (xmlRelaxNGParserCtxtPtr ctxt, Set the callback functions used to handle errors for a validation context
xmlRelaxNGSetParserStructuredErrors ()void xmlRelaxNGSetParserStructuredErrors (xmlRelaxNGParserCtxtPtr ctxt, Set the callback functions used to handle errors for a parsing context
xmlRelaxNGSetValidErrors ()void xmlRelaxNGSetValidErrors (xmlRelaxNGValidCtxtPtr ctxt, Set the error and warning callback information
xmlRelaxNGSetValidStructuredErrors ()void xmlRelaxNGSetValidStructuredErrors (xmlRelaxNGValidCtxtPtr ctxt, Set the structured error callback
xmlRelaxNGValidateDoc ()int xmlRelaxNGValidateDoc (xmlRelaxNGValidCtxtPtr ctxt, Validate a document tree in memory.
xmlRelaxNGValidateFullElement ()int xmlRelaxNGValidateFullElement (xmlRelaxNGValidCtxtPtr ctxt, Validate a full subtree when xmlRelaxNGValidatePushElement() returned 0 and the content of the node has been expanded.
xmlRelaxNGValidatePopElement ()int xmlRelaxNGValidatePopElement (xmlRelaxNGValidCtxtPtr ctxt, Pop the element end from the RelaxNG validation stack.
xmlRelaxNGValidatePushCData ()int xmlRelaxNGValidatePushCData (xmlRelaxNGValidCtxtPtr ctxt, check the CData parsed for validation in the current stack
xmlRelaxNGValidatePushElement ()int xmlRelaxNGValidatePushElement (xmlRelaxNGValidCtxtPtr ctxt, Push a new element start on the RelaxNG validation stack.
xmlRelaxParserSetFlag ()int xmlRelaxParserSetFlag (xmlRelaxNGParserCtxtPtr ctxt, Semi private function used to pass information to a parser context which are a combination of xmlRelaxNGParserFlag .
|
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0916 ]-- |