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()
1236 fprintf(ctxt->output, "Entity is NULL"); in xmlCtxtDumpEntityCallback()
1240 fprintf(ctxt->output, "%s : ", (char *) cur->name); in xmlCtxtDumpEntityCallback()
1243 fprintf(ctxt->output, "INTERNAL GENERAL, "); in xmlCtxtDumpEntityCallback()
1246 fprintf(ctxt->output, "EXTERNAL PARSED, "); in xmlCtxtDumpEntityCallback()
1249 fprintf(ctxt->output, "EXTERNAL UNPARSED, "); in xmlCtxtDumpEntityCallback()
1252 fprintf(ctxt->output, "INTERNAL PARAMETER, "); in xmlCtxtDumpEntityCallback()
1255 fprintf(ctxt->output, "EXTERNAL PARAMETER, "); in xmlCtxtDumpEntityCallback()
1262 fprintf(ctxt->output, "ID \"%s\"", (char *) cur->ExternalID); in xmlCtxtDumpEntityCallback()
1264 fprintf(ctxt->output, "SYSTEM \"%s\"", (char *) cur->SystemID); in xmlCtxtDumpEntityCallback()
1266 fprintf(ctxt->output, "\n orig \"%s\"", (char *) cur->orig); in xmlCtxtDumpEntityCallback()
1268 fprintf(ctxt->output, "\n content \"%s\"", in xmlCtxtDumpEntityCallback()
1270 fprintf(ctxt->output, "\n"); in xmlCtxtDumpEntityCallback()
1291 fprintf(ctxt->output, "Entities in internal subset\n"); in xmlCtxtDumpEntities()
1295 fprintf(ctxt->output, "No entities in internal subset\n"); in xmlCtxtDumpEntities()
1301 fprintf(ctxt->output, "Entities in external subset\n"); in xmlCtxtDumpEntities()
1305 fprintf(ctxt->output, "No entities in external subset\n"); in xmlCtxtDumpEntities()
1320 fprintf(ctxt->output, "DTD is NULL\n"); in xmlCtxtDumpDTD()
1325 fprintf(ctxt->output, " DTD is empty\n"); in xmlCtxtDumpDTD()
1347 xmlDebugDumpString(FILE * output, const xmlChar * str) in xmlDebugDumpString() argument
1351 if (output == NULL) in xmlDebugDumpString()
1352 output = stdout; in xmlDebugDumpString()
1354 fprintf(output, "(NULL)"); in xmlDebugDumpString()
1361 fputc(' ', output); in xmlDebugDumpString()
1363 fprintf(output, "#%X", str[i]); in xmlDebugDumpString()
1365 fputc(str[i], output); in xmlDebugDumpString()
1366 fprintf(output, "..."); in xmlDebugDumpString()
1378 xmlDebugDumpAttr(FILE *output, xmlAttrPtr attr, int depth) { in xmlDebugDumpAttr() argument
1381 if (output == NULL) return; in xmlDebugDumpAttr()
1383 ctxt.output = output; in xmlDebugDumpAttr()
1398 xmlDebugDumpEntities(FILE * output, xmlDocPtr doc) in xmlDebugDumpEntities() argument
1402 if (output == NULL) return; in xmlDebugDumpEntities()
1404 ctxt.output = output; in xmlDebugDumpEntities()
1418 xmlDebugDumpAttrList(FILE * output, xmlAttrPtr attr, int depth) in xmlDebugDumpAttrList() argument
1422 if (output == NULL) return; in xmlDebugDumpAttrList()
1424 ctxt.output = output; in xmlDebugDumpAttrList()
1439 xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) in xmlDebugDumpOneNode() argument
1443 if (output == NULL) return; in xmlDebugDumpOneNode()
1445 ctxt.output = output; in xmlDebugDumpOneNode()
1460 xmlDebugDumpNode(FILE * output, xmlNodePtr node, int depth) in xmlDebugDumpNode() argument
1464 if (output == NULL) in xmlDebugDumpNode()
1465 output = stdout; in xmlDebugDumpNode()
1467 ctxt.output = output; in xmlDebugDumpNode()
1482 xmlDebugDumpNodeList(FILE * output, xmlNodePtr node, int depth) in xmlDebugDumpNodeList() argument
1486 if (output == NULL) in xmlDebugDumpNodeList()
1487 output = stdout; in xmlDebugDumpNodeList()
1489 ctxt.output = output; in xmlDebugDumpNodeList()
1503 xmlDebugDumpDocumentHead(FILE * output, xmlDocPtr doc) in xmlDebugDumpDocumentHead() argument
1507 if (output == NULL) in xmlDebugDumpDocumentHead()
1508 output = stdout; in xmlDebugDumpDocumentHead()
1511 ctxt.output = output; in xmlDebugDumpDocumentHead()
1524 xmlDebugDumpDocument(FILE * output, xmlDocPtr doc) in xmlDebugDumpDocument() argument
1528 if (output == NULL) in xmlDebugDumpDocument()
1529 output = stdout; in xmlDebugDumpDocument()
1532 ctxt.output = output; in xmlDebugDumpDocument()
1545 xmlDebugDumpDTD(FILE * output, xmlDtdPtr dtd) in xmlDebugDumpDTD() argument
1549 if (output == NULL) in xmlDebugDumpDTD()
1550 output = stdout; in xmlDebugDumpDTD()
1553 ctxt.output = output; in xmlDebugDumpDTD()
1575 xmlDebugCheckDocument(FILE * output, xmlDocPtr doc) in xmlDebugCheckDocument() argument
1579 if (output == NULL) in xmlDebugCheckDocument()
1580 output = stdout; in xmlDebugCheckDocument()
1582 ctxt.output = output; in xmlDebugCheckDocument()
1661 xmlLsOneNode(FILE *output, xmlNodePtr node) { in xmlLsOneNode() argument
1662 if (output == NULL) return; in xmlLsOneNode()
1664 fprintf(output, "NULL\n"); in xmlLsOneNode()
1669 fprintf(output, "-"); in xmlLsOneNode()
1672 fprintf(output, "a"); in xmlLsOneNode()
1675 fprintf(output, "t"); in xmlLsOneNode()
1678 fprintf(output, "C"); in xmlLsOneNode()
1681 fprintf(output, "e"); in xmlLsOneNode()
1684 fprintf(output, "E"); in xmlLsOneNode()
1687 fprintf(output, "p"); in xmlLsOneNode()
1690 fprintf(output, "c"); in xmlLsOneNode()
1693 fprintf(output, "d"); in xmlLsOneNode()
1696 fprintf(output, "h"); in xmlLsOneNode()
1699 fprintf(output, "T"); in xmlLsOneNode()
1702 fprintf(output, "F"); in xmlLsOneNode()
1705 fprintf(output, "N"); in xmlLsOneNode()
1708 fprintf(output, "n"); in xmlLsOneNode()
1711 fprintf(output, "?"); in xmlLsOneNode()
1715 fprintf(output, "a"); in xmlLsOneNode()
1717 fprintf(output, "-"); in xmlLsOneNode()
1719 fprintf(output, "n"); in xmlLsOneNode()
1721 fprintf(output, "-"); in xmlLsOneNode()
1724 fprintf(output, " %8d ", xmlLsCountNode(node)); in xmlLsOneNode()
1730 fprintf(output, "%s:", node->ns->prefix); in xmlLsOneNode()
1731 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1736 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1740 xmlDebugDumpString(output, node->content); in xmlLsOneNode()
1747 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1751 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1755 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1773 fprintf(output, "default -> %s", (char *)ns->href); in xmlLsOneNode()
1775 fprintf(output, "%s -> %s", (char *)ns->prefix, in xmlLsOneNode()
1781 fprintf(output, "%s", (const char *) node->name); in xmlLsOneNode()
1783 fprintf(output, "\n"); in xmlLsOneNode()
1899 fp = ctxt->output; in xmlShellPrintNodeCtxt()
2012 fprintf(ctxt->output, "NULL\n"); in xmlShellList()
2019 xmlLsOneNode(ctxt->output, node); in xmlShellList()
2024 xmlLsOneNode(ctxt->output, node); in xmlShellList()
2028 xmlLsOneNode(ctxt->output, cur); in xmlShellList()
2055 fprintf(ctxt->output, "NULL\n"); in xmlShellBase()
2062 fprintf(ctxt->output, " No base found !!!\n"); in xmlShellBase()
2064 fprintf(ctxt->output, "%s\n", base); in xmlShellBase()
2127 fprintf(ctxt->output, "setns: prefix=[nsuri] required\n"); in xmlShellRegisterNamespace()
2142 …fprintf(ctxt->output,"Error: unable to register NS with prefix=\"%s\" and href=\"%s\"\n", prefix, … in xmlShellRegisterNamespace()
2217 fprintf(ctxt->output, "%s : ", xmlGetNodePath(node)); in xmlShellGrep()
2223 fprintf(ctxt->output, "%s : ", xmlGetNodePath(node->parent)); in xmlShellGrep()
2282 fprintf(ctxt->output, "NULL\n"); in xmlShellDir()
2287 xmlDebugDumpDocumentHead(ctxt->output, (xmlDocPtr) node); in xmlShellDir()
2289 xmlDebugDumpAttr(ctxt->output, (xmlAttrPtr) node, 0); in xmlShellDir()
2291 xmlDebugDumpOneNode(ctxt->output, node, 0); in xmlShellDir()
2319 fprintf(ctxt->output, "NULL\n"); in xmlShellSetContent()
2323 fprintf(ctxt->output, "NULL\n"); in xmlShellSetContent()
2336 fprintf(ctxt->output, "failed to parse content\n"); in xmlShellSetContent()
2417 fprintf(ctxt->output, "NULL\n"); in xmlShellCat()
2423 htmlDocDump(ctxt->output, (htmlDocPtr) node); in xmlShellCat()
2425 htmlNodeDumpFile(ctxt->output, ctxt->doc, node); in xmlShellCat()
2428 xmlDocDump(ctxt->output, (xmlDocPtr) node); in xmlShellCat()
2430 xmlElemDump(ctxt->output, ctxt->doc, node); in xmlShellCat()
2434 xmlDocDump(ctxt->output, (xmlDocPtr) node); in xmlShellCat()
2436 xmlElemDump(ctxt->output, ctxt->doc, node); in xmlShellCat()
2438 fprintf(ctxt->output, "\n"); in xmlShellCat()
2471 fprintf(ctxt->output, "HTML support not compiled in\n"); in xmlShellLoad()
2699 fprintf(ctxt->output, "/\n"); in xmlShellDu()
2702 fprintf(ctxt->output, " "); in xmlShellDu()
2704 fprintf(ctxt->output, "%s:", node->ns->prefix); in xmlShellDu()
2705 fprintf(ctxt->output, "%s\n", node->name); in xmlShellDu()
2808 FILE * output) in xmlShell() argument
2824 if (output == NULL) in xmlShell()
2825 output = stdout; in xmlShell()
2832 ctxt->output = output; in xmlShell()
2903 fprintf(ctxt->output, "\tbase display XML base of the node\n"); in xmlShell()
2904 fprintf(ctxt->output, "\tsetbase URI change the XML base of the node\n"); in xmlShell()
2905 fprintf(ctxt->output, "\tbye leave shell\n"); in xmlShell()
2906 fprintf(ctxt->output, "\tcat [node] display node or current node\n"); in xmlShell()
2907 fprintf(ctxt->output, "\tcd [path] change directory to path or to root\n"); in xmlShell()
2908 …fprintf(ctxt->output, "\tdir [path] dumps informations about the node (namespace, attributes, co… in xmlShell()
2909 …fprintf(ctxt->output, "\tdu [path] show the structure of the subtree under path or the current … in xmlShell()
2910 fprintf(ctxt->output, "\texit leave shell\n"); in xmlShell()
2911 fprintf(ctxt->output, "\thelp display this help\n"); in xmlShell()
2912 fprintf(ctxt->output, "\tfree display memory usage\n"); in xmlShell()
2913 fprintf(ctxt->output, "\tload [name] load a new document with name\n"); in xmlShell()
2914 fprintf(ctxt->output, "\tls [path] list contents of path or the current directory\n"); in xmlShell()
2915 …fprintf(ctxt->output, "\tset xml_fragment replace the current node content with the fragment parse… in xmlShell()
2917 …fprintf(ctxt->output, "\txpath expr evaluate the XPath expression in that context and print the … in xmlShell()
2918 …fprintf(ctxt->output, "\tsetns nsreg register a namespace to a prefix in the XPath evaluation con… in xmlShell()
2919 …fprintf(ctxt->output, "\t format for nsreg is: prefix=[nsuri] (i.e. prefix= unsets a p… in xmlShell()
2920 fprintf(ctxt->output, "\tsetrootns register all namespace found on the root element\n"); in xmlShell()
2921 fprintf(ctxt->output, "\t the default namespace if any uses 'defaultns' prefix\n"); in xmlShell()
2923 fprintf(ctxt->output, "\tpwd display current working directory\n"); in xmlShell()
2924 …fprintf(ctxt->output, "\twhereis display absolute path of [path] or current working directory… in xmlShell()
2925 fprintf(ctxt->output, "\tquit leave shell\n"); in xmlShell()
2927 fprintf(ctxt->output, "\tsave [name] save this document to name or the original name\n"); in xmlShell()
2928 fprintf(ctxt->output, "\twrite [name] write the current node to the filename\n"); in xmlShell()
2931 fprintf(ctxt->output, "\tvalidate check the document for errors\n"); in xmlShell()
2934 fprintf(ctxt->output, "\trelaxng rng validate the document agaisnt the Relax-NG schemas\n"); in xmlShell()
2936 fprintf(ctxt->output, "\tgrep string search for a string in the subtree\n"); in xmlShell()
2961 xmlMemShow(ctxt->output, 0); in xmlShell()
2966 xmlMemShow(ctxt->output, len); in xmlShell()
2972 fprintf(ctxt->output, "%s\n", dir); in xmlShell()
3071 xmlXPathDebugDumpObject(ctxt->output, list, 0); in xmlShell()
3169 fprintf(ctxt->output, "%s\n", dir); in xmlShell()
3194 fprintf(ctxt->output, "%s\n", dir); in xmlShell()
3354 fprintf(ctxt->output, " -------\n"); in xmlShell()