Searched refs:xpath (Results 1 – 10 of 10) sorted by relevance
| /dokuwiki/_test/tests/Feed/ |
| H A D | FeedCreatorValidationTest.php | 47 $line = (int)$xml->xpath('//m:warnings/m:warninglist/warning/line')[0]; 48 $text = (string)$xml->xpath('//m:warnings/m:warninglist/warning/text')[0]; 49 $element = (string)$xml->xpath('//m:warnings/m:warninglist/warning/element')[0]; 50 $parent = (string)$xml->xpath('//m:warnings/m:warninglist/warning/parent')[0]; 63 $errorCount = (int)$xml->xpath('//m:errors/m:errorcount')[0]; 65 $line = (int)$xml->xpath('//m:errors/m:errorlist/error/line')[0]; 66 $text = (string)$xml->xpath('//m:errors/m:errorlist/error/text')[0]; 67 $element = (string)$xml->xpath('//m:errors/m:errorlist/error/element')[0]; 68 $parent = (string)$xml->xpath('//m:errors/m:errorlist/error/parent')[0];
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
| H A D | XML.php | 93 $xpath = new \DOMXPath($dom); 95 $curve = self::loadCurveByParam($xpath); 97 $pubkey = self::query($xpath, 'publickey', 'Public Key is not present'); 99 $QA = self::query($xpath, 'ecdsakeyvalue')->length ? 100 self::extractPointRFC4050($xpath, $curve) : 117 private static function query(\DOMXPath $xpath, $name, $error = null, $decode = true) argument 124 $result = $xpath->query($query); 147 $xpath = new \DOMXPath($dom); 148 $nodes = $xpath->query("//*[namespace::*[.='$ns'] and not(../namespace::*[.='$ns'])]"); 177 private static function extractPointRFC4050(\DOMXPath $xpath, BaseCurve $curve) argument [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/ |
| H A D | XML.php | 60 $xpath = new \DOMXPath($dom); 64 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Sanitize.php | 371 $xpath = new \DOMXPath($document); 375 $comments = $xpath->query('//comment()'); 387 $this->strip_tag($tag, $document, $xpath, $type); 393 $this->rename_attr($attrib, $xpath); 399 $this->strip_attr($attrib, $xpath); 535 protected function strip_tag($tag, $document, $xpath, $type) argument 537 $elements = $xpath->query('body//' . $tag); 603 protected function strip_attr($attrib, $xpath) argument 605 $elements = $xpath->query('//*[@' . $attrib . ']'); 612 protected function rename_attr($attrib, $xpath) argument [all …]
|
| H A D | Locator.php | 290 $xpath = new \DOMXpath($this->dom); 292 foreach ($xpath->query($query) as $link) {
|
| H A D | Parser.php | 87 $xpath = new \DOMXpath($doc); 92 $result = $xpath->query($query);
|
| H A D | SimplePie.php | 1840 $xpath = new \DOMXpath($doc); 1845 $result = $xpath->query($query);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/ |
| H A D | XML.php | 69 $xpath = new \DOMXPath($dom); 73 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 152 public $xpath; variable in DOMDocumentWrapper 197 $this->xpath = new DOMXPath($this->document); 207 $this->xpath->registerNamespace("html", "http://www.w3.org/1999/xhtml"); 1137 public $xpath = null; variable in phpQueryObject 1203 $this->xpath =& $this->documentWrapper->xpath; 1745 $xpath = $this->documentWrapper->isXHTML 1749 $query = $XQuery == '//' && $xpath == '/html[1]' 1751 : $xpath.$XQuery; 1754 $nodes = $this->xpath->query($query); 4173 $xpath = array(); [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 217 * Switched from regex to xpath for microformats discovery. [#536](https://github.com/simplepie/simp…
|