rrichards Thu Nov 18 14:55:01 2004 EDT
Modified files: (Branch: PHP_5_0)
/php-src/ext/dom attr.c characterdata.c document.c documenttype.c
domerror.c domimplementationlist.c domlocator.c
domstringlist.c element.c entity.c namednodemap.c
namelist.c node.c nodelist.c notation.c
processinginstruction.c text.c typeinfo.c
userdatahandler.c xpath.c
Log:
MFH: prototype fixes (Jakub Vr�na)
http://cvs.php.net/diff.php/php-src/ext/dom/attr.c?r1=1.15&r2=1.15.2.1&ty=u
Index: php-src/ext/dom/attr.c
diff -u php-src/ext/dom/attr.c:1.15 php-src/ext/dom/attr.c:1.15.2.1
--- php-src/ext/dom/attr.c:1.15 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/attr.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: attr.c,v 1.15 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: attr.c,v 1.15.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -88,7 +88,7 @@
/* }}} end DOMAttr::__construct */
-/* {{{ proto name string
+/* {{{ name string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-1112119403
Since:
@@ -114,7 +114,7 @@
-/* {{{ proto specified boolean
+/* {{{ specified boolean
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-862529273
Since:
@@ -131,7 +131,7 @@
-/* {{{ proto value string
+/* {{{ value string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-221662474
Since:
@@ -200,7 +200,7 @@
-/* {{{ proto ownerElement DOMElement
+/* {{{ ownerElement DOMElement
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Attr-ownerElement
Since: DOM Level 2
@@ -236,7 +236,7 @@
-/* {{{ proto schemaTypeInfo DOMTypeInfo
+/* {{{ schemaTypeInfo DOMTypeInfo
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Attr-schemaTypeInfo
Since: DOM Level 3
http://cvs.php.net/diff.php/php-src/ext/dom/characterdata.c?r1=1.13&r2=1.13.2.1&ty=u
Index: php-src/ext/dom/characterdata.c
diff -u php-src/ext/dom/characterdata.c:1.13
php-src/ext/dom/characterdata.c:1.13.2.1
--- php-src/ext/dom/characterdata.c:1.13 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/characterdata.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: characterdata.c,v 1.13 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: characterdata.c,v 1.13.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -44,7 +44,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto data string
+/* {{{ data string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-72AB8359
Since:
@@ -105,7 +105,7 @@
/* }}} */
-/* {{{ proto length long
+/* {{{ length long
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-7D61178C
Since:
@@ -140,7 +140,7 @@
/* }}} */
-/* {{{ proto string dom_characterdata_substring_data(long offset, long count);
+/* {{{ proto string dom_characterdata_substring_data(int offset, int count);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6531BCCF
Since:
*/
@@ -215,7 +215,7 @@
/* }}} end dom_characterdata_append_data */
-/* {{{ proto void dom_characterdata_insert_data(long offset, string arg);
+/* {{{ proto void dom_characterdata_insert_data(int offset, string arg);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3EDB695F
Since:
*/
@@ -264,7 +264,7 @@
/* }}} end dom_characterdata_insert_data */
-/* {{{ proto void dom_characterdata_delete_data(long offset, long count);
+/* {{{ proto void dom_characterdata_delete_data(int offset, int count);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-7C603781
Since:
*/
@@ -320,7 +320,7 @@
/* }}} end dom_characterdata_delete_data */
-/* {{{ proto void dom_characterdata_replace_data(long offset, long count,
string arg);
+/* {{{ proto void dom_characterdata_replace_data(int offset, int count, string
arg);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-E5CBA7FB
Since:
*/
http://cvs.php.net/diff.php/php-src/ext/dom/document.c?r1=1.55.2.2&r2=1.55.2.3&ty=u
Index: php-src/ext/dom/document.c
diff -u php-src/ext/dom/document.c:1.55.2.2 php-src/ext/dom/document.c:1.55.2.3
--- php-src/ext/dom/document.c:1.55.2.2 Mon Aug 30 11:09:07 2004
+++ php-src/ext/dom/document.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: document.c,v 1.55.2.2 2004/08/30 15:09:07 rrichards Exp $ */
+/* $Id: document.c,v 1.55.2.3 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -88,7 +88,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto docType DOMDocumentType
+/* {{{ docType DOMDocumentType
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-B63ED1A31
Since:
@@ -124,7 +124,7 @@
-/* {{{ proto implementation DOMImplementation
+/* {{{ implementation DOMImplementation
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1B793EBA
Since:
@@ -140,7 +140,7 @@
-/* {{{ proto documentElement DOMElement
+/* {{{ documentElement DOMElement
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-87CD092
Since:
@@ -174,7 +174,7 @@
/* }}} */
-/* {{{ proto actualEncoding string
+/* {{{ actualEncoding string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-actualEncoding
Since: DOM Level 3
@@ -195,7 +195,7 @@
/* }}} */
-/* {{{ proto encoding string
+/* {{{ encoding string
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-encoding
Since: DOM Level 3
*/
@@ -268,7 +268,7 @@
-/* {{{ proto standalone boolean
+/* {{{ standalone boolean
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-standalone
Since: DOM Level 3
@@ -334,7 +334,7 @@
-/* {{{ proto version string
+/* {{{ version string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-version
Since: DOM Level 3
@@ -399,7 +399,7 @@
/* }}} */
-/* {{{ proto strictErrorChecking boolean
+/* {{{ strictErrorChecking boolean
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-strictErrorChecking
Since: DOM Level 3
@@ -444,7 +444,7 @@
/* }}} */
-/* {{{ proto formatOutput boolean
+/* {{{ formatOutput boolean
readonly=no
*/
int dom_document_format_output_read(dom_object *obj, zval **retval TSRMLS_DC)
@@ -486,7 +486,7 @@
}
/* }}} */
-/* {{{ proto validateOnParse boolean
+/* {{{ validateOnParse boolean
readonly=no
*/
int dom_document_validate_on_parse_read(dom_object *obj, zval **retval
TSRMLS_DC)
@@ -529,7 +529,7 @@
/* }}} */
-/* {{{ proto resolveExternals boolean
+/* {{{ resolveExternals boolean
readonly=no
*/
int dom_document_resolve_externals_read(dom_object *obj, zval **retval
TSRMLS_DC)
@@ -572,7 +572,7 @@
/* }}} */
-/* {{{ proto preserveWhiteSpace boolean
+/* {{{ preserveWhiteSpace boolean
readonly=no
*/
int dom_document_preserve_whitespace_read(dom_object *obj, zval **retval
TSRMLS_DC)
@@ -615,7 +615,7 @@
/* }}} */
-/* {{{ proto substituteEntities boolean
+/* {{{ substituteEntities boolean
readonly=no
*/
int dom_document_substitue_entities_read(dom_object *obj, zval **retval
TSRMLS_DC)
@@ -658,7 +658,7 @@
/* }}} */
-/* {{{ proto documentURI string
+/* {{{ documentURI string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-documentURI
Since: DOM Level 3
@@ -724,7 +724,7 @@
-/* {{{ proto config DOMConfiguration
+/* {{{ config DOMConfiguration
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-config
Since: DOM Level 3
@@ -1544,7 +1544,7 @@
}
/* }}} end dom_parser_document */
-/* {{{ proto boolean|DOMNode dom_document_load(string source);
+/* {{{ proto DOMNode dom_document_load(string source);
URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-load
Since: DOM Level 3
*/
@@ -1554,7 +1554,7 @@
}
/* }}} end dom_document_load */
-/* {{{ proto boolean|DOMNode dom_document_loadxml(string source);
+/* {{{ proto DOMNode dom_document_loadxml(string source);
URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadXML
Since: DOM Level 3
*/
@@ -1564,7 +1564,7 @@
}
/* }}} end dom_document_loadxml */
-/* {{{ proto long dom_document_save(string file);
+/* {{{ proto int dom_document_save(string file);
Convenience method to save to file
*/
PHP_FUNCTION(dom_document_save)
@@ -2022,7 +2022,7 @@
}
}
-/* {{{ proto boolean|DOMNode dom_document_load_html_file(string source);
+/* {{{ proto DOMNode dom_document_load_html_file(string source);
Since: DOM extended
*/
PHP_METHOD(domdocument, loadHTMLFile)
@@ -2031,7 +2031,7 @@
}
/* }}} end dom_document_load_html_file */
-/* {{{ proto boolean|DOMNode dom_document_load_html(string source);
+/* {{{ proto DOMNode dom_document_load_html(string source);
Since: DOM extended
*/
PHP_METHOD(domdocument, loadHTML)
@@ -2040,7 +2040,7 @@
}
/* }}} end dom_document_load_html */
-/* {{{ proto long 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)
http://cvs.php.net/diff.php/php-src/ext/dom/documenttype.c?r1=1.12.2.1&r2=1.12.2.2&ty=u
Index: php-src/ext/dom/documenttype.c
diff -u php-src/ext/dom/documenttype.c:1.12.2.1
php-src/ext/dom/documenttype.c:1.12.2.2
--- php-src/ext/dom/documenttype.c:1.12.2.1 Mon Aug 30 11:09:07 2004
+++ php-src/ext/dom/documenttype.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: documenttype.c,v 1.12.2.1 2004/08/30 15:09:07 rrichards Exp $ */
+/* $Id: documenttype.c,v 1.12.2.2 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -38,7 +38,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto name string
+/* {{{ name string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1844763134
Since:
@@ -64,7 +64,7 @@
-/* {{{ proto entities DOMNamedNodeMap
+/* {{{ entities DOMNamedNodeMap
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1788794630
Since:
@@ -97,7 +97,7 @@
-/* {{{ proto notations DOMNamedNodeMap
+/* {{{ notations DOMNamedNodeMap
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D46829EF
Since:
@@ -130,7 +130,7 @@
-/* {{{ proto publicId string
+/* {{{ publicId string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-Core-DocType-publicId
Since: DOM Level 2
@@ -160,7 +160,7 @@
-/* {{{ proto systemId string
+/* {{{ systemId string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-Core-DocType-systemId
Since: DOM Level 2
@@ -189,7 +189,7 @@
-/* {{{ proto internalSubset string
+/* {{{ internalSubset string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-Core-DocType-internalSubset
Since: DOM Level 2
http://cvs.php.net/diff.php/php-src/ext/dom/domerror.c?r1=1.4&r2=1.4.2.1&ty=u
Index: php-src/ext/dom/domerror.c
diff -u php-src/ext/dom/domerror.c:1.4 php-src/ext/dom/domerror.c:1.4.2.1
--- php-src/ext/dom/domerror.c:1.4 Thu Jan 8 03:15:16 2004
+++ php-src/ext/dom/domerror.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: domerror.c,v 1.4 2004/01/08 08:15:16 andi Exp $ */
+/* $Id: domerror.c,v 1.4.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -41,7 +41,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto severity unsigned short
+/* {{{ severity unsigned short
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ERROR-DOMError-severity
Since:
@@ -57,7 +57,7 @@
-/* {{{ proto message string
+/* {{{ message string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ERROR-DOMError-message
Since:
@@ -73,7 +73,7 @@
-/* {{{ proto type string
+/* {{{ type string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ERROR-DOMError-type
Since:
@@ -89,7 +89,7 @@
-/* {{{ proto relatedException object
+/* {{{ relatedException object
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ERROR-DOMError-relatedException
Since:
@@ -105,7 +105,7 @@
-/* {{{ proto relatedData domobject
+/* {{{ relatedData domobject
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ERROR-DOMError-relatedData
Since:
@@ -121,7 +121,7 @@
-/* {{{ proto location domlocator
+/* {{{ location domlocator
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ERROR-DOMError-location
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/domimplementationlist.c?r1=1.4&r2=1.4.2.1&ty=u
Index: php-src/ext/dom/domimplementationlist.c
diff -u php-src/ext/dom/domimplementationlist.c:1.4
php-src/ext/dom/domimplementationlist.c:1.4.2.1
--- php-src/ext/dom/domimplementationlist.c:1.4 Thu Jan 8 03:15:16 2004
+++ php-src/ext/dom/domimplementationlist.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: domimplementationlist.c,v 1.4 2004/01/08 08:15:16 andi Exp $ */
+/* $Id: domimplementationlist.c,v 1.4.2.1 2004/11/18 19:55:00 rrichards Exp $
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -42,7 +42,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto length unsigned long
+/* {{{ length unsigned long
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementationList-length
Since:
@@ -59,7 +59,7 @@
-/* {{{ proto domdomimplementation dom_domimplementationlist_item(unsigned long
index);
+/* {{{ proto domdomimplementation dom_domimplementationlist_item(int index);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementationList-item
Since:
*/
http://cvs.php.net/diff.php/php-src/ext/dom/domlocator.c?r1=1.4&r2=1.4.2.1&ty=u
Index: php-src/ext/dom/domlocator.c
diff -u php-src/ext/dom/domlocator.c:1.4 php-src/ext/dom/domlocator.c:1.4.2.1
--- php-src/ext/dom/domlocator.c:1.4 Thu Jan 8 03:15:16 2004
+++ php-src/ext/dom/domlocator.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: domlocator.c,v 1.4 2004/01/08 08:15:16 andi Exp $ */
+/* $Id: domlocator.c,v 1.4.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -41,7 +41,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto line_number long
+/* {{{ line_number long
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMLocator-line-number
Since:
@@ -57,7 +57,7 @@
-/* {{{ proto column_number long
+/* {{{ column_number long
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMLocator-column-number
Since:
@@ -73,7 +73,7 @@
-/* {{{ proto offset long
+/* {{{ offset long
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMLocator-offset
Since:
@@ -89,7 +89,7 @@
-/* {{{ proto related_node node
+/* {{{ related_node node
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMLocator-node
Since:
@@ -105,7 +105,7 @@
-/* {{{ proto uri string
+/* {{{ uri string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMLocator-uri
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/domstringlist.c?r1=1.4&r2=1.4.2.1&ty=u
Index: php-src/ext/dom/domstringlist.c
diff -u php-src/ext/dom/domstringlist.c:1.4
php-src/ext/dom/domstringlist.c:1.4.2.1
--- php-src/ext/dom/domstringlist.c:1.4 Thu Jan 8 03:15:16 2004
+++ php-src/ext/dom/domstringlist.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: domstringlist.c,v 1.4 2004/01/08 08:15:16 andi Exp $ */
+/* $Id: domstringlist.c,v 1.4.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -42,7 +42,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto length unsigned long
+/* {{{ length unsigned long
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMStringList-length
Since:
@@ -59,7 +59,7 @@
-/* {{{ proto domstring dom_domstringlist_item(unsigned long index);
+/* {{{ proto domstring dom_domstringlist_item(int index);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMStringList-item
Since:
*/
http://cvs.php.net/diff.php/php-src/ext/dom/element.c?r1=1.30.2.1&r2=1.30.2.2&ty=u
Index: php-src/ext/dom/element.c
diff -u php-src/ext/dom/element.c:1.30.2.1 php-src/ext/dom/element.c:1.30.2.2
--- php-src/ext/dom/element.c:1.30.2.1 Mon Aug 30 11:09:07 2004
+++ php-src/ext/dom/element.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: element.c,v 1.30.2.1 2004/08/30 15:09:07 rrichards Exp $ */
+/* $Id: element.c,v 1.30.2.2 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -137,7 +137,7 @@
}
/* }}} end DOMElement::__construct */
-/* {{{ proto tagName string
+/* {{{ tagName string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-104682815
Since:
@@ -174,7 +174,7 @@
-/* {{{ proto schemaTypeInfo typeinfo
+/* {{{ schemaTypeInfo typeinfo
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Element-schemaTypeInfo
Since: DOM Level 3
http://cvs.php.net/diff.php/php-src/ext/dom/entity.c?r1=1.7&r2=1.7.2.1&ty=u
Index: php-src/ext/dom/entity.c
diff -u php-src/ext/dom/entity.c:1.7 php-src/ext/dom/entity.c:1.7.2.1
--- php-src/ext/dom/entity.c:1.7 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/entity.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: entity.c,v 1.7 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: entity.c,v 1.7.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -39,7 +39,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto publicId string
+/* {{{ publicId string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-D7303025
Since:
@@ -69,7 +69,7 @@
-/* {{{ proto systemId string
+/* {{{ systemId string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-D7C29F3E
Since:
@@ -99,7 +99,7 @@
-/* {{{ proto notationName string
+/* {{{ notationName string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-6ABAEB38
Since:
@@ -132,7 +132,7 @@
-/* {{{ proto actualEncoding string
+/* {{{ actualEncoding string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Entity3-actualEncoding
Since: DOM Level 3
@@ -153,7 +153,7 @@
-/* {{{ proto encoding string
+/* {{{ encoding string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Entity3-encoding
Since: DOM Level 3
@@ -174,7 +174,7 @@
-/* {{{ proto version string
+/* {{{ version string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Entity3-version
Since: DOM Level 3
http://cvs.php.net/diff.php/php-src/ext/dom/namednodemap.c?r1=1.12&r2=1.12.2.1&ty=u
Index: php-src/ext/dom/namednodemap.c
diff -u php-src/ext/dom/namednodemap.c:1.12
php-src/ext/dom/namednodemap.c:1.12.2.1
--- php-src/ext/dom/namednodemap.c:1.12 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/namednodemap.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: namednodemap.c,v 1.12 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: namednodemap.c,v 1.12.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -46,7 +46,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto length int
+/* {{{ length int
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6D0FB19E
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/namelist.c?r1=1.5&r2=1.5.2.1&ty=u
Index: php-src/ext/dom/namelist.c
diff -u php-src/ext/dom/namelist.c:1.5 php-src/ext/dom/namelist.c:1.5.2.1
--- php-src/ext/dom/namelist.c:1.5 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/namelist.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: namelist.c,v 1.5 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: namelist.c,v 1.5.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -41,7 +41,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto length int
+/* {{{ length int
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-length
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/node.c?r1=1.29.2.1&r2=1.29.2.2&ty=u
Index: php-src/ext/dom/node.c
diff -u php-src/ext/dom/node.c:1.29.2.1 php-src/ext/dom/node.c:1.29.2.2
--- php-src/ext/dom/node.c:1.29.2.1 Mon Aug 30 11:09:07 2004
+++ php-src/ext/dom/node.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: node.c,v 1.29.2.1 2004/08/30 15:09:07 rrichards Exp $ */
+/* $Id: node.c,v 1.29.2.2 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -72,7 +72,7 @@
}
}
-/* {{{ proto nodeName string
+/* {{{ nodeName string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-F68D095
Since:
@@ -164,7 +164,7 @@
-/* {{{ proto nodeValue string
+/* {{{ nodeValue string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-F68D080
Since:
@@ -260,7 +260,7 @@
-/* {{{ proto nodeType int
+/* {{{ nodeType int
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-111237558
Since:
@@ -292,7 +292,7 @@
-/* {{{ proto parentNode DomNode
+/* {{{ parentNode DomNode
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1060184317
Since:
@@ -327,7 +327,7 @@
-/* {{{ proto childNodes DomNodeList
+/* {{{ childNodes DomNodeList
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1451460987
Since:
@@ -361,7 +361,7 @@
-/* {{{ proto firstChild DomNode
+/* {{{ firstChild DomNode
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-169727388
Since:
@@ -399,7 +399,7 @@
-/* {{{ proto lastChild DomNode
+/* {{{ lastChild DomNode
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-61AD09FB
Since:
@@ -437,7 +437,7 @@
-/* {{{ proto previousSibling DomNode
+/* {{{ previousSibling DomNode
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-640FB3C8
Since:
@@ -472,7 +472,7 @@
-/* {{{ proto nextSibling DomNode
+/* {{{ nextSibling DomNode
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6AC54C2F
Since:
@@ -507,7 +507,7 @@
-/* {{{ proto attributes DomNamedNodeMap
+/* {{{ attributes DomNamedNodeMap
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-84CF096
Since:
@@ -541,7 +541,7 @@
-/* {{{ proto ownerDocument DomDocument
+/* {{{ ownerDocument DomDocument
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-node-ownerDoc
Since:
@@ -583,7 +583,7 @@
-/* {{{ proto namespaceUri string
+/* {{{ namespaceUri string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-NodeNSname
Since: DOM Level 2
@@ -628,7 +628,7 @@
-/* {{{ proto prefix string
+/* {{{ prefix string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-NodeNSPrefix
Since: DOM Level 2
@@ -752,7 +752,7 @@
-/* {{{ proto localName string
+/* {{{ localName string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-NodeNSLocalN
Since: DOM Level 2
@@ -783,7 +783,7 @@
-/* {{{ proto baseURI string
+/* {{{ baseURI string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-baseURI
Since: DOM Level 3
@@ -817,7 +817,7 @@
-/* {{{ proto textContent string
+/* {{{ textContent string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-textContent
Since: DOM Level 3
http://cvs.php.net/diff.php/php-src/ext/dom/nodelist.c?r1=1.14&r2=1.14.2.1&ty=u
Index: php-src/ext/dom/nodelist.c
diff -u php-src/ext/dom/nodelist.c:1.14 php-src/ext/dom/nodelist.c:1.14.2.1
--- php-src/ext/dom/nodelist.c:1.14 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/nodelist.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: nodelist.c,v 1.14 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: nodelist.c,v 1.14.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -40,7 +40,7 @@
{NULL, NULL, NULL}
};
-/* {{{ proto length int
+/* {{{ length int
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-203510337
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/notation.c?r1=1.7&r2=1.7.2.1&ty=u
Index: php-src/ext/dom/notation.c
diff -u php-src/ext/dom/notation.c:1.7 php-src/ext/dom/notation.c:1.7.2.1
--- php-src/ext/dom/notation.c:1.7 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/notation.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: notation.c,v 1.7 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: notation.c,v 1.7.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -41,7 +41,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto publicId string
+/* {{{ publicId string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-54F2B4D0
Since:
@@ -71,7 +71,7 @@
-/* {{{ proto systemId string
+/* {{{ systemId string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-E8AAB1D0
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/processinginstruction.c?r1=1.15&r2=1.15.2.1&ty=u
Index: php-src/ext/dom/processinginstruction.c
diff -u php-src/ext/dom/processinginstruction.c:1.15
php-src/ext/dom/processinginstruction.c:1.15.2.1
--- php-src/ext/dom/processinginstruction.c:1.15 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/processinginstruction.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: processinginstruction.c,v 1.15 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: processinginstruction.c,v 1.15.2.1 2004/11/18 19:55:00 rrichards Exp $
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -82,7 +82,7 @@
}
/* }}} end DOMProcessingInstruction::__construct */
-/* {{{ proto target string
+/* {{{ target string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-1478689192
Since:
@@ -108,7 +108,7 @@
-/* {{{ proto data string
+/* {{{ data string
readonly=no
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-837822393
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/text.c?r1=1.20&r2=1.20.2.1&ty=u
Index: php-src/ext/dom/text.c
diff -u php-src/ext/dom/text.c:1.20 php-src/ext/dom/text.c:1.20.2.1
--- php-src/ext/dom/text.c:1.20 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/text.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: text.c,v 1.20 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: text.c,v 1.20.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -78,7 +78,7 @@
}
/* }}} end DOMText::__construct */
-/* {{{ proto wholeText string
+/* {{{ wholeText string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-wholeText
Since: DOM Level 3
http://cvs.php.net/diff.php/php-src/ext/dom/typeinfo.c?r1=1.4&r2=1.4.2.1&ty=u
Index: php-src/ext/dom/typeinfo.c
diff -u php-src/ext/dom/typeinfo.c:1.4 php-src/ext/dom/typeinfo.c:1.4.2.1
--- php-src/ext/dom/typeinfo.c:1.4 Thu Jan 8 03:15:17 2004
+++ php-src/ext/dom/typeinfo.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: typeinfo.c,v 1.4 2004/01/08 08:15:17 andi Exp $ */
+/* $Id: typeinfo.c,v 1.4.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -41,7 +41,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto type_name string
+/* {{{ type_name string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#TypeInfo-typeName
Since:
@@ -57,7 +57,7 @@
-/* {{{ proto type_namespace string
+/* {{{ type_namespace string
readonly=yes
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#TypeInfo-typeNamespace
Since:
http://cvs.php.net/diff.php/php-src/ext/dom/userdatahandler.c?r1=1.4&r2=1.4.2.1&ty=u
Index: php-src/ext/dom/userdatahandler.c
diff -u php-src/ext/dom/userdatahandler.c:1.4
php-src/ext/dom/userdatahandler.c:1.4.2.1
--- php-src/ext/dom/userdatahandler.c:1.4 Thu Jan 8 03:15:17 2004
+++ php-src/ext/dom/userdatahandler.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: userdatahandler.c,v 1.4 2004/01/08 08:15:17 andi Exp $ */
+/* $Id: userdatahandler.c,v 1.4.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -43,7 +43,7 @@
/* {{{ attribute protos, not implemented yet */
-/* {{{ proto dom_void dom_userdatahandler_handle(unsigned short operation,
string key, domobject data, node src, node dst);
+/* {{{ proto dom_void dom_userdatahandler_handle(short operation, string key,
domobject data, node src, node dst);
URL:
http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-handleUserDataEvent
Since:
*/
http://cvs.php.net/diff.php/php-src/ext/dom/xpath.c?r1=1.22&r2=1.22.2.1&ty=u
Index: php-src/ext/dom/xpath.c
diff -u php-src/ext/dom/xpath.c:1.22 php-src/ext/dom/xpath.c:1.22.2.1
--- php-src/ext/dom/xpath.c:1.22 Mon May 31 08:50:28 2004
+++ php-src/ext/dom/xpath.c Thu Nov 18 14:55:00 2004
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: xpath.c,v 1.22 2004/05/31 12:50:28 rrichards Exp $ */
+/* $Id: xpath.c,v 1.22.2.1 2004/11/18 19:55:00 rrichards Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -78,7 +78,7 @@
}
/* }}} end DOMXPath::__construct */
-/* {{{ proto document DOMDocument*/
+/* {{{ document DOMDocument*/
int dom_xpath_document_read(dom_object *obj, zval **retval TSRMLS_DC)
{
xmlDoc *docp = NULL;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php