Lines Matching refs:output
42 FILE *output; /* the output file */ member
64 ctxt->output = stdout; in xmlCtxtDumpInitCtxt()
142 if ((ctxt->output != NULL) && (ctxt->depth > 0)) { in xmlCtxtDumpSpaces()
144 fprintf(ctxt->output, "%s", &ctxt->shift[100 - 2 * ctxt->depth]); in xmlCtxtDumpSpaces()
146 fprintf(ctxt->output, "%s", ctxt->shift); in xmlCtxtDumpSpaces()
431 fprintf(ctxt->output, "(NULL)"); in xmlCtxtDumpString()
438 fputc(' ', ctxt->output); in xmlCtxtDumpString()
440 fprintf(ctxt->output, "#%X", str[i]); in xmlCtxtDumpString()
442 fputc(str[i], ctxt->output); in xmlCtxtDumpString()
443 fprintf(ctxt->output, "..."); in xmlCtxtDumpString()
453 fprintf(ctxt->output, "DTD node is NULL\n"); in xmlCtxtDumpDtdNode()
464 fprintf(ctxt->output, "DTD(%s)", (char *) dtd->name); in xmlCtxtDumpDtdNode()
466 fprintf(ctxt->output, "DTD"); in xmlCtxtDumpDtdNode()
468 fprintf(ctxt->output, ", PUBLIC %s", (char *) dtd->ExternalID); in xmlCtxtDumpDtdNode()
470 fprintf(ctxt->output, ", SYSTEM %s", (char *) dtd->SystemID); in xmlCtxtDumpDtdNode()
471 fprintf(ctxt->output, "\n"); in xmlCtxtDumpDtdNode()
486 fprintf(ctxt->output, "Attribute declaration is NULL\n"); in xmlCtxtDumpAttrDecl()
496 fprintf(ctxt->output, "ATTRDECL(%s)", (char *) attr->name); in xmlCtxtDumpAttrDecl()
502 fprintf(ctxt->output, " for %s", (char *) attr->elem); in xmlCtxtDumpAttrDecl()
509 fprintf(ctxt->output, " CDATA"); in xmlCtxtDumpAttrDecl()
512 fprintf(ctxt->output, " ID"); in xmlCtxtDumpAttrDecl()
515 fprintf(ctxt->output, " IDREF"); in xmlCtxtDumpAttrDecl()
518 fprintf(ctxt->output, " IDREFS"); in xmlCtxtDumpAttrDecl()
521 fprintf(ctxt->output, " ENTITY"); in xmlCtxtDumpAttrDecl()
524 fprintf(ctxt->output, " ENTITIES"); in xmlCtxtDumpAttrDecl()
527 fprintf(ctxt->output, " NMTOKEN"); in xmlCtxtDumpAttrDecl()
530 fprintf(ctxt->output, " NMTOKENS"); in xmlCtxtDumpAttrDecl()
533 fprintf(ctxt->output, " ENUMERATION"); in xmlCtxtDumpAttrDecl()
536 fprintf(ctxt->output, " NOTATION "); in xmlCtxtDumpAttrDecl()
545 fprintf(ctxt->output, "|%s", (char *) cur->name); in xmlCtxtDumpAttrDecl()
547 fprintf(ctxt->output, " (%s", (char *) cur->name); in xmlCtxtDumpAttrDecl()
553 fprintf(ctxt->output, ")"); in xmlCtxtDumpAttrDecl()
555 fprintf(ctxt->output, "...)"); in xmlCtxtDumpAttrDecl()
561 fprintf(ctxt->output, " REQUIRED"); in xmlCtxtDumpAttrDecl()
564 fprintf(ctxt->output, " IMPLIED"); in xmlCtxtDumpAttrDecl()
567 fprintf(ctxt->output, " FIXED"); in xmlCtxtDumpAttrDecl()
571 fprintf(ctxt->output, "\""); in xmlCtxtDumpAttrDecl()
573 fprintf(ctxt->output, "\""); in xmlCtxtDumpAttrDecl()
575 fprintf(ctxt->output, "\n"); in xmlCtxtDumpAttrDecl()
591 fprintf(ctxt->output, "Element declaration is NULL\n"); in xmlCtxtDumpElemDecl()
601 fprintf(ctxt->output, "ELEMDECL("); in xmlCtxtDumpElemDecl()
603 fprintf(ctxt->output, ")"); in xmlCtxtDumpElemDecl()
611 fprintf(ctxt->output, ", UNDEFINED"); in xmlCtxtDumpElemDecl()
614 fprintf(ctxt->output, ", EMPTY"); in xmlCtxtDumpElemDecl()
617 fprintf(ctxt->output, ", ANY"); in xmlCtxtDumpElemDecl()
620 fprintf(ctxt->output, ", MIXED "); in xmlCtxtDumpElemDecl()
623 fprintf(ctxt->output, ", MIXED "); in xmlCtxtDumpElemDecl()
632 fprintf(ctxt->output, "%s", buf); in xmlCtxtDumpElemDecl()
634 fprintf(ctxt->output, "\n"); in xmlCtxtDumpElemDecl()
650 fprintf(ctxt->output, "Entity declaration is NULL\n"); in xmlCtxtDumpEntityDecl()
660 fprintf(ctxt->output, "ENTITYDECL("); in xmlCtxtDumpEntityDecl()
662 fprintf(ctxt->output, ")"); in xmlCtxtDumpEntityDecl()
670 fprintf(ctxt->output, ", internal\n"); in xmlCtxtDumpEntityDecl()
673 fprintf(ctxt->output, ", external parsed\n"); in xmlCtxtDumpEntityDecl()
676 fprintf(ctxt->output, ", unparsed\n"); in xmlCtxtDumpEntityDecl()
679 fprintf(ctxt->output, ", parameter\n"); in xmlCtxtDumpEntityDecl()
682 fprintf(ctxt->output, ", external parameter\n"); in xmlCtxtDumpEntityDecl()
685 fprintf(ctxt->output, ", predefined\n"); in xmlCtxtDumpEntityDecl()
690 fprintf(ctxt->output, " ExternalID=%s\n", in xmlCtxtDumpEntityDecl()
695 fprintf(ctxt->output, " SystemID=%s\n", in xmlCtxtDumpEntityDecl()
700 fprintf(ctxt->output, " URI=%s\n", (char *) ent->URI); in xmlCtxtDumpEntityDecl()
704 fprintf(ctxt->output, " content="); in xmlCtxtDumpEntityDecl()
706 fprintf(ctxt->output, "\n"); in xmlCtxtDumpEntityDecl()
723 fprintf(ctxt->output, "namespace node is NULL\n"); in xmlCtxtDumpNamespace()
742 fprintf(ctxt->output, "namespace %s href=", in xmlCtxtDumpNamespace()
745 fprintf(ctxt->output, "default namespace href="); in xmlCtxtDumpNamespace()
748 fprintf(ctxt->output, "\n"); in xmlCtxtDumpNamespace()
769 fprintf(ctxt->output, "Entity is NULL\n"); in xmlCtxtDumpEntity()
775 fprintf(ctxt->output, "INTERNAL_GENERAL_ENTITY "); in xmlCtxtDumpEntity()
778 fprintf(ctxt->output, "EXTERNAL_GENERAL_PARSED_ENTITY "); in xmlCtxtDumpEntity()
781 fprintf(ctxt->output, "EXTERNAL_GENERAL_UNPARSED_ENTITY "); in xmlCtxtDumpEntity()
784 fprintf(ctxt->output, "INTERNAL_PARAMETER_ENTITY "); in xmlCtxtDumpEntity()
787 fprintf(ctxt->output, "EXTERNAL_PARAMETER_ENTITY "); in xmlCtxtDumpEntity()
790 fprintf(ctxt->output, "ENTITY_%d ! ", (int) ent->etype); in xmlCtxtDumpEntity()
792 fprintf(ctxt->output, "%s\n", ent->name); in xmlCtxtDumpEntity()
795 fprintf(ctxt->output, "ExternalID=%s\n", in xmlCtxtDumpEntity()
800 fprintf(ctxt->output, "SystemID=%s\n", (char *) ent->SystemID); in xmlCtxtDumpEntity()
804 fprintf(ctxt->output, "URI=%s\n", (char *) ent->URI); in xmlCtxtDumpEntity()
808 fprintf(ctxt->output, "content="); in xmlCtxtDumpEntity()
810 fprintf(ctxt->output, "\n"); in xmlCtxtDumpEntity()
830 fprintf(ctxt->output, "Attr is NULL"); in xmlCtxtDumpAttr()
834 fprintf(ctxt->output, "ATTRIBUTE "); in xmlCtxtDumpAttr()
836 fprintf(ctxt->output, "\n"); in xmlCtxtDumpAttr()
884 fprintf(ctxt->output, "node is NULL\n"); in xmlCtxtDumpOneNode()
894 fprintf(ctxt->output, "ELEMENT "); in xmlCtxtDumpOneNode()
897 fprintf(ctxt->output, ":"); in xmlCtxtDumpOneNode()
900 fprintf(ctxt->output, "\n"); in xmlCtxtDumpOneNode()
906 fprintf(ctxt->output, "Error, ATTRIBUTE found here\n"); in xmlCtxtDumpOneNode()
913 fprintf(ctxt->output, "TEXT no enc"); in xmlCtxtDumpOneNode()
915 fprintf(ctxt->output, "TEXT"); in xmlCtxtDumpOneNode()
918 fprintf(ctxt->output, " compact\n"); in xmlCtxtDumpOneNode()
920 fprintf(ctxt->output, " interned\n"); in xmlCtxtDumpOneNode()
922 fprintf(ctxt->output, "\n"); in xmlCtxtDumpOneNode()
924 fprintf(ctxt->output, "\n"); in xmlCtxtDumpOneNode()
930 fprintf(ctxt->output, "CDATA_SECTION\n"); in xmlCtxtDumpOneNode()
936 fprintf(ctxt->output, "ENTITY_REF(%s)\n", in xmlCtxtDumpOneNode()
943 fprintf(ctxt->output, "ENTITY\n"); in xmlCtxtDumpOneNode()
949 fprintf(ctxt->output, "PI %s\n", (char *) node->name); in xmlCtxtDumpOneNode()
955 fprintf(ctxt->output, "COMMENT\n"); in xmlCtxtDumpOneNode()
963 fprintf(ctxt->output, "Error, DOCUMENT found here\n"); in xmlCtxtDumpOneNode()
969 fprintf(ctxt->output, "DOCUMENT_TYPE\n"); in xmlCtxtDumpOneNode()
975 fprintf(ctxt->output, "DOCUMENT_FRAG\n"); in xmlCtxtDumpOneNode()
981 fprintf(ctxt->output, "NOTATION\n"); in xmlCtxtDumpOneNode()
1002 fprintf(ctxt->output, "INCLUDE START\n"); in xmlCtxtDumpOneNode()
1008 fprintf(ctxt->output, "INCLUDE END\n"); in xmlCtxtDumpOneNode()
1022 fprintf(ctxt->output, "PBM: doc == NULL !!!\n"); in xmlCtxtDumpOneNode()
1033 fprintf(ctxt->output, "content="); in xmlCtxtDumpOneNode()
1035 fprintf(ctxt->output, "\n"); in xmlCtxtDumpOneNode()
1067 fprintf(ctxt->output, "node is NULL\n"); in xmlCtxtDumpNode()
1102 fprintf(ctxt->output, "DOCUMENT == NULL !\n"); in xmlCtxtDumpDocHead()
1142 fprintf(ctxt->output, "DOCUMENT\n"); in xmlCtxtDumpDocHead()
1146 fprintf(ctxt->output, "HTML DOCUMENT\n"); in xmlCtxtDumpDocHead()
1180 fprintf(ctxt->output, "name="); in xmlCtxtDumpDocumentHead()
1182 fprintf(ctxt->output, "\n"); in xmlCtxtDumpDocumentHead()
1185 fprintf(ctxt->output, "version="); in xmlCtxtDumpDocumentHead()
1187 fprintf(ctxt->output, "\n"); in xmlCtxtDumpDocumentHead()
1190 fprintf(ctxt->output, "encoding="); in xmlCtxtDumpDocumentHead()
1192 fprintf(ctxt->output, "\n"); in xmlCtxtDumpDocumentHead()
1195 fprintf(ctxt->output, "URL="); in xmlCtxtDumpDocumentHead()
1197 fprintf(ctxt->output, "\n"); in xmlCtxtDumpDocumentHead()
1200 fprintf(ctxt->output, "standalone=true\n"); in xmlCtxtDumpDocumentHead()
1218 fprintf(ctxt->output, "DOCUMENT == NULL !\n"); in xmlCtxtDumpDocument()
1239 fprintf(ctxt->output, "Entity is NULL"); in xmlCtxtDumpEntityCallback()
1243 fprintf(ctxt->output, "%s : ", (char *) cur->name); in xmlCtxtDumpEntityCallback()
1246 fprintf(ctxt->output, "INTERNAL GENERAL, "); in xmlCtxtDumpEntityCallback()
1249 fprintf(ctxt->output, "EXTERNAL PARSED, "); in xmlCtxtDumpEntityCallback()
1252 fprintf(ctxt->output, "EXTERNAL UNPARSED, "); in xmlCtxtDumpEntityCallback()
1255 fprintf(ctxt->output, "INTERNAL PARAMETER, "); in xmlCtxtDumpEntityCallback()
1258 fprintf(ctxt->output, "EXTERNAL PARAMETER, "); in xmlCtxtDumpEntityCallback()
1265 fprintf(ctxt->output, "ID \"%s\"", (char *) cur->ExternalID); in xmlCtxtDumpEntityCallback()
1267 fprintf(ctxt->output, "SYSTEM \"%s\"", (char *) cur->SystemID); in xmlCtxtDumpEntityCallback()
1269 fprintf(ctxt->output, "\n orig \"%s\"", (char *) cur->orig); in xmlCtxtDumpEntityCallback()
1271 fprintf(ctxt->output, "\n content \"%s\"", in xmlCtxtDumpEntityCallback()
1273 fprintf(ctxt->output, "\n"); in xmlCtxtDumpEntityCallback()
1294 fprintf(ctxt->output, "Entities in internal subset\n"); in xmlCtxtDumpEntities()
1297 fprintf(ctxt->output, "No entities in internal subset\n"); in xmlCtxtDumpEntities()
1303 fprintf(ctxt->output, "Entities in external subset\n"); in xmlCtxtDumpEntities()
1306 fprintf(ctxt->output, "No entities in external subset\n"); in xmlCtxtDumpEntities()
1321 fprintf(ctxt->output, "DTD is NULL\n"); in xmlCtxtDumpDTD()
1326 fprintf(ctxt->output, " DTD is empty\n"); in xmlCtxtDumpDTD()
1348 xmlDebugDumpString(FILE * output, const xmlChar * str) in xmlDebugDumpString() argument
1352 if (output == NULL) in xmlDebugDumpString()
1353 output = stdout; in xmlDebugDumpString()
1355 fprintf(output, "(NULL)"); in xmlDebugDumpString()
1362 fputc(' ', output); in xmlDebugDumpString()
1364 fprintf(output, "#%X", str[i]); in xmlDebugDumpString()
1366 fputc(str[i], output); in xmlDebugDumpString()
1367 fprintf(output, "..."); in xmlDebugDumpString()
1379 xmlDebugDumpAttr(FILE *output, xmlAttrPtr attr, int depth) { in xmlDebugDumpAttr() argument
1382 if (output == NULL) return; in xmlDebugDumpAttr()
1384 ctxt.output = output; in xmlDebugDumpAttr()
1399 xmlDebugDumpEntities(FILE * output, xmlDocPtr doc) in xmlDebugDumpEntities() argument
1403 if (output == NULL) return; in xmlDebugDumpEntities()
1405 ctxt.output = output; in xmlDebugDumpEntities()
1419 xmlDebugDumpAttrList(FILE * output, xmlAttrPtr attr, int depth) in xmlDebugDumpAttrList() argument
1423 if (output == NULL) return; in xmlDebugDumpAttrList()
1425 ctxt.output = output; in xmlDebugDumpAttrList()
1440 xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) in xmlDebugDumpOneNode() argument
1444 if (output == NULL) return; in xmlDebugDumpOneNode()
1446 ctxt.output = output; in xmlDebugDumpOneNode()
1461 xmlDebugDumpNode(FILE * output, xmlNodePtr node, int depth) in xmlDebugDumpNode() argument
1465 if (output == NULL) in xmlDebugDumpNode()
1466 output = stdout; in xmlDebugDumpNode()
1468 ctxt.output = output; in xmlDebugDumpNode()
1483 xmlDebugDumpNodeList(FILE * output, xmlNodePtr node, int depth) in xmlDebugDumpNodeList() argument
1487 if (output == NULL) in xmlDebugDumpNodeList()
1488 output = stdout; in xmlDebugDumpNodeList()
1490 ctxt.output = output; in xmlDebugDumpNodeList()
1504 xmlDebugDumpDocumentHead(FILE * output, xmlDocPtr doc) in xmlDebugDumpDocumentHead() argument
1508 if (output == NULL) in xmlDebugDumpDocumentHead()
1509 output = stdout; in xmlDebugDumpDocumentHead()
1512 ctxt.output = output; in xmlDebugDumpDocumentHead()
1525 xmlDebugDumpDocument(FILE * output, xmlDocPtr doc) in xmlDebugDumpDocument() argument
1529 if (output == NULL) in xmlDebugDumpDocument()
1530 output = stdout; in xmlDebugDumpDocument()
1533 ctxt.output = output; in xmlDebugDumpDocument()
1546 xmlDebugDumpDTD(FILE * output, xmlDtdPtr dtd) in xmlDebugDumpDTD() argument
1550 if (output == NULL) in xmlDebugDumpDTD()
1551 output = stdout; in xmlDebugDumpDTD()
1554 ctxt.output = output; in xmlDebugDumpDTD()
1576 xmlDebugCheckDocument(FILE * output, xmlDocPtr doc) in xmlDebugCheckDocument() argument
1580 if (output == NULL) in xmlDebugCheckDocument()
1581 output = stdout; in xmlDebugCheckDocument()
1583 ctxt.output = output; in xmlDebugCheckDocument()
1662 xmlLsOneNode(FILE *output, xmlNodePtr node) { in xmlLsOneNode() argument
1663 if (output == NULL) return; in xmlLsOneNode()
1665 fprintf(output, "NULL\n"); in xmlLsOneNode()
1670 fprintf(output, "-"); in xmlLsOneNode()
1673 fprintf(output, "a"); in xmlLsOneNode()
1676 fprintf(output, "t"); in xmlLsOneNode()
1679 fprintf(output, "C"); in xmlLsOneNode()
1682 fprintf(output, "e"); in xmlLsOneNode()
1685 fprintf(output, "E"); in xmlLsOneNode()
1688 fprintf(output, "p"); in xmlLsOneNode()
1691 fprintf(output, "c"); in xmlLsOneNode()
1694 fprintf(output, "d"); in xmlLsOneNode()
1697 fprintf(output, "h"); in xmlLsOneNode()
1700 fprintf(output, "T"); in xmlLsOneNode()
1703 fprintf(output, "F"); in xmlLsOneNode()
1706 fprintf(output, "N"); in xmlLsOneNode()
1709 fprintf(output, "n"); in xmlLsOneNode()
1712 fprintf(output, "?"); in xmlLsOneNode()
1716 fprintf(output, "a"); in xmlLsOneNode()
1718 fprintf(output, "-"); in xmlLsOneNode()
1720 fprintf(output, "n"); in xmlLsOneNode()
1722 fprintf(output, "-"); in xmlLsOneNode()
1725 fprintf(output, " %8d ", xmlLsCountNode(node)); in xmlLsOneNode()
1731 fprintf(output, "%s:", node->ns->prefix); in xmlLsOneNode()
1732 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1737 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1741 xmlDebugDumpString(output, node->content); in xmlLsOneNode()
1748 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1752 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1756 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1774 fprintf(output, "default -> %s", (char *)ns->href); in xmlLsOneNode()
1776 fprintf(output, "%s -> %s", (char *)ns->prefix, in xmlLsOneNode()
1782 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1784 fprintf(output, "\n"); in xmlLsOneNode()
1900 fp = ctxt->output; in xmlShellPrintNodeCtxt()
2013 fprintf(ctxt->output, "NULL\n"); in xmlShellList()
2020 xmlLsOneNode(ctxt->output, node); in xmlShellList()
2025 xmlLsOneNode(ctxt->output, node); in xmlShellList()
2029 xmlLsOneNode(ctxt->output, cur); in xmlShellList()
2056 fprintf(ctxt->output, "NULL\n"); in xmlShellBase()
2063 fprintf(ctxt->output, " No base found !!!\n"); in xmlShellBase()
2065 fprintf(ctxt->output, "%s\n", base); in xmlShellBase()
2128 fprintf(ctxt->output, "setns: prefix=[nsuri] required\n"); in xmlShellRegisterNamespace()
2143 …fprintf(ctxt->output,"Error: unable to register NS with prefix=\"%s\" and href=\"%s\"\n", prefix, … in xmlShellRegisterNamespace()
2218 fprintf(ctxt->output, "%s : ", xmlGetNodePath(node)); in xmlShellGrep()
2224 fprintf(ctxt->output, "%s : ", xmlGetNodePath(node->parent)); in xmlShellGrep()
2283 fprintf(ctxt->output, "NULL\n"); in xmlShellDir()
2288 xmlDebugDumpDocumentHead(ctxt->output, (xmlDocPtr) node); in xmlShellDir()
2290 xmlDebugDumpAttr(ctxt->output, (xmlAttrPtr) node, 0); in xmlShellDir()
2292 xmlDebugDumpOneNode(ctxt->output, node, 0); in xmlShellDir()
2320 fprintf(ctxt->output, "NULL\n"); in xmlShellSetContent()
2324 fprintf(ctxt->output, "NULL\n"); in xmlShellSetContent()
2337 fprintf(ctxt->output, "failed to parse content\n"); in xmlShellSetContent()
2418 fprintf(ctxt->output, "NULL\n"); in xmlShellCat()
2424 htmlDocDump(ctxt->output, (htmlDocPtr) node); in xmlShellCat()
2426 htmlNodeDumpFile(ctxt->output, ctxt->doc, node); in xmlShellCat()
2429 xmlDocDump(ctxt->output, (xmlDocPtr) node); in xmlShellCat()
2431 xmlElemDump(ctxt->output, ctxt->doc, node); in xmlShellCat()
2435 xmlDocDump(ctxt->output, (xmlDocPtr) node); in xmlShellCat()
2437 xmlElemDump(ctxt->output, ctxt->doc, node); in xmlShellCat()
2439 fprintf(ctxt->output, "\n"); in xmlShellCat()
2472 fprintf(ctxt->output, "HTML support not compiled in\n"); in xmlShellLoad()
2700 fprintf(ctxt->output, "/\n"); in xmlShellDu()
2703 fprintf(ctxt->output, " "); in xmlShellDu()
2705 fprintf(ctxt->output, "%s:", node->ns->prefix); in xmlShellDu()
2706 fprintf(ctxt->output, "%s\n", node->name); in xmlShellDu()
2809 FILE * output) in xmlShell() argument
2825 if (output == NULL) in xmlShell()
2826 output = stdout; in xmlShell()
2833 ctxt->output = output; in xmlShell()
2904 fprintf(ctxt->output, "\tbase display XML base of the node\n"); in xmlShell()
2905 fprintf(ctxt->output, "\tsetbase URI change the XML base of the node\n"); in xmlShell()
2906 fprintf(ctxt->output, "\tbye leave shell\n"); in xmlShell()
2907 fprintf(ctxt->output, "\tcat [node] display node or current node\n"); in xmlShell()
2908 fprintf(ctxt->output, "\tcd [path] change directory to path or to root\n"); in xmlShell()
2909 …fprintf(ctxt->output, "\tdir [path] dumps informations about the node (namespace, attributes, co… in xmlShell()
2910 …fprintf(ctxt->output, "\tdu [path] show the structure of the subtree under path or the current … in xmlShell()
2911 fprintf(ctxt->output, "\texit leave shell\n"); in xmlShell()
2912 fprintf(ctxt->output, "\thelp display this help\n"); in xmlShell()
2913 fprintf(ctxt->output, "\tfree display memory usage\n"); in xmlShell()
2914 fprintf(ctxt->output, "\tload [name] load a new document with name\n"); in xmlShell()
2915 fprintf(ctxt->output, "\tls [path] list contents of path or the current directory\n"); in xmlShell()
2916 …fprintf(ctxt->output, "\tset xml_fragment replace the current node content with the fragment parse… in xmlShell()
2918 …fprintf(ctxt->output, "\txpath expr evaluate the XPath expression in that context and print the … in xmlShell()
2919 …fprintf(ctxt->output, "\tsetns nsreg register a namespace to a prefix in the XPath evaluation con… in xmlShell()
2920 …fprintf(ctxt->output, "\t format for nsreg is: prefix=[nsuri] (i.e. prefix= unsets a p… in xmlShell()
2921 fprintf(ctxt->output, "\tsetrootns register all namespace found on the root element\n"); in xmlShell()
2922 fprintf(ctxt->output, "\t the default namespace if any uses 'defaultns' prefix\n"); in xmlShell()
2924 fprintf(ctxt->output, "\tpwd display current working directory\n"); in xmlShell()
2925 …fprintf(ctxt->output, "\twhereis display absolute path of [path] or current working directory… in xmlShell()
2926 fprintf(ctxt->output, "\tquit leave shell\n"); in xmlShell()
2928 fprintf(ctxt->output, "\tsave [name] save this document to name or the original name\n"); in xmlShell()
2929 fprintf(ctxt->output, "\twrite [name] write the current node to the filename\n"); in xmlShell()
2932 fprintf(ctxt->output, "\tvalidate check the document for errors\n"); in xmlShell()
2935 fprintf(ctxt->output, "\trelaxng rng validate the document against the Relax-NG schemas\n"); in xmlShell()
2937 fprintf(ctxt->output, "\tgrep string search for a string in the subtree\n"); in xmlShell()
2962 xmlMemShow(ctxt->output, 0); in xmlShell()
2967 xmlMemShow(ctxt->output, len); in xmlShell()
2973 fprintf(ctxt->output, "%s\n", dir); in xmlShell()
3072 xmlXPathDebugDumpObject(ctxt->output, list, 0); in xmlShell()
3170 fprintf(ctxt->output, "%s\n", dir); in xmlShell()
3195 fprintf(ctxt->output, "%s\n", dir); in xmlShell()
3355 fprintf(ctxt->output, " -------\n"); in xmlShell()