Home
last modified time | relevance | path

Searched refs:parsed (Results 1 – 13 of 13) sorted by last modified time

/dokuwiki/inc/
H A Dparserutils.php65 * Returns the parsed Wikitext in XHTML for the given id and revision.
115 * Returns the specified local text in parsed format
124 //fetch parsed locale
137 * Returns the given file parsed into the requested output format
153 $parsed = $cache->retrieveCache(false);
155 $parsed .= "\n<!-- cachefile {$cache->cache} used -->\n";
158 $parsed = p_render($format, p_cached_instructions($file, false, $id), $info);
160 if (!empty($info['cache']) && $cache->storeCache($parsed)) { // storeCache() attempts to save cachefile
162 $parsed .= "\n<!-- no cachefile used, but created {$cache->cache} -->\n";
167 $parsed
[all...]
H A Dfulltext.php97 // since phrases are always parsed as ((W1)(W2)...(P)),
744 $parsed = '';
748 $parsed = $not . ft_termParser($Indexer, $matches[2], false, true);
771 $parsed .= '(';
775 $parsed .= 'NOT(';
780 $parsed .= ')';
786 $parsed .= 'OR';
789 $parsed .= 'NOT(N+:' . $matches[1] . ')';
792 $parsed .= '(N+:' . $matches[1] . ')';
795 $parsed
[all...]
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php129 * unparsed and parsed token invokes a call to the held listener.
142 while (is_array($parsed = $this->reduce($raw))) {
143 [$unmatched, $matched, $mode] = $parsed;
155 if (!$parsed) {
180 * @param int $matchPos Current byte index location in raw doc thats being parsed
248 * @param string $content Text parsed.
252 * thats being parsed
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php214 $parsed = parse_url($input);
215 if (isset($parsed['host'])) {
216 $arr = explode('.', $parsed['host']);
221 $parsed['host'] = join('.', $arr);
223 (empty($parsed['scheme']) ? '' : $parsed['scheme'].(strtolower($parsed['scheme']) == 'mailto' ? ':' : '://'))
224 .(empty($parsed['user']) ? '' : $parsed['user'].(empty($parsed['pas
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php186 $parsed = Misc::parse_url($url);
187 if ($parsed['scheme'] !== '' && $parsed['scheme'] !== 'http' && $parsed['scheme'] !== 'https') {
188 return Misc::fix_protocol(Misc::compress_parse_url('http', $parsed['authority'], $parsed['path'], $parsed['query'], $parsed['fragment']), $http);
191 if ($parsed['scheme'] === '' && $parsed['authorit
[all...]
H A DFile.php76 $parsed = \SimplePie\Misc::parse_url($url);
77 $url = \SimplePie\Misc::compress_parse_url($parsed['scheme'], $idn->encode($parsed['authority']), $parsed['path'], $parsed['query'], null);
H A DEnclosure.php260 $parsed = \SimplePie\Misc::parse_url($link);
261 $this->link = \SimplePie\Misc::compress_parse_url($parsed['scheme'], $idn->encode($parsed['authority']), $parsed['path'], $parsed['query'], $parsed['fragment']);
H A DIRI.php349 // This can occur when a paragraph is accidentally parsed as a URI
743 $parsed = $this->parse_iri((string) $iri);
744 if (!$parsed) {
748 $return = $this->set_scheme($parsed['scheme'])
749 && $this->set_authority($parsed['authority'])
750 && $this->set_path($parsed['path'])
751 && $this->set_query($parsed['query'])
752 && $this->set_fragment($parsed['fragment']);
H A DLocator.php251 $parsed = $this->registry->call(Misc::class, 'parse_url', [$href]);
252 if ($parsed['scheme'] === '' || preg_match('/^(https?|feed)?$/i', $parsed['scheme'])) {
264 if ($parsed['authority'] === '' || $parsed['authority'] === $current['authority']) {
295 $parsed = $this->registry->call(Misc::class, 'parse_url', [$href]);
296 if ($parsed['scheme'] === '' ||
297 preg_match('/^https?$/i', $parsed['scheme'])) {
/dokuwiki/inc/parser/
H A Drenderer.php625 * @param string $wikiUri the fragment parsed from the original link
950 $parsed = parse_url($reference);
951 if (empty($parsed['scheme'])) $parsed['scheme'] = '';
952 if (empty($parsed['host'])) $parsed['host'] = '';
953 if (empty($parsed['port'])) $parsed['port'] = 80;
954 if (empty($parsed['path'])) $parsed['pat
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md210 * Titles are now parsed for ATOM10 enclosure links. [#507](https://github.com/simplepie/simplepie/pull/507)
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DRedis.php97 $parsed = \SimplePie\Cache::parse_URL($location);
99 $redis->connect($parsed['host'], $parsed['port']);
100 if (isset($parsed['pass'])) {
101 $redis->auth($parsed['pass']);
103 if (isset($parsed['path'])) {
104 $redis->select((int)substr($parsed['path'], 1));
/dokuwiki/inc/Form/
H A DInputElement.php105 parse_str("$name=1", $parsed);
107 $name = array_keys($parsed);
110 if (isset($parsed[$name]) && is_array($parsed[$name])) {
111 $key = array_keys($parsed[$name]);