Lines Matching refs:namespaceURI
115 DOM. This is typically found as the :attr:`namespaceURI` of a node, or used as
116 the *namespaceURI* parameter to a namespaces-specific method.
314 .. attribute:: Node.namespaceURI
522 .. method:: Document.createElementNS(namespaceURI, tagName)
559 .. method:: Document.createAttributeNS(namespaceURI, qualifiedName)
573 .. method:: Document.getElementsByTagNameNS(namespaceURI, localName)
600 .. method:: Element.getElementsByTagNameNS(namespaceURI, localName)
610 .. method:: Element.hasAttributeNS(namespaceURI, localName)
612 Return ``True`` if the element has an attribute named by *namespaceURI* and
627 .. method:: Element.getAttributeNS(namespaceURI, localName)
629 Return the value of the attribute named by *namespaceURI* and *localName* as a
634 .. method:: Element.getAttributeNodeNS(namespaceURI, localName)
636 Return an attribute value as a node, given a *namespaceURI* and *localName*.
651 .. method:: Element.removeAttributeNS(namespaceURI, localName)
673 necessary if the :attr:`namespaceURI` and :attr:`localName` attributes match.
678 .. method:: Element.setAttributeNS(namespaceURI, qname, value)
680 Set an attribute value from a string, given a *namespaceURI* and a *qname*.