diff options
Diffstat (limited to 'ext/dom/document.c')
| -rw-r--r-- | ext/dom/document.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/ext/dom/document.c b/ext/dom/document.c index 3e4e298654..9e18d7fcba 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -687,7 +687,7 @@ int dom_document_config_read(dom_object *obj, zval *retval) /* }}} */ -/* {{{ proto DOMElement dom_document_create_element(string tagName [, string value]); +/* {{{ proto DOMElement dom_document_create_element(string tagName [, string value]) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-2141741547 Since: */ @@ -721,7 +721,7 @@ PHP_FUNCTION(dom_document_create_element) } /* }}} end dom_document_create_element */ -/* {{{ proto DOMDocumentFragment dom_document_create_document_fragment(); +/* {{{ proto DOMDocumentFragment dom_document_create_document_fragment() URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-35CB04B5 Since: */ @@ -748,7 +748,7 @@ PHP_FUNCTION(dom_document_create_document_fragment) } /* }}} end dom_document_create_document_fragment */ -/* {{{ proto DOMText dom_document_create_text_node(string data); +/* {{{ proto DOMText dom_document_create_text_node(string data) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1975348127 Since: */ @@ -777,7 +777,7 @@ PHP_FUNCTION(dom_document_create_text_node) } /* }}} end dom_document_create_text_node */ -/* {{{ proto DOMComment dom_document_create_comment(string data); +/* {{{ proto DOMComment dom_document_create_comment(string data) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1334481328 Since: */ @@ -806,7 +806,7 @@ PHP_FUNCTION(dom_document_create_comment) } /* }}} end dom_document_create_comment */ -/* {{{ proto DOMCdataSection dom_document_create_cdatasection(string data); +/* {{{ proto DOMCdataSection dom_document_create_cdatasection(string data) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D26C0AF8 Since: */ @@ -835,7 +835,7 @@ PHP_FUNCTION(dom_document_create_cdatasection) } /* }}} end dom_document_create_cdatasection */ -/* {{{ proto DOMProcessingInstruction dom_document_create_processing_instruction(string target, string data); +/* {{{ proto DOMProcessingInstruction dom_document_create_processing_instruction(string target, string data) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-135944439 Since: */ @@ -871,7 +871,7 @@ PHP_FUNCTION(dom_document_create_processing_instruction) } /* }}} end dom_document_create_processing_instruction */ -/* {{{ proto DOMAttr dom_document_create_attribute(string name); +/* {{{ proto DOMAttr dom_document_create_attribute(string name) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1084891198 Since: */ @@ -906,7 +906,7 @@ PHP_FUNCTION(dom_document_create_attribute) } /* }}} end dom_document_create_attribute */ -/* {{{ proto DOMEntityReference dom_document_create_entity_reference(string name); +/* {{{ proto DOMEntityReference dom_document_create_entity_reference(string name) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-392B75AE Since: */ @@ -940,7 +940,7 @@ PHP_FUNCTION(dom_document_create_entity_reference) } /* }}} end dom_document_create_entity_reference */ -/* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name(string tagname); +/* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name(string tagname) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C9094 Since: */ @@ -966,7 +966,7 @@ PHP_FUNCTION(dom_document_get_elements_by_tag_name) } /* }}} end dom_document_get_elements_by_tag_name */ -/* {{{ proto DOMNode dom_document_import_node(DOMNode importedNode, boolean deep); +/* {{{ proto DOMNode dom_document_import_node(DOMNode importedNode, boolean deep) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Core-Document-importNode Since: DOM Level 2 */ @@ -1021,7 +1021,7 @@ PHP_FUNCTION(dom_document_import_node) } /* }}} end dom_document_import_node */ -/* {{{ proto DOMElement dom_document_create_element_ns(string namespaceURI, string qualifiedName [,string value]); +/* {{{ proto DOMElement dom_document_create_element_ns(string namespaceURI, string qualifiedName [,string value]) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-DocCrElNS Since: DOM Level 2 */ @@ -1085,7 +1085,7 @@ PHP_FUNCTION(dom_document_create_element_ns) } /* }}} end dom_document_create_element_ns */ -/* {{{ proto DOMAttr dom_document_create_attribute_ns(string namespaceURI, string qualifiedName); +/* {{{ proto DOMAttr dom_document_create_attribute_ns(string namespaceURI, string qualifiedName) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-DocCrAttrNS Since: DOM Level 2 */ @@ -1151,7 +1151,7 @@ PHP_FUNCTION(dom_document_create_attribute_ns) } /* }}} end dom_document_create_attribute_ns */ -/* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name_ns(string namespaceURI, string localName); +/* {{{ proto DOMNodeList dom_document_get_elements_by_tag_name_ns(string namespaceURI, string localName) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getElBTNNS Since: DOM Level 2 */ @@ -1178,7 +1178,7 @@ PHP_FUNCTION(dom_document_get_elements_by_tag_name_ns) } /* }}} end dom_document_get_elements_by_tag_name_ns */ -/* {{{ proto DOMElement dom_document_get_element_by_id(string elementId); +/* {{{ proto DOMElement dom_document_get_element_by_id(string elementId) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getElBId Since: DOM Level 2 */ @@ -1209,7 +1209,7 @@ PHP_FUNCTION(dom_document_get_element_by_id) } /* }}} end dom_document_get_element_by_id */ -/* {{{ proto DOMNode dom_document_adopt_node(DOMNode source); +/* {{{ proto DOMNode dom_document_adopt_node(DOMNode source) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-adoptNode Since: DOM Level 3 */ @@ -1219,7 +1219,7 @@ PHP_FUNCTION(dom_document_adopt_node) } /* }}} end dom_document_adopt_node */ -/* {{{ proto void dom_document_normalize_document(); +/* {{{ proto void dom_document_normalize_document() URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-normalizeDocument Since: DOM Level 3 */ @@ -1239,7 +1239,7 @@ PHP_FUNCTION(dom_document_normalize_document) } /* }}} end dom_document_normalize_document */ -/* {{{ proto DOMNode dom_document_rename_node(node n, string namespaceURI, string qualifiedName); +/* {{{ proto DOMNode dom_document_rename_node(node n, string namespaceURI, string qualifiedName) URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-renameNode Since: DOM Level 3 */ @@ -1528,7 +1528,7 @@ static void dom_parse_document(INTERNAL_FUNCTION_PARAMETERS, int mode) { } /* }}} end dom_parser_document */ -/* {{{ proto DOMNode dom_document_load(string source [, int options]); +/* {{{ proto DOMNode dom_document_load(string source [, int options]) URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-load Since: DOM Level 3 */ @@ -1538,7 +1538,7 @@ PHP_METHOD(domdocument, load) } /* }}} end dom_document_load */ -/* {{{ proto DOMNode dom_document_loadxml(string source [, int options]); +/* {{{ proto DOMNode dom_document_loadxml(string source [, int options]) URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadXML Since: DOM Level 3 */ @@ -1548,7 +1548,7 @@ PHP_METHOD(domdocument, loadXML) } /* }}} end dom_document_loadxml */ -/* {{{ proto int dom_document_save(string file); +/* {{{ proto int dom_document_save(string file) Convenience method to save to file */ PHP_FUNCTION(dom_document_save) @@ -1592,7 +1592,7 @@ PHP_FUNCTION(dom_document_save) } /* }}} end dom_document_save */ -/* {{{ proto string dom_document_savexml([node n]); +/* {{{ proto string dom_document_savexml([node n]) URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-saveXML Since: DOM Level 3 */ @@ -1744,7 +1744,7 @@ PHP_FUNCTION(dom_document_xinclude) } /* }}} */ -/* {{{ proto boolean dom_document_validate(); +/* {{{ proto boolean dom_document_validate() Since: DOM extended */ PHP_FUNCTION(dom_document_validate) @@ -2062,7 +2062,7 @@ static void dom_load_html(INTERNAL_FUNCTION_PARAMETERS, int mode) /* {{{ */ } /* }}} */ -/* {{{ proto DOMNode dom_document_load_html_file(string source); +/* {{{ proto DOMNode dom_document_load_html_file(string source) Since: DOM extended */ PHP_METHOD(domdocument, loadHTMLFile) @@ -2071,7 +2071,7 @@ PHP_METHOD(domdocument, loadHTMLFile) } /* }}} end dom_document_load_html_file */ -/* {{{ proto DOMNode dom_document_load_html(string source); +/* {{{ proto DOMNode dom_document_load_html(string source) Since: DOM extended */ PHP_METHOD(domdocument, loadHTML) @@ -2080,7 +2080,7 @@ PHP_METHOD(domdocument, loadHTML) } /* }}} end dom_document_load_html */ -/* {{{ proto int dom_document_save_html_file(string file); +/* {{{ proto int dom_document_save_html_file(string file) Convenience method to save to file as html */ PHP_FUNCTION(dom_document_save_html_file) @@ -2119,7 +2119,7 @@ PHP_FUNCTION(dom_document_save_html_file) } /* }}} end dom_document_save_html_file */ -/* {{{ proto string dom_document_save_html(); +/* {{{ proto string dom_document_save_html() Convenience method to output as html */ PHP_FUNCTION(dom_document_save_html) @@ -2206,7 +2206,7 @@ PHP_FUNCTION(dom_document_save_html) #endif /* defined(LIBXML_HTML_ENABLED) */ -/* {{{ proto boolean DOMDocument::registerNodeClass(string baseclass, string extendedclass); +/* {{{ proto boolean DOMDocument::registerNodeClass(string baseclass, string extendedclass) Register extended class used to create base node type */ PHP_METHOD(domdocument, registerNodeClass) { |
