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:
catalogcatalog - interfaces to the Catalog handling system the catalog module implements the support for XML Catalogs and SGML catalogs Author(s): Daniel Veillard Synopsis#define XML_CATALOGS_NAMESPACE; #define XML_CATALOG_PI; typedef struct _xmlCatalog xmlCatalog; typedef enum xmlCatalogAllow; typedef enum xmlCatalogPrefer; typedef xmlCatalog * xmlCatalogPtr; int xmlACatalogAdd (xmlCatalogPtr catal, DescriptionDetailsMacro XML_CATALOGS_NAMESPACE#define XML_CATALOGS_NAMESPACE; The namespace for the XML Catalogs elements. Structure xmlCatalogstruct _xmlCatalog { The content of this structure is not made public by the API. } xmlCatalog; Enum xmlCatalogAllowenum xmlCatalogAllow { XML_CATA_ALLOW_NONE = 0 XML_CATA_ALLOW_GLOBAL = 1 XML_CATA_ALLOW_DOCUMENT = 2 XML_CATA_ALLOW_ALL = 3 }; Enum xmlCatalogPreferenum xmlCatalogPrefer { XML_CATA_PREFER_NONE = 0 XML_CATA_PREFER_PUBLIC = 1 XML_CATA_PREFER_SYSTEM = 2 }; Typedef xmlCatalogPtrxmlCatalog * xmlCatalogPtr; xmlACatalogAdd ()int xmlACatalogAdd (xmlCatalogPtr catal, Add an entry in the catalog, it may overwrite existing but different entries.
xmlACatalogDump ()void xmlACatalogDump (xmlCatalogPtr catal, Dump the given catalog to the given file.
xmlACatalogRemove ()int xmlACatalogRemove (xmlCatalogPtr catal, Remove an entry from the catalog
xmlACatalogResolve ()xmlChar * xmlACatalogResolve (xmlCatalogPtr catal, Do a complete resolution lookup of an External Identifier
xmlACatalogResolvePublic ()xmlChar * xmlACatalogResolvePublic (xmlCatalogPtr catal, Try to lookup the catalog local reference associated to a public ID in that catalog
xmlACatalogResolveSystem ()xmlChar * xmlACatalogResolveSystem (xmlCatalogPtr catal, Try to lookup the catalog resource for a system ID
xmlACatalogResolveURI ()xmlChar * xmlACatalogResolveURI (xmlCatalogPtr catal, Do a complete resolution lookup of an URI
xmlCatalogAdd ()int xmlCatalogAdd (const xmlChar * type, Add an entry in the catalog, it may overwrite existing but different entries. If called before any other catalog routine, allows to override the default shared catalog put in place by xmlInitializeCatalog();
xmlCatalogAddLocal ()void * xmlCatalogAddLocal (void * catalogs, Add the new entry to the catalog list
xmlCatalogConvert ()int xmlCatalogConvert (void) Convert all the SGML catalog entries as XML ones
xmlCatalogDump ()void xmlCatalogDump (FILE * out) Dump all the global catalog content to the given file.
xmlCatalogFreeLocal ()void xmlCatalogFreeLocal (void * catalogs) Free up the memory associated to the catalog list
xmlCatalogGetDefaults ()xmlCatalogAllow xmlCatalogGetDefaults (void) Used to get the user preference w.r.t. to what catalogs should be accepted
xmlCatalogGetPublic ()const xmlChar * xmlCatalogGetPublic (const xmlChar * pubID) Try to lookup the catalog reference associated to a public ID DEPRECATED, use xmlCatalogResolvePublic()
xmlCatalogGetSystem ()const xmlChar * xmlCatalogGetSystem (const xmlChar * sysID) Try to lookup the catalog reference associated to a system ID DEPRECATED, use xmlCatalogResolveSystem()
xmlCatalogIsEmpty ()int xmlCatalogIsEmpty (xmlCatalogPtr catal) Check is a catalog is empty
xmlCatalogLocalResolve ()xmlChar * xmlCatalogLocalResolve (void * catalogs, Do a complete resolution lookup of an External Identifier using a document's private catalog list
xmlCatalogLocalResolveURI ()xmlChar * xmlCatalogLocalResolveURI (void * catalogs, Do a complete resolution lookup of an URI using a document's private catalog list
xmlCatalogRemove ()int xmlCatalogRemove (const xmlChar * value) Remove an entry from the catalog
xmlCatalogResolve ()xmlChar * xmlCatalogResolve (const xmlChar * pubID, Do a complete resolution lookup of an External Identifier
xmlCatalogResolvePublic ()xmlChar * xmlCatalogResolvePublic (const xmlChar * pubID) Try to lookup the catalog reference associated to a public ID
xmlCatalogResolveSystem ()xmlChar * xmlCatalogResolveSystem (const xmlChar * sysID) Try to lookup the catalog resource for a system ID
xmlCatalogResolveURI ()xmlChar * xmlCatalogResolveURI (const xmlChar * URI) Do a complete resolution lookup of an URI
xmlCatalogSetDebug ()int xmlCatalogSetDebug (int level) Used to set the debug level for catalog operation, 0 disable debugging, 1 enable it
xmlCatalogSetDefaultPrefer ()xmlCatalogPrefer xmlCatalogSetDefaultPrefer (xmlCatalogPrefer prefer) Allows to set the preference between public and system for deletion in XML Catalog resolution. C.f. section 4.1.1 of the spec Values accepted are XML_CATA_PREFER_PUBLIC or XML_CATA_PREFER_SYSTEM
xmlCatalogSetDefaults ()void xmlCatalogSetDefaults (xmlCatalogAllow allow) Used to set the user preference w.r.t. to what catalogs should be accepted
xmlConvertSGMLCatalog ()int xmlConvertSGMLCatalog (xmlCatalogPtr catal) Convert all the SGML catalog entries as XML ones
xmlFreeCatalog ()void xmlFreeCatalog (xmlCatalogPtr catal) Free the memory allocated to a Catalog
xmlInitializeCatalog ()void xmlInitializeCatalog (void) Do the catalog initialization. this function is not thread safe, catalog initialization should preferably be done once at startup xmlLoadACatalog ()xmlCatalogPtr xmlLoadACatalog (const char * filename) Load the catalog and build the associated data structures. This can be either an XML Catalog or an SGML Catalog It will recurse in SGML CATALOG entries. On the other hand XML Catalogs are not handled recursively.
xmlLoadCatalog ()int xmlLoadCatalog (const char * filename) Load the catalog and makes its definitions effective for the default external entity loader. It will recurse in SGML CATALOG entries. this function is not thread safe, catalog initialization should preferably be done once at startup
xmlLoadCatalogs ()void xmlLoadCatalogs (const char * pathss) Load the catalogs and makes their definitions effective for the default external entity loader. this function is not thread safe, catalog initialization should preferably be done once at startup
xmlLoadSGMLSuperCatalog ()xmlCatalogPtr xmlLoadSGMLSuperCatalog (const char * filename) Load an SGML super catalog. It won't expand CATALOG or DELEGATE references. This is only needed for manipulating SGML Super Catalogs like adding and removing CATALOG or DELEGATE entries.
xmlNewCatalog ()xmlCatalogPtr xmlNewCatalog (int sgml) create a new Catalog.
xmlParseCatalogFile ()xmlDocPtr xmlParseCatalogFile (const char * filename) parse an XML file and build a tree. It's like xmlParseFile() except it bypass all catalog lookups.
|
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0043 ]-- |