Home | History | Annotate | Download | only in libxml2

Lines Matching full:base

2035  * Implements the XML shell function "base"
2036 * dumps the current XML base of the node
2045 xmlChar *base;
2053 base = xmlNodeGetBase(node->doc, node);
2055 if (base == NULL) {
2056 fprintf(ctxt->output, " No base found !!!\n");
2058 fprintf(ctxt->output, "%s\n", base);
2059 xmlFree(base);
2068 * @arg: the new base
2073 * change the current XML base of the node
2896 fprintf(ctxt->output, "\tbase display XML base of the node\n");
2897 fprintf(ctxt->output, "\tsetbase URI change the XML base of the node\n");
2967 } else if (!strcmp(command, "base")) {