msg145155 - (view) |
Author: Dillon Amburgey (dillona) |
Date: 2011-10-08 04:18 |
http://docs.python.org/library/xml.dom.html#dom-attr-objects does not label the name attribute as read-only (like localName) even though it is. |
|
|
msg145156 - (view) |
Author: Dillon Amburgey (dillona) |
Date: 2011-10-08 04:19 |
The behavior can be verified as follows. Notice that despite changing the value, the output XML does not change >>> from xml.dom import minidom, Node >>> a = minidom.parseString("<a href=\"http://asd.com\">asd") >>> a <xml.dom.minidom.Document instance at 0x22d7c68> >>> a.childNodes [<DOM Element: a at 0x22d7d88>] >>> a.childNodes[0] <DOM Element: a at 0x22d7d88> >>> a.childNodes[0].attributes <xml.dom.minidom.NamedNodeMap object at 0x21caa70> >>> a.childNodes[0].attributes.item(0) <xml.dom.minidom.Attr instance at 0x22d7f38> >>> a.childNodes[0].attributes.item(0).name u'href' >>> attr = a.childNodes[0].attributes.item(0) >>> attr.name = "ad" >>> a.toxml() u'asd' >>> attr.value = "asd" >>> a.toxml() u'asd' |
|
|
msg145282 - (view) |
Author: Ezio Melotti (ezio.melotti) *  |
Date: 2011-10-09 21:48 |
localName is defined with defproperty() in Lib/xml/dom/minidom.py:464 and looking at the definition of defproperty() in Lib/xml/dom/minicompat.py:97 I think this is supposed to raise an xml.dom.NoModificationAllowedErr exception when someone tries to write on the attribute. This doesn't seem to happen though. OTOH 'name' doesn't use defproperty(), so technically it's writable, expect that writing on it has no effect. This should still be documented, and it would also be good to figure out what's going on with defproperty(). |
|
|
msg145567 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2011-10-14 22:27 |
The docs are unchanged in 3.2. I presume the behavior is also. |
|
|
msg148788 - (view) |
Author: Urjit Bhatia (urjitsb87) |
Date: 2011-12-03 09:56 |
Using the same code example as above, I added a simple print statement in the set method being defined in the defproperty and it fired correctly for - a.childNodes[0].attributes='something' **My print statement:**in defproperty set for name: attributes Traceback (most recent call last): File "", line 1, in File "/home/urjit/code/mercurial/python/cpython/Lib/xml/dom/minicompat.py", line 106, in set "attempt to modify read-only attribute " + repr(name)) xml.dom.NoModificationAllowedErr: attempt to modify read-only attribute 'attributes' The getter seems to work fine for localName but the setter somehow does not fire. I have a fix for this but when I am running the test on my ubuntu vm, it doesnt go beyond test_sndhdr. However, when I run that test directly, it is successful. I can submit a patch if this problem is fixed. |
|
|
msg333081 - (view) |
Author: Ashwin Ramaswami (epicfaace) * |
Date: 2019-01-05 23:18 |
This behavior appears to be working as expected per the documentation when using Python 3.7.1. I am able to change name, but changing localName gives me a NoModificationAllowedErr error. |
|
|
msg340206 - (view) |
Author: Cheryl Sabella (cheryl.sabella) *  |
Date: 2019-04-14 13:11 |
Stefan, Do you think this should be documented? |
|
|
msg340211 - (view) |
Author: Stefan Behnel (scoder) *  |
Date: 2019-04-14 14:14 |
The intended interface seems to be to change .name rather than .localName, so yes, that should be documented somewhere. The implementation seems a bit funny in that a "self._localName", if set, takes precedence, but there doesn't seem to be an official way to set it. The Attr() constructor even takes a "localname" argument, which it then ignores. o_O |
|
|
msg346582 - (view) |
Author: Giovanni Cappellotto (potomak) * |
Date: 2019-06-26 03:51 |
I took a quick look at `minidom.py` and `test_minidom.py`. It seems that you should always use `doc.renameNode(attr, namespace, new_name)` for renaming an attribute (or an element). When `doc.renameNode` is applied on an attribute node, it removes the attribute from the `ownerElement` and re-set it after renaming it. For instance: ``` >>> import xml.dom.minidom >>> from xml.dom import minidom >>> doc = minidom.parseString("<a href=\"http://foo.com\">foo") >>> attr = doc.childNodes[0].attributes.item(0) >>> doc.renameNode(attr, xml.dom.EMPTY_NAMESPACE, "bar") <xml.dom.minidom.Attr object at 0x7fb27d7ddb00> >>> doc.toxml() 'foo' ``` I agree that this behavior should be documented somewhere. Maybe there should be a note/warning in the `name` attribute description. It should says that resetting an attribute `name` won't change the document representation and that `doc.renameNode` should be used instead. Another approach may be to update the `name` setter implementation to remove and then re-set the attribute in the `ownerElement`. What do you think it's the best approach: 1. update the doc 2. update the `name` setter implementation I'd be happy to help to fix this issue. |
|
|
msg347860 - (view) |
Author: Giovanni Cappellotto (potomak) * |
Date: 2019-07-13 22:51 |
In https://github.com/python/cpython/pull/14757 I tried updating the implementation of `Attr._set_name` to remove and reset the attr node in the owner element. So now `Attr._set_name` behaves similarly to `Document.renameNode`. All existing tests are still passing and I added one more test for checking the issue described here. |
|
|