Home
last modified time | relevance | path

Searched +full:clear -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 89) sorted by path

1234

/dokuwiki/
H A DCOPYING53 program proprietary. To prevent this, we have made it clear that any
226 This section is intended to make thoroughly clear what is believed to
H A Dinstall.php63 clear: both;
133 display: block; width:380px; height:73px; border:none; clear:both;"
167 <div style="clear: both">
/dokuwiki/bin/
H A Ddwpage.php298 * Clear the lock on the given page
315 $this->error("Unable to clear lock for $wiki_id");
H A Dindexer.php17 private $clear = false; variable in IndexerCLI
33 'clear',
34 'clear the index before updating',
54 $this->clear = $options->getOpt('clear');
57 if ($this->clear) $this->clearindex();
86 idx_addPage($id, !$this->quiet, $this->clear);
91 * Clear all index files
96 idx_get_indexer()->clear();
/dokuwiki/conf/
H A Dmysql.conf.php.example63 * %{pass} encrypted or clear text password (depends on 'encryptPass')
75 * 'pass' containing the encrypted or clear text password
140 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
216 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
/dokuwiki/inc/Extension/
H A DAuthPlugin.php228 * @param string $pass the clear text password
290 * @param array $changes array of field/value pairs to be changed (password will be clear text)
/dokuwiki/inc/
H A DPassHash.php22 * then the clear text password is crypted using the same method. If both hashs
28 * @param string $clear Clear-Text password
32 public function verify_hash($clear, $hash)
43 $clear = md5($clear);
100 return password_verify($clear, $hash);
119 $newhash = $this->$call($clear, $salt, $magic);
176 * @param string $clear The clear tex
30 verify_hash($clear, $hash) global() argument
184 hash_smd5($clear, $salt = null) global() argument
206 hash_lsmd5($clear, $salt = null) global() argument
226 hash_apr1($clear, $salt = null, $magic = 'apr1') global() argument
270 hash_md5($clear) global() argument
282 hash_sha1($clear) global() argument
295 hash_ssha($clear, $salt = null) global() argument
309 hash_crypt($clear, $salt = null) global() argument
324 hash_mysql($clear) global() argument
347 hash_my411($clear) global() argument
363 hash_kmd5($clear, $salt = null) global() argument
398 stretched_hash($algo, $clear, $salt = null, $magic = 'P', $compute = 8) global() argument
462 hash_pmd5($clear, $salt = null, $magic = 'P', $compute = 8) global() argument
483 hash_drupal_sha512($clear, $salt = null, $magic = 'S', $compute = 15) global() argument
498 hash_hmd5($clear, $salt = null, $magic = 'H', $compute = 8) global() argument
514 hash_djangosha1($clear, $salt = null) global() argument
531 hash_djangomd5($clear, $salt = null) global() argument
553 hash_seafilepbkdf2($clear, $salt = null, $opts = array()) global() argument
589 hash_djangopbkdf2($clear, $salt = null, $opts = array()) global() argument
621 hash_djangopbkdf2_sha256($clear, $salt = null, $opts = array()) global() argument
635 hash_djangopbkdf2_sha1($clear, $salt = null, $opts = array()) global() argument
657 hash_bcrypt($clear, $salt = null, $compute = 10) global() argument
687 hash_sha2($clear, $salt = null, $opts = array()) global() argument
713 hash_sha512($clear, $salt = null, $opts = []) global() argument
719 hash_sha256($clear, $salt = null, $opts = []) global() argument
736 hash_mediawiki($clear, $salt = null) global() argument
753 hash_argon2i($clear) global() argument
771 hash_argon2id($clear) global() argument
[all...]
H A DSafeFN.class.php30 * - if previous character was "converted", append post_indicator to output, clear "converted" flag
61 * - clear any converted flag
H A Dactions.php24 // clear internal variables
H A Dauth.php928 * @param string $password The new password in clear text
1307 * @param string $clear The clear text password
1312 function auth_cryptPassword($clear, $method = '', $salt = null)
1325 return $pass->$call($clear, $salt);
1331 * @param string $clear The clear text password
1338 function auth_verifyPassword($clear, $crypt)
1341 return $pass->verify_hash($clear, $crypt);
1209 auth_cryptPassword($clear, $method = '', $salt = null) global() argument
1233 auth_verifyPassword($clear, $crypt) global() argument
H A Dhtml.php477 if ($i) $html .= '<li class="clear">';
/dokuwiki/inc/Search/
H A DIndexer.php452 * Clear the whole index
456 public function clear()
482 // clear the pid cache
445 public function clear() { global() function in dokuwiki\\Search\\Indexer
/dokuwiki/inc/Ui/
H A DSearch.php524 //clear float (see http://www.complexspiral.com/publications/containing-floats/)
/dokuwiki/lib/images/fileicons/
H A Dindex.php48 <br style="clear: left" />
/dokuwiki/lib/plugins/authldap/
H A Dauth.php320 * @param array $changes array of field/value pairs to be changed (password will be clear text)
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php119 * @param string $pass the clear text password
130 $userdata['clear'] = $pass;
143 // clear text password in the database O_o
144 return ($pass === $userdata['clear']);
190 * @param string $clear
196 public function createUser($user, $clear, $name, $mail, $grps = null)
209 $hash = auth_cryptPassword($clear);
210 $userdata = ['user' => $user, 'clear' => $clear, 'hash' => $hash, 'name' => $name, 'mail' => $mail];
252 * @param array $changes array of field/value pairs to be changed (password will be clear tex
236 createUser($user, $clear, $name, $mail, $grps = null) global() argument
[all...]
/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php18 * return: user, name, mail, (clear|hash), [uid], [*]
23 * statement to check the password in SQL, optional when above returned clear or hash
25 * input: :user, :clear, :hash, [uid], [*]
48 * input: :user, :name, :mail, (:clear|:hash)
96 * input: :user, :clear, :hash, [:uid], [*]
/dokuwiki/lib/plugins/authplain/
H A Dauth.php177 * @param array $changes array of field/value pairs to be changed (password will be clear text)
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php32 * 'fieldset' - used to group configuration settings, but is not itself a setting. To make this clear in
/dokuwiki/lib/plugins/config/
H A Dstyle.css19 clear: both;
63 clear: left;
67 clear: right;
158 clear: both;
/dokuwiki/lib/plugins/extension/
H A Dall.less19 clear: left;
33 clear: right;
H A Dstyle.less200 clear: both;
203 clear: left;
267 clear: right;
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php1141 // we have found a clear marker, save and return
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php304 echo '<button type="submit" name="fn[search][clear]">' . $this->lang['clear'] . '</button>';
931 * Set the filter with the current search terms or clear the filter
933 * @param string $op 'new' or 'clear'
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css39 clear: both;
437 clear: left;
440 clear: both;
466 clear: right;

1234