| /dokuwiki/vendor/kissifrot/php-ixr/src/Request/ |
| H A D | Request.php | 17 private $xml; variable in IXR\\Request\\Request 23 $this->xml = <<<EOD 31 $this->xml .= '<param><value>'; 33 $this->xml .= $v->getXml(); 34 $this->xml .= "</value></param>\n"; 36 $this->xml .= '</params></methodCall>'; 41 return strlen($this->xml); 46 return $this->xml;
|
| /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/_test/tests/Remote/Mock/ |
| H A D | XmlRpcServer.php | 19 * @param string $xml 22 public function output($xml) { argument 23 $this->output = $xml;
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Parser.php | 150 $xml = xml_parser_create_ns($this->encoding, $this->separator); 151 xml_parser_set_option($xml, XML_OPTION_SKIP_WHITE, 1); 152 xml_parser_set_option($xml, XML_OPTION_CASE_FOLDING, 0); 153 xml_set_character_data_handler($xml, [$this, 'cdata']); 154 xml_set_element_handler($xml, [$this, 'tag_open'], [$this, 'tag_close']); 164 … if (!xml_parse($xml, $stream_data === false ? '' : $stream_data, feof($stream))) { 165 $this->error_code = xml_get_error_code($xml); 176 $this->current_line = xml_get_current_line_number($xml); 177 $this->current_column = xml_get_current_column_number($xml); 178 $this->current_byte = xml_get_current_byte_index($xml); [all …]
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Server/ |
| H A D | Server.php | 64 $xml = <<<EOD 77 $this->output($xml); 118 public function output($xml) argument 120 $xml = '<?xml version="1.0"?>' . "\n" . $xml; 121 $length = strlen($xml); 126 echo $xml;
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/ |
| H A D | .gitignore | 7 phpunit.xml
|
| H A D | README.md | 58 echo $rss->saveFeed("RSS1.0", "news/feed.xml"); 95 changed default content-type to application/xml
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | FeedCreator.php | 158 $xml = ""; 160 $xml .= "<?xml-stylesheet href=\"".$this->cssStyleSheet."\" type=\"text/css\"?>\n"; 163 $xml .= "<?xml-stylesheet href=\"".$this->xslStyleSheet."\" type=\"text/xsl\"?>\n"; 166 return $xml;
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/ |
| H A D | XML.php | 138 * @param string $xml 141 private static function isolateNamespace($xml, $ns) argument 144 if (!$dom->loadXML($xml)) { 427 $xml = '<' . $pre . 'ExplicitParams>' . "\r\n" . 432 $xml .= '<' . $pre . 'PrimeFieldParamsType>' . "\r\n" . 442 $xml .= '</' . $pre . 'FieldParams>' . "\r\n" . 458 return $xml; 462 $xml = '<' . $pre . 'ECParameters>' . "\r\n" . 467 $xml .= '<' . $pre . 'Prime>' . "\r\n" . 474 $xml .= '</' . $pre . 'FieldID>' . "\r\n" . [all …]
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
| H A D | ClientSSL.php | 134 $xml = $request->getXml(); 136 $this->debugOutput('<pre>' . htmlspecialchars($xml) . PHP_EOL . '</pre>');
|
| H A D | Client.php | 71 $xml = $request->getXml(); 86 $request .= $xml;
|
| /dokuwiki/inc/Remote/IXR/ |
| H A D | Client.php | 46 $this->headers['Content-Type'] = 'text/xml';
|
| /dokuwiki/vendor/phpseclib/phpseclib/ |
| H A D | README.md | 91 phpcs --standard=build/php_codesniffer.xml 93 …psalm --config=build/psalm.xml --no-cache --long-progress --report-show-info=false --output-format… 94 vendor/bin/phpunit --verbose --configuration tests/phpunit.xml
|
| /dokuwiki/vendor/php81_bc/strftime/ |
| H A D | .gitattributes | 19 *.xml text
|
| /dokuwiki/conf/ |
| H A D | mime.conf | 57 svg image/svg+xml
|
| /dokuwiki/lib/plugins/extension/images/ |
| H A D | coffee.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M375.71…
|
| /dokuwiki/ |
| H A D | .gitignore | 76 vendor/*/*/phpunit.xml*
|
| H A D | composer.lock | 116 "ext-xml": "*", 500 "ext-xml": "*",
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | basic.less | 420 …background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdm… 449 …background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmc…
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 791 public static function expandEmptyTag($tag, $xml){ argument 793 while ($indice< strlen($xml)){ 794 $pos = strpos($xml, "<$tag ", $indice); 796 $posCierre = strpos($xml, ">", $pos); 797 if ($xml[$posCierre-1] == "/"){ 798 $xml = substr_replace($xml, "></$tag>", $posCierre-1, 2); 804 return $xml; 2958 public function xml($xml = null, $callback1 = null, $callback2 = null, $callback3 = null) { function in phpQueryObject
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 122 - Re-enable xml:base for all supported RSS formats by @Alkarex in [#723](https://github.com/simplep… 272 * Added support for `application/x-rss+xml` in `SimplePie_Locator`. [#348](https://github.com/simpl…
|
| /dokuwiki/_test/ |
| H A D | composer.lock | 920 "ext-xml": "*", 1028 "ext-dom": "To manipulate phpunit.xml via the custom-rule command"
|
| /dokuwiki/data/pages/wiki/ |
| H A D | syntax.txt | 420 …hdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp …
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/ |
| H A D | composer.lock | 567 "ext-xml": "*",
|
| /dokuwiki/_test/data/pages/wiki/ |
| H A D | syntax.txt | 420 …hdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp …
|