Home
last modified time | relevance | path

Searched +full:join +full:- +full:group -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 29) sorted by relevance

12

/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php20 $conf['select-user'] = '';
28 $conf['check-pass'] = '';
34 * return: group
36 $conf['select-user-groups'] = '';
39 * Select all the existing group names
41 * return: group, [gid], [*]
43 $conf['select-groups'] = '';
50 $conf['insert-user'] = '';
57 $conf['delete-user'] = '';
64 * input: :user, :name, :mail, :group, :start, :end, :limit
[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'] = array('', '_caution' => 'danger');
20 $meta['count-users'] = array('', '_caution' => 'danger');
21 $meta['update-user-info'] = array('', '_caution' => 'danger');
22 $meta['update-user-login'] = array('', '_caution' => 'danger');
[all …]
/dokuwiki/lib/plugins/authpdo/_test/mysql/
H A Dfluxbb.php4 * only be in a single group.
10 'select-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' => '
34 'delete-user' => '
38 'list-users' => '
42 AND G.g_title LIKE :group
[all …]
H A Dwordpress.php5 …dpress has no proper groups. This configures the default access permissions as groups. Better group
12 'select-user' => '
21 'select-user-groups' => '
22 SELECT CONCAT("group",meta_value) AS `group`
27 'select-groups' => '',
28 'insert-user' => '',
29 'delete-user' => '',
30 'list-users' => '
35 AND CONCAT("group", M.meta_value) LIKE :group
43 'count-users' => '
[all …]
H A Dmybb.php5 * mybb stores additional group ids in a commaseparated list of mybb_users.addtionalgroups This
13 'select-user' => '
21 'check-pass' => '
27 'select-user-groups' => '
28 SELECT UG.title AS `group`,
35 'select-groups' => '
36 SELECT gid, title AS `group`
39 'insert-user' => '
45 'delete-user' => '
49 'list-users' => '
[all …]
/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.php10 'select-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' => '
34 'delete-user' => '
41 'list-users' => '
46 AND G.name LIKE :group
54 'count-users' => '
[all …]
/dokuwiki/conf/
H A Dmysql.conf.php.example64 * %{dgroup} default group name
68 JOIN users AS u ON u.uid=ug.uid
69 JOIN groups AS g ON g.gid=ug.gid
91 * member of. The plugin accesses the group name as 'group' so an alias
97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group`
119 * %{group} in FilterGroup group name
123 LEFT JOIN usergroup AS ug ON u.uid=ug.uid
124 LEFT JOIN groups AS g ON ug.gid=g.gid";
128 $conf['plugin']['authmysql']['FilterGroup'] = "name LIKE '%{group}'";
148 SUBSTRING_INDEX('%{name}',' ', -1))";
[all …]
/dokuwiki/_test/tests/general/
H A Dgeneral_html.test.php6 * @group internet
29 …['/doku.php', 'GET', ['id' => 'wiki:syntax', 'ns' => 'wiki', 'image' => 'wiki:dokuwiki-128.png', '…
30 … ['/lib/exe/detail.php', 'GET', ['id' => 'wiki:syntax', 'media' => 'wiki:dokuwiki-128.png']],
44 $http->headers['Content-Type'] = 'text/html; charset=utf-8';
45 $result = $http->post('https://validator.w3.org/nu/?out=json&level=error', $html);
48 throw new \Exception($http->error);
69 if ($this->isAllowedError($msg['message'])) continue;
83 $re = join('|', array_map('preg_quote_cb', $this->allowedErrors));
92 * @group internet
98 $response = $request->get($data, $url);
[all …]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
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'),
48 conf_decodeString($this->getConf('pass')),
[all …]
/dokuwiki/lib/plugins/authpdo/_test/
H A Dsqlite.test.php17 public function addGroup($group) { argument
18 return parent::addGroup($group);
25 * @group plugin_authpdo
26 * @group plugins
34 … $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;
51 …$conf['plugin']['authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS clear,…
[all …]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php24 protected $group = ''; variable in splitbrain\\PHPArchive\\FileInfo
36 $this->mtime = time();
37 $this->setPath($path);
77 $file->setPath($path);
78 $file->setIsdir(is_dir($path));
79 $file->setMode(fileperms($path));
80 $file->setOwner(fileowner($path));
81 $file->setGroup(filegroup($path));
82 $file->setSize(filesize($path));
83 $file->setUid($stat['uid']);
[all …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dsass.php4 * -------
13 * -------
15 * - First Release
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
52 'background-attachment',
53 'background-color',
54 'background-image',
55 'background-position',
56 'background-repeat',
58 'border-bottom-color',
[all …]
H A Dpowershell.php4 * ---------------------------------
20 * -------
22 * - First Release
25 * -------------------------
26 * - Color text between Cmdlets/Aliases and pipe/end-of-line
27 * - Try and get -- and ++ to work in the KEYWORDS array with the other operators
45 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
59 … 'Add-Content', 'Add-History', 'Add-Member', 'Add-PSSnapin', 'Clear-Content', 'Clear-Item',
60 'Clear-ItemProperty', 'Clear-Variable', 'Compare-Object', 'ConvertFrom-SecureString',
61 … 'Convert-Path', 'ConvertTo-Html', 'ConvertTo-SecureString', 'Copy-Item', 'Copy-ItemProperty',
[all …]
H A Doxygene.php4 * ----------
14 * -------
16 * - New keywords & updated languge name
18 * - Added "write" keyword for properties
20 * - First Release
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
70 'Implies', 'Select', 'Order', 'By', 'Desc', 'Asc', 'Group', 'Join', 'Take',
91 3 => array('=', '+', '-', '*', '/')
95 1 => 'color: #000000; font-weight: bold;',
96 2 => 'color: #000000; font-weight: bold;',
[all …]
H A Dsql.php4 * -------
7 * - Jürgen Thomas (Juergen.Thomas@vs-polis.de)
15 * -------
17 * - Added many more keywords
19 * - Added additional symbols for highlighting
21 * - Added support for multiple object splitters
23 * - Added "`" string delimiter
24 * - Added "#" single comment starter
26 * - Added support for symbols
27 * - Added many more keywords (mostly MYSQL keywords)
[all …]
H A Dxpp.php4 * -------
11 * For details, see <http://msdn.microsoft.com/en-us/library/aa867122.aspx>
14 * -------
16 * - First Release
19 * -------------------------
37 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
329 'join',
333 'group by',
362 '-',
390 'MULTI' => 'color: #007f00; font-style: italic;'
H A Dgenero.php4 * ----------
13 * -------
15 * - Initial release
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
39 'COMMENT_SINGLE' => array(1 => '--', 2 => '#'),
162 "GROUP",
186 "JOIN",
398 '+', '-', '*', '?', '=', '/', '%', '>', '<', '^', '!', '|', ':',
411 2 => 'color: #0000FF; font-weight: bold;',
416 1 => 'color: #008080; font-style: italic;',
[all …]
H A Dvbnet.php4 * ---------
13 * -------
15 * - Initial release
18 * -------------------------
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
81 'By','From','Group','Where'
83 //Built-in functions
94 'ISERROR', 'ISNULL', 'ISNUMERIC', 'ISOBJECT', 'JOIN', 'LBOUND', 'LCASE', 'LCASE$',
106 '+', '-', '*', '?', '=', '/', '%', '&', '>', '<', '^', '!',
120 1 => 'color: #0000FF; font-weight: bold;', //Keywords
[all …]
H A Dcsharp.php4 * ----------
14 * -------
16 * - Added C# 5.0 and 6.0 missing keywords and #pragma directive
18 * - Added missing keywords (Christian Stelzmann)
20 * - Added missing keywords identified by Rosetta Code users.
22 * - Added highlighting of using and namespace directives as non-OOP
24 * - Used hardquote support for @"..." strings (Cliff Stanford)
26 * - Initial release
29 * -------------------------
47 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
[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
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
58 …WORDS' => GESHI_CAPS_NO_CHANGE, // @@@ would be nice if this could be defined per group!
85 'FUNCTION','GLOBAL','GRANT','GROUP BY','HANDLER','HASH','HAVING',
88 'ISOLATION LEVEL','JOIN','KEYS','KEY','KILL','LANGUAGE SQL','LAST',
[all …]
H A Dpostgresql.php4 * -----------
6 * Contributors: Leif Biberg Kristensen <leif_at_solumslekt_dot_org> 2010-05-03
14 * -------
16 * - First Release
19 * -------------------------
37 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
43 'COMMENT_SINGLE' => array(1 => '--'),
71 'GLOBAL','GRANT','GRANTED','GREATEST','GROUP','HANDLER','HAVING',
76 'ISNULL','ISOLATION','JOIN','KEY','LANCOMPILER','LANGUAGE','LARGE',
215 1 => 'color: #000000; font-weight: bold; text-transform: uppercase;',
[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 Dracket.php4 * ----------
6 * Copyright: (c) 2013 Tim Brown ((https://github.com/tim-brown/geshi-racket))
8 * Date Started: 2013-03-01
13 * https://github.com/tim-brown/geshi-racket (you didn't think
18 * -------
19 * 1.0 (2013-03-31)
20 * - Initial Release1.1 (2013-03-31)
21 * - Added URLs, "symbol"-like identifiers moved to SYMBOLS*
23 * TODO (updated 2013-04-25)
24 * -------------------------
[all …]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland
31 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland
32 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
53 $this->adldap = $adldap;
67 for ($i=0; $i<$groups["count"]; $i++){ // For each group
72 // so we ditch the first three characters and the group
75 $groupArray[] = substr($bits[0], 3, (strlen($bits[0])-3));
105 '/([\x00-\x1F\*\(\)\\\\])/',
107 return "\\".join("", unpack("H2", $matches[1]));
120 $strGUID = str_replace('-', '', $strGUID);
[all …]
/dokuwiki/_test/tests/inc/
H A Dmailer.test.php10 return $this->$name;
14 return $this->$name;
28 * @group mailer_class
35 $headers = $mail->prop('headers');
36 $this->assertArrayNotHasKey('X-Dokuwiki-User',$headers);
40 $headers = $mail->prop('headers');
41 $this->assertArrayHasKey('X-Dokuwiki-User',$headers);
48 $headers = $mail->prop('headers');
49 $this->assertArrayHasKey('X-Mailer',$headers);
50 $this->assertArrayHasKey('X-Dokuwiki-Title',$headers);
[all …]

12