Lines Matching refs:namespaceUri
389 function removeNamespace($namespaceUri) argument
391 if (empty($namespaceUri)) {
395 if (strpos($namespaceUri, "http") === false) {
396 …LogUtility::msg("Internal warning: The namespaceURI ($namespaceUri) does not seems to be an URI", …
405 $nodes = $this->xpath("//*[namespace-uri()='$namespaceUri']");
415 $nodes = $this->xpath("//@*[namespace-uri()='$namespaceUri']");
432 if ($namespaceURI == $namespaceUri) {
434 $parentNode->removeAttributeNS($namespaceUri, $node->localName);
491 foreach ($this->getNamespaces() as $prefix => $namespaceUri) {
497 $result = $this->domXpath->registerNamespace($prefix, $namespaceUri);
499 …LogUtility::msg("Not able to register the prefix ($prefix) for the namespace uri ($namespaceUri)");