diff options
author | Rob Richards <rrichards@php.net> | 2004-10-07 11:40:20 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2004-10-07 11:40:20 +0000 |
commit | 7dced12c320a09731f09e803c1ab1faf53e4803c (patch) | |
tree | 88ecb1c9dd8b9369756ec6e3b69e0f5d3dc79b75 /ext/dom/document.c | |
parent | b0ffa2497b97be382fe1418a0f1da920fe10b8b5 (diff) | |
download | php-git-7dced12c320a09731f09e803c1ab1faf53e4803c.tar.gz |
add DOMDocument xmlEncoding, xmlStandalone, xmlVersion (spec name changes)
add DOMText isElementContentWhitespace (spec name change)
- old props/method kept for BC.
- spec names changed when Level 3 went from Draft to Recommendation
nuke some unused code
Diffstat (limited to 'ext/dom/document.c')
-rw-r--r-- | ext/dom/document.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/dom/document.c b/ext/dom/document.c index a22fdbc6d9..fa64df1683 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -173,28 +173,6 @@ int dom_document_document_element_read(dom_object *obj, zval **retval TSRMLS_DC) /* }}} */ - -/* {{{ proto 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 -*/ -/* READ ONLY FOR NOW USING ENCODING PROPERTY -int dom_document_actual_encoding_read(dom_object *obj, zval **retval TSRMLS_DC) -{ - ALLOC_ZVAL(*retval); - ZVAL_NULL(*retval); - return SUCCESS; -} - -int dom_document_actual_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) -{ - return SUCCESS; -} -*/ - -/* }}} */ - /* {{{ proto 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 |