Home
last modified time | relevance | path

Searched refs:path (Results 151 – 175 of 176) sorted by relevance

12345678

/dokuwiki/lib/images/menu/
H A Dsettings.svg1 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 15.5A3.5 3.5 0 0 1 8.5 12 3.5 3.5 0 0 1 12 8.5a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5m (…)
/dokuwiki/lib/plugins/config/
H A Dadmin.svg1 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 15.5A3.5 3.5 0 0 1 8.5 12 3.5 3.5 0 0 1 12 8.5a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5m (…)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php573 * @param string $path
575 private function mapInExtensions(array &$root, $path)
577 $extensions = &$this->subArrayUnchecked($root, $path);
627 * @param string $path
629 private function mapOutExtensions(array &$root, $path)
631 $extensions = &$this->subArray($root, $path, !empty($this->extensionValues));
708 * @param string $path
710 private function mapInAttributes(&$root, $path)
712 $attributes = &$this->subArray($root, $path);
750 * @param string $path
1617 _mapInExtensions(& $root, $path, $asn1) global() argument
1670 _mapOutExtensions(& $root, $path, $asn1) global() argument
1736 _mapInAttributes(& $root, $path, $asn1) global() argument
1777 _mapOutAttributes(& $root, $path, $asn1) global() argument
1820 _mapInDNs(& $root, $path, $asn1) global() argument
1850 _mapOutDNs(& $root, $path, $asn1) global() argument
4158 _isSubArrayValid($root, $path) global() argument
4195 _subArrayUnchecked(& $root, $path, $create = false) global() argument
4223 _subArray(& $root, $path, $create = false) global() argument
4259 _extensions(& $root, $path = null, $create = false) global() argument
4313 _removeExtension($id, $path = null) global() argument
4348 _getExtension($id, $cert = null, $path = null) global() argument
4373 _getExtensions($cert = null, $path = null) global() argument
4398 _setExtension($id, $value, $critical = false, $replace = true, $path = null) global() argument
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/
H A DClientSSL.php55 public function __construct($server, $path = false, $port = 443, $timeout = false, $timeout_io = null) argument
57 parent::__construct($server, $path, $port, $timeout, $timeout_io);
142 $curl = curl_init('https://' . $this->server . $this->path);
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js70 options.path ? '; path=' + options.path : '',
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_admin.less39 path {
/dokuwiki/inc/
H A Dutf8.php82 function utf8_basename($path, $suffix = '')
85 return PhpString::basename($path, $suffix);
81 utf8_basename($path, $suffix = '') global() argument
H A Ddeprecated.php583 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null)
586 parent::__construct($server, $path, $port, $timeout, $timeout_io);
598 public function __construct($server, $path = false, $port = 80)
601 parent::__construct($server, $path, $port);
581 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument
596 __construct($server, $path = false, $port = 80) global() argument
H A Dindexer.php347 $path = $conf['indexdir'] . "/i";
349 if (file_exists($path . $key . '.idx'))
H A Dauth.php513 'path' => $cookieDir,
778 $path = $ns . ':*';
780 $path = '*'; //root document
784 $matches = preg_grep('/^' . preg_quote($path, '/') . '[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL);
808 if ($path != '*') {
809 $path = $ns . ':*';
810 if ($path == ':*') $path = '*';
1368 'path' => $cookieDir,
H A Dsearch.php444 * translates a document path to an ID
449 * @param string $path
454 function pathID($path, $keeptxt = false)
456 $id = utf8_decodeFN($path);
441 pathID($path, $keeptxt = false) global() argument
H A Dcommon.php1094 $path = dirname(wikiFN($id));
1095 if (file_exists($path . '/_template.txt')) {
1096 $data['tplfile'] = $path . '/_template.txt';
1100 while (strlen($path) >= $len) {
1101 if (file_exists($path . '/__template.txt')) {
1102 $data['tplfile'] = $path . '/__template.txt';
1105 $path = substr($path, 0, strrpos($path, '/'));
1772 * Returns the path t
[all...]
H A DMailer.class.php78 * @param string $path Path to the file to attach argument
83 public function attachFile($path, $mime, $name = '', $embed = '')
86 $name = PhpString::basename($path);
90 'data' => file_get_contents($path),
H A Dtemplate.php26 * Returns the path to the given file inside the current template, uses
941 // prepare date and path
1340 $path = tpl_incdir() . 'lang/';
1345 @include($path . 'en/lang.php');
1353 @include($path . $conf['lang'] . '/lang.php');
1377 * Prepends appropriate path for a language dependent filename
1384 $path = tpl_incdir() . 'lang/';
1388 $file = $path . $conf['lang'] . '/' . $id . '.txt';
1391 $file = $path . 'en/' . $id . '.txt';
H A Dmedia.php271 $data['path'] = $file;
318 $path = $tmp . '/' . md5($id);
319 $target = fopen($path, "w");
324 unlink($path);
329 ['name' => $path, 'mime' => $mime, 'ext' => $ext],
335 unlink($path);
644 * @param string $file path to file
687 * @param string $file path to file
1285 foreach ($media_usage as $path) {
1286 echo '<dd>' . html_wikilink($path)
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php597 * Get the base path of the extension
599 * @return string The base path of the extension
686 $path = $this->download($url);
687 $installed = $this->installArchive($path, $overwrite);
703 $path = $this->download($url);
704 $installed = $this->installArchive($path, $this->isInstalled(), $this->getBase());
796 $path = $this->getInstallDir() . '/';
800 if (file_exists($path . $type . '.php')) {
805 if ($dh = @opendir($path . $type . '/')) {
914 * @param string $file path t
[all...]
/dokuwiki/
H A D.htaccess.dist35 ## change "/dokuwiki" to the path to your dokuwiki directory relative
/dokuwiki/lib/plugins/extension/
H A Dcli.php309 $tpllist = array_map(static fn($path) => 'template:' . basename($path), $tpllist);
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php247 * The path to the language files
264 GESHI_ERROR_NO_SUCH_LANG => 'GeSHi could not find the language {LANGUAGE} (using path {PATH})',
551 * @param string $path The path to the language file directory. <b>This
552 * is deprecated!</b> I've backported the auto path
556 * still need to set the path using this parameter or
560 public function __construct($source = '', $language = '', $path = '') { argument
567 $this->set_language_path($path);
684 * Sets the path to the directory containing the language files. Note
685 * that this path i
695 set_language_path($path) global() argument
4743 geshi_highlight($string, $language, $path = null, $return = false) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php188 return Misc::fix_protocol(Misc::compress_parse_url('http', $parsed['authority'], $parsed['path'], $parsed['query'], $parsed['fragment']), $http);
192 return Misc::fix_protocol(Misc::compress_parse_url('http', $parsed['path'], '', $parsed['query'], $parsed['fragment']), $http);
228 'path' => (string) $iri->path,
234 public static function compress_parse_url($scheme = '', $authority = '', $path = '', $query = '', $fragment = '') argument
239 $iri->path = $path;
/dokuwiki/inc/HTTP/
H A DHTTPClient.php182 $path = empty($uri['path']) ? '/' : $uri['path'];
184 if (!empty($uri['query'])) $path .= '?' . $uri['query'];
196 $request_url = $path;
371 dirname($path) . '/' . $this->resp_headers['location'];
559 $requesturl = ($requestinfo['path'] ?? '/') .
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md105 | `imconvert` | `/usr/bin/convert` | The path to ImageMagick's `convert` binary |
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
H A Dlessc.inc.php
/dokuwiki/inc/Search/
H A DIndexer.php1158 $path = $conf['indexdir'] . "/i";
1160 if (file_exists($path . $key . '.idx'))

12345678