Home | History | Annotate | Download | only in libxml2

Lines Matching defs:base

2037  * Implements the XML shell function "base"
2038 * dumps the current XML base of the node
2047 xmlChar *base;
2055 base = xmlNodeGetBase(node->doc, node);
2057 if (base == NULL) {
2058 fprintf(ctxt->output, " No base found !!!\n");
2060 fprintf(ctxt->output, "%s\n", base);
2061 xmlFree(base);
2070 * @arg: the new base
2075 * change the current XML base of the node
2893 fprintf(ctxt->output, "\tbase display XML base of the node\n");
2894 fprintf(ctxt->output, "\tsetbase URI change the XML base of the node\n");
2964 } else if (!strcmp(command, "base")) {