| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | Externallink.php | 18 $host = $ltrs . $punc; 26 $this->patterns[] = '(?<![/\\\\])\b(?i)www?(?-i)\.[' . $host . ']+?\.' . 27 '[' . $host . ']+?[' . $any . ']+?(?=[' . $punc . ']*[^' . $any . '])'; 28 $this->patterns[] = '(?<![/\\\\])\b(?i)ftp?(?-i)\.[' . $host . ']+?\.' . 29 '[' . $host . ']+?[' . $any . ']+?(?=[' . $punc . ']*[^' . $any . '])';
|
| /dokuwiki/inc/ |
| H A D | mail.php | 45 $host = @parse_url(DOKU_URL, PHP_URL_HOST); 46 if (!$host) $host = 'example.com'; 47 $noreply = 'noreply@' . $host;
|
| H A D | init.php | 507 $host = $parsed_host['host'] ?? '';
|
| /dokuwiki/_test/tests/inc/ |
| H A D | httpclient_http_proxy.test.php | 19 $this->host = $conf['host'];
|
| /dokuwiki/_test/ |
| H A D | proxy.conf.php.dist | 5 $conf['host'] = '127.0.0.1';
|
| H A D | mysql.conf.php.dist | 6 $conf['host'] = '127.0.0.1';
|
| H A D | pgsql.conf.php.dist | 6 $conf['host'] = '127.0.0.1';
|
| /dokuwiki/inc/lang/it/ |
| H A D | registermail.txt | 10 Nome host : @HOSTNAME@
|
| H A D | mailtext.txt | 6 Nome host : @HOSTNAME@
|
| /dokuwiki/inc/lang/ia/ |
| H A D | uploadmail.txt | 7 Nomine host: @HOSTNAME@
|
| H A D | registermail.txt | 10 Nomine host : @HOSTNAME@
|
| H A D | mailtext.txt | 6 Nomine host : @HOSTNAME@
|
| /dokuwiki/inc/lang/es/ |
| H A D | registermail.txt | 10 Nombre del host : @HOSTNAME@
|
| /dokuwiki/inc/lang/pt-br/ |
| H A D | registermail.txt | 10 Nome do host: @HOSTNAME@
|
| H A D | uploadmail.txt | 7 Nome do host: @HOSTNAME@
|
| H A D | mailtext.txt | 6 Nome do host: @HOSTNAME@
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/ |
| H A D | Stream.php | 154 if (!isset($host)) { 165 if (preg_match('/^{[a-z0-9]+}$/i', $host)) { 166 $host = SSH2::getConnectionByResourceId($host); 167 if ($host === false) { 170 $this->sftp = $host; 200 if (isset(self::$instances[$host][$port][$user][(string) $pass])) { 201 $this->sftp = self::$instances[$host][$port][$user][(string) $pass]; 203 $this->sftp = new SFTP($host, $port); 227 self::$instances[$host][$port][$user][(string) $pass] = $this->sftp;
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | mysql.test.php | 12 protected $host = ''; variable in mysql_plugin_authpdo_test 26 $this->host = $conf['host']; 46 if(!$this->host || !$this->user) { 63 "{$this->driver}:host={$this->host};port={$this->port}", $this->user, $this->pass, 78 "{$this->driver}:host={$this->host};port={$this->port}", $this->user, $this->pass, 100 …"{$this->driver}:dbname={$this->database};host={$this->host};port={$this->port}", $this->user, $th… 301 …authpdo']['dsn'] = "{$this->driver}:dbname={$this->database};host={$this->host};port={$this->port}…
|
| /dokuwiki/lib/plugins/authad/adLDAP/ |
| H A D | adLDAP.php | 925 protected function pingController($host) { argument 927 fsockopen($host, $port, $errno, $errstr, 10);
|
| /dokuwiki/vendor/aziraphale/email-address-validator/ |
| H A D | README.md | 57 // "example.org" is technically a valid email address host
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
| H A D | SSH2.php | 939 private $host; variable in phpseclib3\\Net\\SSH2 1180 * @param mixed $host 1185 public function __construct($host, $port = 22, $timeout = 10) argument 1279 if (is_resource($host)) { 1280 $this->fsock = $host; 1284 if (Strings::is_stringable($host)) { 1285 $this->host = $host; 1402 …$this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 1000… 1404 $host = $this->host . ':' . $this->port; 1405 … throw new UnableToConnectException(rtrim("Cannot connect to $host. Error $errno. $errstr"));
|
| H A D | SFTP.php | 355 * @param mixed $host 359 public function __construct($host, $port = 22, $timeout = 10) argument 361 parent::__construct($host, $port, $timeout);
|
| /dokuwiki/lib/plugins/config/lang/pt-br/ |
| H A D | lang.php | 179 $lang['dnslookups'] = 'O DokuWiki procurará pelo nome de host dos endereços IP remotos d…
|
| /dokuwiki/lib/plugins/config/lang/pt/ |
| H A D | lang.php | 173 $lang['dnslookups'] = 'O DokuWiki irá procurar nomes de host para endereços IP remotos d…
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 5060 foreach(self::$ajaxAllowedHosts as $k => $host) 5061 if ($host == '.' && isset($_SERVER['HTTP_HOST'])) 5063 $host = parse_url($options['url'], PHP_URL_HOST); 5064 if (! in_array($host, self::$ajaxAllowedHosts)) { 5065 throw new Exception("Request not permitted, host '$host' not present in " 5272 foreach($loop as $host) { 5273 if ($host && ! in_array($host, phpQuery::$ajaxAllowedHosts)) { 5274 phpQuery::$ajaxAllowedHosts[] = $host;
|