Home
last modified time | relevance | path

Searched +full:list +full:- +full:users -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 36) sorted by last modified time

12

/dokuwiki/lib/plugins/authpdo/
H A Dauth.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
22 /** @var null|array The list of all groups */
33 $this->debugMsg('PDO extension for PHP not found.', -1, __LINE__);
34 $this->success = false;
38 if (!$this->getConf('dsn')) {
39 $this->debugMsg('No DSN specified', -1, __LINE__);
40 $this->success = false;
45 $this->pd
387 deleteUsers($users) global() argument
[all...]
/dokuwiki/lib/plugins/acl/
H A Dadmin.php41 return $this->getLang('admin_acl');
71 if ($INPUT->str('ns') == '*') {
72 $this->ns = '*';
74 $this->ns = cleanID($INPUT->str('ns'));
77 if ($INPUT->str('current_ns')) {
78 $this->current_item = ['id' => cleanID($INPUT->str('current_ns')), 'type' => 'd'];
79 } elseif ($INPUT->str('current_id')) {
80 $this->current_ite
[all...]
/dokuwiki/inc/
H A Dtemplate.php120 $router->getAction()->tplContent();
123 msg(hsc($e->getMessage()), -1);
165 $toc = $plugin->getTOC();
191 $class = $INPUT->str('page');
203 if (!is_array($TOC)) $TOC = $plugin->getTOC(); //if TOC wasn't requested yet
205 $plugin->html();
208 $admin->show();
277 $styleIni = $styleUtil->cssStylein
[all...]
H A Dcommon.php34 return htmlspecialchars($string, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, 'UTF-8');
94 return preg_replace('/[\x00-\x1F]+/s', '', $string);
101 * @link http://en.wikipedia.org/wiki/Cross-site_request_forgery
102 * @link http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html
111 $user = $INPUT->server->str('REMOTE_USER');
114 // CSRF checks are only for logged in users - do not generate for anonymous
129 if (!$INPUT->serve
[all...]
H A Dinfoutils.php43 if ($lm < time() - (60 * 60 * 24) || $lm < @filemtime(DOKU_INC . DOKU_SCRIPT)) {
53 $http->timeout = 12;
54 $resp = $http->get(DOKU_MESSAGEURL . $updateVersion);
60 Logger::debug("checkUpdateMessages(): unexpected HTTP response received", $http->error);
94 $commitInfo = shell_exec("git log -1 --pretty=format:'%h %cd' --date=short");
102 // we cannot use git on the shell -
[all...]
H A Dauth.php53 foreach ($plugin_controller->getList('auth') as $plugin) {
55 $auth = $plugin_controller->load('auth', $plugin);
61 msg($lang['authtempfail'], -1);
65 if ($auth->success == false) {
69 msg($lang['authtempfail'], -1);
74 $INPUT->set('http_credentials', false);
75 if (!$conf['rememberme']) $INPUT->set('r', false);
79 $header = $INPUT->server->str('HTTP_AUTHORIZATION') ?: $INPUT->serve
[all...]
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php22 $options->setHelp(
23 "Manage users for this DokuWiki instance\n"
26 // list
27 $options->registerCommand('list', 'List users');
28 $options->registerOption('verbose', 'Show detailed user information', 'v', false, 'list');
31 $options->registerComman
[all...]
H A Dadmin.php28 protected $users_total = 0; // number of registered users
32 protected $pagesize = 20; // number of users to list on one page
47 $this->setupLocale();
50 $this->disabled = $this->lang['noauth'];
51 } elseif (!$auth->canDo('getUsers')) {
52 $this->disabled = $this->lang['nosupport'];
55 $this->aut
[all...]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dvisualfoxpro.php4 * ----------
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php13 * Send digest and list subscriptions
27 if (!$subscriberManager->isenabled()) {
39 $subscriptions = $subscriberManager->subscribers($page, null, ['digest', 'list']);
43 $olduser = $INPUT->server->str('REMOTE_USER');
45 foreach ($subscriptions as $target => $users) {
46 if (!$this->lock($target)) {
50 foreach ($users as $user => $info) {
61 $USERINFO = $auth->getUserDat
[all...]
H A DSubscriberManager.php39 if (!$this->isenabled()) {
44 $this->remove($id, $user);
61 $file = $this->file($id);
83 if (!$this->isenabled()) {
87 $file = $this->file($id);
93 $re = $regexBuilder->buildRegex($user, $style, $data);
114 if (!$this->isenabled()) {
125 $user = $INPUT->server->str('REMOTE_USER');
133 $subs = $this->subscriber
[all...]
/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
32 $this->facilities = $this->getFacilities();
33 $this->facility = $INPUT->str('facility');
34 if (!in_array($this->facility, $this->facilities)) {
35 $this->facility = $this->facilities[0];
38 $this->dat
[all...]
/dokuwiki/inc/parser/
H A Drenderer.php17 define('PREG_PATTERN_VALID_LANGUAGE', '#[^a-zA-Z0-9\-_]#');
49 /** @var array the list of headers used to create unique link ids */
58 * clean out any per-use values
65 $this->headers = [];
66 $this->doc = '';
67 $this->info['cache'] = true;
68 $this->inf
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
/dokuwiki/inc/Remote/
H A DApiCore.php35 'core.getAPIVersion' => (new ApiCall([$this, 'getAPIVersion'], 'info'))->setPublic(),
38 'core.getWikiTitle' => (new ApiCall([$this, 'getWikiTitle'], 'info'))->setPublic(),
41 'core.login' => (new ApiCall([$this, 'login'], 'user'))->setPublic(),
106 * Returns a Unix timestamp (seconds since 1970-01-01 00:00:00 UTC).
145 if ($auth->canDo('external')) {
146 $ok = $auth->trustExternal($user, $pass, false);
213 $page = $this->checkPage($page, 0, false, AUTH_NONE);
219 $userinfo = $auth->getUserData($user);
235 * List al
[all...]
/dokuwiki/conf/
H A Dmysql.conf.php.example9 * TABLE users
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
68 JOIN users AS u ON u.uid=ug.uid
86 FROM users
98 FROM groups g, users u, usergroup ug
110 * Important is that this list contains no double entries for a user. Each
122 FROM users AS u
132 /* Additional SQL statements to add new users with the user manager */
144 $conf['plugin']['authmysql']['addUser'] = "INSERT INTO users
[all...]
H A Ddokuwiki.php22 $conf['license'] = 'cc-by-nc-sa'; //see conf/license.php
24 $conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection
25 $conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect
26 $conf['cookiedir'] = ''; //path to use in cookies - blank for basedir
39 $conf['signature'] = ' --- //[[@MAIL@|@NAME@]] @DATE@//'; //signature see wiki page for details
40 $conf['showuseras'] = 'loginname'; // 'loginname' users logi
[all...]
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt3 [[doku>wiki:dokuwiki|{{wiki:dokuwiki-128.png }}]] DokuWiki is a simple to use and highly versatile Open Source [[wp>wiki]] software that doesn't require a database. It is loved by users for its clean and readable [[wiki:syntax]]. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in [[doku>acl|access controls]] and [[doku>auth|authentication connectors]] make DokuWiki especially useful in the enterprise context and the large number of [[doku>plugins]] contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.
18 * [[doku>features|A feature list]] :!:
19 * [[doku>users|Happy Users]]
49 * [[doku>mailinglist|Join the mailing list]]
51 * [[doku>irc|Talk to other users in the IRC channel]]
58 2004-2020 (c) Andreas Gohr <andi@splitbrain.org>((Please do not contact me for help and support -- us
[all...]
H A Dsyntax.txt38 External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too.
41 automagically: http://www.google.com or simply www.google.com - You can set
86 * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/lang/en/lang.php'' (more details at [[doku>localization#changing_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang.php>
99 [[http://php.net|{{wiki:dokuwiki-128.png}}]]
101 [[http://php.net|{{wiki:dokuwiki-128.png}}]]
115 You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''<nowiki>~~NOTOC~~</nowiki>'' in the document.
127 --
[all...]
/dokuwiki/inc/Ui/
H A DRecent.php28 $this->first = $first;
29 $this->show_changes = $show_changes;
36 * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
49 $first = $this->first;
51 $recents = $this->getRecents($first, $hasNext);
64 $form->addTagOpen('div')->addClass('no');
65 $form->setHiddenField('sectok', null);
66 $form->setHiddenField('do', 'recent');
67 $form->setHiddenFiel
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php4 * Pure-PHP X.509 Parser
11 * {@link http://web.archive.org/web/19961027104704/http://www3.netscape.com/eng/security/cert-exts.html Netscape Certificate Extensions}.
17 * the certificate all together unless the certificate is re-signed.
21 * @license http://www.opensource.org/licenses/mit-license.html MIT License
43 * Pure-PHP X.509 Parser
97 * ie. a base64-encoded PEM with a header and a footer
123 * Auto-detect the format
137 const ATTR_ALL = -1; // All attribute values (array).
138 const ATTR_APPEND = -2; // Add a value.
139 const ATTR_REPLACE = -
[all...]
/dokuwiki/lib/plugins/authldap/
H A Dauth.php13 * @author Jan Schumann <js@schumann-it.com>
23 /* @var array $users User data cache */
24 protected $users;
38 $this->debug("LDAP err: PHP LDAP extension not found.", -1, __LINE__, __FILE__);
39 $this->success = false;
44 $this->cando['modPass'] = $this->getConf('modPass');
63 if (!$this->openLDAP()) return false;
66 if ($this->getCon
21 protected $users = null; global() variable in auth_plugin_authldap
[all...]
/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php20 $conf['select-user'] = '';
28 $conf['check-pass'] = '';
36 $conf['select-user-groups'] = '';
43 $conf['select-groups'] = '';
50 $conf['insert-user'] = '';
57 $conf['delete-user'] = '';
60 * list user names matching the given criteria
62 * Make sure the list is distinct and sorted by user name. Apply the given limit and offset
67 $conf['list
[all...]
H A Dmetadata.php13 $meta['select-user'] = array('', '_caution' => 'danger');
14 $meta['check-pass'] = array('', '_caution' => 'danger');
15 $meta['select-user-groups'] = array('', '_caution' => 'danger');
16 $meta['select-groups'] = array('', '_caution' => 'danger');
17 $meta['insert-user'] = array('', '_caution' => 'danger');
18 $meta['delete-user'] = array('', '_caution' => 'danger');
19 $meta['list-users']
[all...]
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG2 CHANGES - Changelog for GeSHi (geshi.php only)
5 it by each one (if there's nobody listed as suggesting it I dreamed it up :)). Users
7 changes - thanks to all who suggested these ideas and gave me the code to show me how!
16 - Added language files
20 - Some minor tweaks for RFC822 email support (BenBE)
21 - Introduce strip_language function (phy25)
22 - Recognize additional file extensions (RealityRipple)
23 - Code style update by avoiding create_function (cweiske)
24 - Backported CLI tool from GeSHi 1.1 branch (cweiske)
25 - Improvement
[all...]

12