Home
last modified time | relevance | path

Searched +full:select +full:- +full:user +full:- +full:groups -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 18 of 18) sorted by relevance

/dokuwiki/lib/plugins/authpdo/_test/mysql/
H A Dwordpress.php5 …* Wordpress has no proper groups. This configures the default access permissions as groups. Better…
12 'select-user' => '
13 SELECT ID AS uid,
14 user_login AS user,
19 WHERE user_login = :user
21 'select-user-groups' => '
22 SELECT CONCAT("group",meta_value) AS `group`
27 'select-groups' => '',
28 'insert-user' => '',
29 'delete-user' => '',
[all …]
H A Dfluxbb.php3 …ion for fluxbb. They have a very simplistic model. There is no separate display name and a user can
10 'select-user' => '
11 SELECT id AS uid,
12 username AS user,
17 WHERE username = :user
19 'select-user-groups' => '
20 SELECT g_title AS `group`
25 'select-groups' => '
26 SELECT g_id AS gid, g_title AS `group`
29 'insert-user' => '
[all …]
H A Dmybb.php13 'select-user' => '
14 SELECT uid,
15 username AS user,
19 WHERE username = :user
21 'check-pass' => '
22 SELECT uid
24 WHERE username = :user
27 'select-user-groups' => '
28 SELECT UG.title AS `group`,
35 'select-groups' => '
[all …]
/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->pdo = new PDO(
46 $this->getConf('dsn'),
47 $this->getConf('user'),
[all …]
/dokuwiki/lib/plugins/authpdo/_test/
H A Dsqlite.test.php34 … $this->markTestSkipped('skipping all authpdo tests for sqlite. Need PDO_sqlite extension');
36 $this->assertTrue(true); // avoid being marked as risky for having no assertion
41 $this->dbfile = tempnam('/tmp/', 'pluginpdo_test_');
42 copy(__DIR__ . '/test.sqlite3', $this->dbfile);
47 $conf['plugin']['authpdo']['dsn'] = 'sqlite:' . $this->dbfile;
48 $conf['plugin']['authpdo']['user'] = '';
51 …f['plugin']['authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS clear, mai…
52 …$conf['plugin']['authpdo']['select-user-groups'] = 'SELECT * FROM member AS m, "group" AS g WHERE…
53 $conf['plugin']['authpdo']['select-groups'] = 'SELECT id AS gid, "group" FROM "group"';
55 …$conf['plugin']['authpdo']['insert-user'] = 'INSERT INTO user (login, pass, name, mail) VALUES (:u…
[all …]
/dokuwiki/lib/plugins/authpdo/conf/
H A Dmetadata.php11 $meta['user'] = array('string', '_caution' => 'danger');
13 $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'] = array('', '_caution' => 'danger');
20 $meta['count-users'] = array('', '_caution' => 'danger');
21 $meta['update-user-info'] = array('', '_caution' => 'danger');
[all …]
H A Ddefault.php11 $conf['user'] = '';
15 * statement to select a single user identified by its login name
17 * input: :user
18 * return: user, name, mail, (clear|hash), [uid], [*]
20 $conf['select-user'] = '';
25 * input: :user, :clear, :hash, [uid], [*]
28 $conf['check-pass'] = '';
31 * statement to select a single user identified by its login name
33 * input: :user, [uid]
36 $conf['select-user-groups'] = '';
[all …]
/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.php10 'select-user' => '
11 SELECT id AS uid,
12 username AS "user",
17 WHERE username = :user
19 'select-user-groups' => '
20 SELECT G.name AS "group"
25 'select-groups' => '
26 SELECT id AS gid, name AS "group"
29 'insert-user' => '
32 …VALUES (:hash, false, :user, SPLIT_PART(:name,\' \',1), SPLIT_PART(:name,\' \',2), :mail, false, t…
[all …]
H A Ddjango.sql1 --
2 -- PostgreSQL database dump
3 --
5 -- Dumped from database version 9.5.1
6 -- Dumped by pg_dump version 9.5.1
14 --
15 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
16 --
21 --
22 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
[all …]
/dokuwiki/conf/
H A Dmysql.conf.php.example12 * TABLE groups
27 $conf['plugin']['authmysql']['user'] = '';
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", …
51 /* Basic SQL statements for user authentication (required) */
56 * of the user. If the result table is empty or contains more than one
62 * %{user} user name
66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass
69 JOIN groups AS g ON g.gid=ug.gid
70 WHERE login='%{user}'
74 * information about one user. The field needed are:
[all …]
/dokuwiki/inc/
H A Dmail.php14 * the pattern uses non-capturing groups as captured groups aren't allowed in the parser
15 * select pattern delimiters with care!
23 if (!defined('RFC2822_ATEXT')) define('RFC2822_ATEXT', "0-9a-zA-Z!#$%&'*+/=?^_`{|}~-");
26 …'[' . RFC2822_ATEXT . ']+(?:\.[' . RFC2822_ATEXT . ']+)*@(?i:[0-9a-z][0-9a-z-]*\.)+(?i:[a-z]{2,63}…
56 // use 'noreply' if no user
57 $replace['@USER@'] = $INPUT->server->str('REMOTE_USER', 'noreply', true);
95 * @author umu <umuAThrz.tu-chemnitz.de>
96 * @link http://php.net/manual/en/function.imap-8bit.php#61216
114 $sRegExp = '/[^\x09\x20\x21-\x3C\x3E-\x7E]/e';
120 $sRegExp = '/[^\x20\x21-\x3C\x3E-\x7E]/';
[all …]
/dokuwiki/lib/plugins/acl/
H A Dadmin.php41 return $this->getLang('admin_acl');
53 * handle user request
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_item = ['id' => cleanID($INPUT->str('current_id')), 'type' => 'f'];
81 } elseif ($this->ns) {
[all …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Doracle8.php4 * -----------
13 * -------
15 * - First Release
18 * -------------------------
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 'COMMENT_SINGLE' => array(1 => '--'),
48 //Put your package names here - e.g. select distinct ''''|| lower(name) || ''',' from user_source;
52 //Put your table names here - e.g. select distinct ''''|| lower(table_name) || ''',' from user_tabl…
56 //Put your view names here - e.g. select distinct ''''|| lower(view_name) || ''',' from user_views;
60 //Put your table field names here - e.g. select distinct ''''|| lower(column_name) || ''',' from us…
[all …]
H A Dabap.php4 * --------
7 * - Sandra Rossi (sandra.rossi@gmail.com)
8 * - Jacob Laursen (jlu@kmd.dk)
17 …P syntax is highly complex, several problems could not be addressed, see TODO below if you dare ;-)
31 * -------
33 * - Some more rework of the language file
35 * - Major Release, more than 1000 statements and keywords added = whole abap 7.1 (Sandra Rossi)
37 * - First Release
40 * ----
41 * - in DATA data TYPE type, 2nd "data" and 2nd "type" are highlighted with data
[all …]
H A Dmysql.php4 * ---------
8 * Date Started: 2008-12-12
13 * up-to-date for current MySQL versions, and with more classes for different
16 * Some "classes" have two groups here: this is to allow for the fact that some
43 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
49 …//'COMMENT_SINGLE' => array(1 =>'--', 2 => '#'), // '--' MUST be folowed by whitespace,not nece…
51 1 =>'-- ',
55 1 => "/(?:--\s).*?$/", // double dash followed by any whitespace
96 'REVOKE','ROLLBACK','ROUTINE','RTREE','SAVEPOINT','SELECT',
153 // Date-time unit specifiers distinguished from functions by the same name
[all …]
/dokuwiki/
H A Dinstall.php3 /*><div style="width:60%; margin: auto; background-color: #fcc;
5 <h1 style="font-size: 120%">No PHP Support</h1>
33 $LC = preg_replace('/[^a-z\-]+/', '', $_REQUEST['l']);
44 header('Content-Type: text/html; charset=utf-8');
49 <meta charset="utf-8"/>
55 font: 84% Verdana, Helvetica, Arial, sans-serif;
67 font-size: 110%;
77 margin-top: 0.5em;
80 select.text, input.text {
86 text-decoration: none
[all …]
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland
30 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland
31 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
43 * based directory. If you bind as a domain user, you can't fetch as
74 * The default port for LDAP non-SSL connections
143 * If you wish to use TLS you should ensure that $useSSL is set to false and vice-versa
159 … * eg. User Fred is a member of Group A, which is a member of Group B, which is a member of Group C
184 if ($this->ldapConnection) {
185 return $this->ldapConnection;
196 return $this->ldapBind;
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php4 * Pure-PHP implementation of SSHv2.
14 * if (!$ssh->login('username', 'password')) {
18 * echo $ssh->exec('pwd');
19 * echo $ssh->exec('ls -la');
30 * if (!$ssh->login('username', $key)) {
34 * echo $ssh->read('username@username:~$');
35 * $ssh->write("ls -la\n");
36 * echo $ssh->read('username@username:~$');
42 * @license http://www.opensource.org/licenses/mit-license.html MIT License
63 use phpseclib3\Crypt\TripleDES; // Used to do Diffie-Hellman key exchange and DSA/RSA signature ver…
[all …]