| /dokuwiki/lib/plugins/authpdo/_test/mysql/ |
| H A D | wordpress.php | 5 …* Wordpress has no proper groups. This configures the default access permissions as groups. Better… 12 'select-user' => ' 13 SELECT ID AS uid, 21 'select-user-groups' => ' 22 SELECT CONCAT("group",meta_value) AS `group` 27 'select-groups' => '', 28 'insert-user' => '', 29 'delete-user' => '', 30 'list-users' => ' 31 SELECT DISTINCT user_login AS user [all …]
|
| H A D | fluxbb.php | 10 'select-user' => ' 11 SELECT id AS uid, 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' => ' 39 SELECT DISTINCT username AS user [all …]
|
| H A D | mybb.php | 13 'select-user' => ' 14 SELECT uid, 21 'check-pass' => ' 22 SELECT uid 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' => ' [all …]
|
| /dokuwiki/lib/plugins/authpdo/ |
| H A D | auth.php | 10 * @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 D | sqlite.test.php | 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,… 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… 56 $conf['plugin']['authpdo']['delete-user'] = 'DELETE FROM user WHERE id = :uid'; [all …]
|
| /dokuwiki/lib/plugins/authpdo/conf/ |
| H A D | metadata.php | 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'); 22 $meta['update-user-login'] = array('', '_caution' => 'danger'); [all …]
|
| H A D | default.php | 15 * statement to select a single user identified by its login name 20 $conf['select-user'] = ''; 28 $conf['check-pass'] = ''; 31 * statement to select a single user identified by its login name 36 $conf['select-user-groups'] = ''; 39 * Select all the existing group names 43 $conf['select-groups'] = ''; 50 $conf['insert-user'] = ''; 57 $conf['delete-user'] = ''; 67 $conf['list-users'] = ''; [all …]
|
| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| H A D | django.php | 10 'select-user' => ' 11 SELECT id AS uid, 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' => ' 42 SELECT DISTINCT U.username AS "user" [all …]
|
| H A D | django.sql | 1 -- 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 D | mysql.conf.php.example | 12 * TABLE groups 48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", … 66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass 69 JOIN groups AS g ON g.gid=ug.gid 85 $conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name,… 89 /* This statement is used to get all groups a user is member of. The 90 * result should be a table containing all groups the given user is 97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group` 98 FROM groups g, users u, usergroup ug 121 $conf['plugin']['authmysql']['getUsers'] = "SELECT DISTINCT login AS user [all …]
|
| /dokuwiki/lib/scripts/ |
| H A D | textselection.js | 20 return this.end - this.start; 31 * @link http://groups.drupal.org/node/1210 33 * @link http://linebyline.blogspot.com/2006/11/textarea-cursor-position-in-internet.html 34 * @returns object - a selection object 53 * @link http://groups.drupal.org/node/1210 92 if(opts.endofs) selection.end -= opts.endofs; 117 if(text.charAt(text.length - 1) == ' '){ 118 selection.end--; 123 // nothing selected, use the sample text and select it
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | oracle8.php | 4 * ----------- 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 D | abap.php | 4 * -------- 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 D | actionscript3.php | 4 * ---------------- 30 * ------- 32 * - Added the 'this' keyword (oops) 35 * ------------------------- 53 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 142 'selectable', 'select', 'seek', 'securityError', 'securityDomain', 303 'SHIFT', 'SETTINGS_MANAGER', 'SELECT', 'SECURITY_ERROR', 'SCROLL', 346 //in other keyword groups, that might get highlighted as part of the URL. 347 //I know this is not a proper work-around, but should do just fine. 398 …'(', ')', '[', ']', '{', '}', '!', '%', '&', '*', '|', '/', '<', '>', '^', '-', '+', '~', '?', ':'… [all …]
|
| H A D | mysql.php | 4 * --------- 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 …]
|
| H A D | bash.php | 4 * -------- 13 * ------- 15 * - Added loads of keywords and commands of GNU/Linux 16 * - Added support for parameters starting with a dash 18 * - Added description of extra language features (SF#1970248) 20 * - PARSER_CONTROL patch using SF #1788408 (BenBE) 22 * - Added a lot of keywords (BenBE / Jan G) 24 * - Added support for multiple object splitters 26 * - Added support for URLs 28 * - First Release [all …]
|
| /dokuwiki/inc/ |
| H A D | mail.php | 14 * 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}… 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]/'; 127 $iLastChar = ord($sLine[$iLength - 1]); [all …]
|
| /dokuwiki/lib/plugins/acl/ |
| H A D | admin.php | 41 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_item = ['id' => cleanID($INPUT->str('current_id')), 'type' => 'f']; 81 } elseif ($this->ns) { 82 $this->current_item = ['id' => $this->ns, 'type' => 'd']; [all …]
|
| /dokuwiki/ |
| H A D | install.php | 3 /*><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 D | adLDAP.php | 12 * 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 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 184 if ($this->ldapConnection) { 185 return $this->ldapConnection; 196 return $this->ldapBind; 205 return $this->baseDn; 221 if (!$this->groupClass) { [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
| H A D | SSH2.php | 4 * 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 …]
|