| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _recent.css | 2 * This file provides styles for the recent changes (?do=recent) and 6 /*____________ list of revisions / recent changes ____________*/ 13 .dokuwiki form.changes ul li { 17 [dir=rtl] .dokuwiki form.changes ul li { 20 .dokuwiki form.changes ul li span, 21 .dokuwiki form.changes ul li a { 24 .dokuwiki form.changes ul li span.user a { 27 .dokuwiki form.changes ul li.minor { 31 .dokuwiki form.changes li span.date { 33 .dokuwiki form.changes li a.diff_link { [all …]
|
| H A D | content.less | 201 /* changes to underscored CSS files 216 /*____________ changes to _edit ____________*/ 284 /*____________ changes to _toc ____________*/ 363 /*____________ changes to _imgdetail ____________*/
|
| H A D | _media_fullscreen.css | 440 #mediamanager__page form.changes ul { 445 [dir=rtl] #mediamanager__page form.changes ul { 450 #mediamanager__page form.changes ul li div.li div { 455 [dir=rtl] #mediamanager__page form.changes ul li div.li div { 459 #mediamanager__page form.changes ul li div.li input {
|
| H A D | _edit.css | 93 /* summary input and minor changes checkbox */
|
| H A D | mobile.less | 130 .dokuwiki form.changes ul { 133 [dir=rtl] .dokuwiki form.changes ul {
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | cli.php | 229 $changes = []; 232 $changes['grps'] = $oldinfo['grps']; 235 $changes['grps'][] = $group; 240 if (!empty(array_diff($changes['grps'], $oldinfo['grps']))) { 241 if ($auth->triggerUserMod('modify', [$name, $changes])) { 267 $changes = []; 270 $changes['grps'] = $oldinfo['grps']; 272 if (($pos = array_search($group, $changes['grps'])) == !false) { 273 unset($changes['grps'][$pos]); 278 if (!empty(array_diff($oldinfo['grps'], $changes['grps']))) { [all …]
|
| H A D | admin.php | 790 $changes = []; 802 $changes['user'] = $newuser; 808 $changes['pass'] = $newpass; 814 $changes['pass'] = auth_pwgen($olduser); 819 $changes['name'] = $newname; 822 $changes['mail'] = $newmail; 825 $changes['grps'] = $newgrps; 828 if ($ok = $this->auth->triggerUserMod('modify', [$olduser, $changes])) { 831 if ($INPUT->has('usernotify') && !empty($changes['pass'])) { 832 $notify = empty($changes['user']) ? $olduser : $newuser; [all …]
|
| /dokuwiki/inc/lang/en/ |
| H A D | subscr_digest.txt | 4 Here are the changes: 16 and unsubscribe page and/or namespace changes.
|
| H A D | subscr_single.txt | 4 Here are the changes: 19 and unsubscribe page and/or namespace changes.
|
| H A D | subscr_list.txt | 13 and unsubscribe page and/or namespace changes.
|
| H A D | mailtext.txt | 12 There may be newer changes after this revision. If this
|
| /dokuwiki/lib/plugins/authpdo/ |
| H A D | auth.php | 255 * @param array $changes array of field/value pairs to be changed (password will be clear text) 258 public function modifyUser($user, $changes) argument 268 if (isset($changes['user'])) { 269 if ($this->getUserData($changes['user'], false)) goto FAIL; 271 $params['newlogin'] = $changes['user']; 278 if (isset($changes['pass'])) { 280 $params['clear'] = $changes['pass']; 281 $params['hash'] = auth_cryptPassword($changes['pass']); 288 if (isset($changes['mail']) || isset($changes['name'])) { 290 if (isset($changes['mail'])) $params['mail'] = $changes['mail']; [all …]
|
| /dokuwiki/lib/plugins/styling/lang/en/ |
| H A D | intro.txt | 2 All changes are stored in a local configuration file and are upgrade safe.
|
| /dokuwiki/inc/ |
| H A D | auth.php | 1082 $changes = []; 1083 $changes['pass'] = $INPUT->post->str('newpass'); 1084 $changes['name'] = $INPUT->post->str('fullname'); 1085 $changes['mail'] = $INPUT->post->str('email'); 1088 if ($changes['pass'] != $INPUT->post->str('passchk')) { 1094 $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name'])); 1095 $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail'])); 1099 (empty($changes['name']) && $auth->canDo('modName')) || 1100 (empty($changes['mail']) && $auth->canDo('modMail')) 1105 if (!mail_isvalid($changes['mail']) && $auth->canDo('modMail')) { [all …]
|
| /dokuwiki/inc/Subscriptions/ |
| H A D | BulkSubscriptionSender.php | 72 $changes = getRecentsSince($lastupdate, null, getNS($target)); 79 $changes = [$meta['last_change']]; 84 foreach ($changes as $rev) {
|
| /dokuwiki/lib/plugins/authad/ |
| H A D | auth.php | 577 * @param array $changes array of field/value pairs to be changed 580 public function modifyUser($user, $changes) argument 590 if (isset($changes['pass'])) { 592 $return = $adldap->user()->password($this->getUserName($user), $changes['pass']); 602 if (isset($changes['name'])) { 604 $parts = explode(' ', $changes['name']); 607 $adchanges['display_name'] = $changes['name']; 609 if (isset($changes['mail'])) { 610 $adchanges['email'] = $changes['mail'];
|
| /dokuwiki/inc/Extension/ |
| H A D | AuthPlugin.php | 290 … * @param array $changes array of field/value pairs to be changed (password will be clear text) 293 public function modifyUser($user, $changes) argument
|
| /dokuwiki/lib/plugins/authplain/ |
| H A D | auth.php | 180 …* @param array $changes array of field/value pairs to be changed (password will be clear text) 183 public function modifyUser($user, $changes) argument 200 if (!is_array($changes) || $changes === []) return true; 204 foreach ($changes as $field => $value) {
|
| /dokuwiki/lib/tpl/dokuwiki/ |
| H A D | style.ini | 4 ; To extend this file or make changes to it, it is recommended to create 6 ; any changes after an upgrade. 7 ; Please don't forget to copy the section your changes should be under
|
| /dokuwiki/lib/plugins/config/lang/en/ |
| H A D | intro.txt | 7 Remember to press the **Save** button before leaving this page otherwise your changes will be lost.
|
| /dokuwiki/vendor/aziraphale/email-address-validator/ |
| H A D | README.md | 28 …^1` as the version constraint (which will allow for backwards-compatible changes to be installed, … 34 …rementioned changes, the way of using this class has completely changed. However it has such a sma…
|
| /dokuwiki/inc/Remote/ |
| H A D | ApiCore.php | 370 $changes = []; 372 $changes[] = new PageChange( 383 return $changes; 801 $changes = []; 803 $changes[] = new MediaChange( 814 return $changes;
|
| /dokuwiki/lib/plugins/authldap/ |
| H A D | auth.php | 320 * @param array $changes array of field/value pairs to be changed (password will be clear text) 323 public function modifyUser($user, $changes) argument 369 $hash = $changes['pass']; 372 $hash = $phash->hash_ssha($changes['pass']);
|
| /dokuwiki/data/pages/wiki/ |
| H A D | dokuwiki.txt | 28 * [[doku>changes|Change Log]]
|
| /dokuwiki/_test/data/pages/wiki/ |
| H A D | dokuwiki.txt | 28 * [[doku>changes|Change Log]]
|