Home | History | Annotate | Download | only in libxml2

Lines Matching defs:URL

224     xmlChar *URL;
1505 * @URL: the normalized URL
1515 const xmlChar * URL ATTRIBUTE_UNUSED,
1525 "Elimination of <include> start from %s\n", URL);
1529 name, URL);
1581 * @URL: the normalized URL
1592 xmlRelaxNGLoadInclude(xmlRelaxNGParserCtxtPtr ctxt, const xmlChar * URL,
1602 "xmlRelaxNGLoadInclude(%s)\n", URL);
1609 if (xmlStrEqual(ctxt->incTab[i]->href, URL)) {
1611 "Detected an Include recursion for %s\n", URL,
1620 doc = xmlReadFile((const char *) URL,NULL,0);
1623 "xmlRelaxNG: could not load %s\n", URL, NULL);
1627 xmlGenericError(xmlGenericErrorContext, "Parsed %s Okay\n", URL);
1641 ret->href = xmlStrdup(URL);
1667 xmlGenericError(xmlGenericErrorContext, "cleanup of %s\n", URL);
1682 xmlGenericError(xmlGenericErrorContext, "Checking of %s\n", URL);
1690 "xmlRelaxNG: included document is empty %s\n", URL,
1697 URL, NULL);
1710 xmlRelaxNGRemoveRedefine(ctxt, URL, root->children, NULL);
1714 URL, NULL);
1723 URL, NULL);
1728 found = xmlRelaxNGRemoveRedefine(ctxt, URL,
1733 URL, name);
1919 * @URL: the normalized URL
1930 const xmlChar * URL, const xmlChar * ns)
1941 if (xmlStrEqual(ctxt->docTab[i]->href, URL)) {
1943 "Detected an externalRef recursion for %s\n", URL,
1952 doc = xmlReadFile((const char *) URL,NULL,0);
1955 "xmlRelaxNG: could not load %s\n", URL, NULL);
1965 "xmlRelaxNG: allocate memory for doc %s\n", URL, NULL);
1971 ret->href = xmlStrdup(URL);
4650 "xmlRelaxNGParse: %s is empty\n", ctxt->URL,
6591 * @URL: the location of the schema
6599 xmlRelaxNGNewParserCtxt(const char *URL)
6603 if (URL == NULL)
6613 ret->URL = xmlStrdup((const xmlChar *) URL);
6697 if (ctxt->URL != NULL)
6698 xmlFree(ctxt->URL);
6903 xmlChar *href, *ns, *base, *URL;
6955 URL = xmlBuildURI(href, base);
6956 if (URL == NULL) {
6958 "Failed to compute URL for externalRef %s\n",
6973 docu = xmlRelaxNGLoadExternalRef(ctxt, URL, ns);
6976 "Failed to load externalRef %s\n", URL,
6980 xmlFree(URL);
6986 xmlFree(URL);
6989 xmlChar *href, *ns, *base, *URL;
7002 URL = xmlBuildURI(href, base);
7003 if (URL == NULL) {
7005 "Failed to compute URL for include %s\n",
7029 incl = xmlRelaxNGLoadInclude(ctxt, URL, cur, ns);
7034 "Failed to load include %s\n", URL,
7036 xmlFree(URL);
7040 xmlFree(URL);
7323 ctxt->URL, NULL);
7355 if (ctxt->URL != NULL) {
7356 doc = xmlReadFile((const char *) ctxt->URL,NULL,0);
7359 "xmlRelaxNGParse: could not load %s\n", ctxt->URL,
7371 doc->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
7372 ctxt->URL = xmlStrdup(BAD_CAST "in_memory_buffer");
7399 (ctxt->URL ? ctxt->URL : BAD_CAST "schemas"), NULL);
7741 } else if (schema->doc->URL != NULL) {
7742 fprintf(output, "%s\n", schema->doc->URL);