| /dokuwiki/lib/plugins/authpdo/_test/mysql/ |
| H A D | fluxbb.php | 3 …ion for fluxbb. They have a very simplistic model. There is no separate display name and a user can 10 'select-user' => ' 12 username AS user, 17 WHERE username = :user 19 'select-user-groups' => ' 25 'select-groups' => ' 29 'insert-user' => ' 30 INSERT INTO fluy_users 32 VALUES (0, :user, :hash, :mail) 34 'delete-user' => ' [all …]
|
| H A D | mybb.php | 13 'select-user' => ' 15 username AS user, 19 WHERE username = :user 21 'check-pass' => ' 24 WHERE username = :user 27 'select-user-groups' => ' 35 'select-groups' => ' 39 'insert-user' => ' 41 INSERT INTO mybb_users 43 …VALUES (:user, :mail, @salt, MD5(CONCAT(MD5(@salt), MD5(:clear))), UNIX_TIMESTAMP() ) … [all …]
|
| H A D | wordpress.php | 12 'select-user' => ' 14 user_login AS user, 19 WHERE user_login = :user 21 'select-user-groups' => ' 27 'select-groups' => '', 28 'insert-user' => '', 29 'delete-user' => '', 30 'list-users' => ' 31 SELECT DISTINCT user_login AS user 36 AND U.user_login LIKE :user [all …]
|
| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| H A D | django.php | 10 'select-user' => ' 12 username AS "user", 17 WHERE username = :user 19 'select-user-groups' => ' 25 'select-groups' => ' 29 'insert-user' => ' 30 INSERT INTO auth_user 32 …VALUES (:hash, false, :user, SPLIT_PART(:name,\' \',1), SPLIT_PART(:name,\' \',2), :mail, false, t… 34 'delete-user' => ' 41 'list-users' => ' [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/lib/plugins/authpdo/conf/ |
| H A D | metadata.php | 11 $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 D | default.php | 11 $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/ |
| 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; 48 $conf['plugin']['authpdo']['user'] = ''; 51 …plugin']['authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS clear, mail F… 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/ |
| H A D | auth.php | 10 * @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/conf/ |
| H A D | mysql.conf.php.example | 27 $conf['plugin']['authmysql']['user'] = ''; 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 70 WHERE login='%{user}' 74 * information about one user. The field needed are: 76 * 'name' the user's full name 77 * 'mail' the user's email address 83 * %{user} user name 87 WHERE login='%{user}'"; [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | MySQL.php | 3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue 4 // SPDX-License-Identifier: BSD-3-Clause 16 * connect to the `mydb` database on `localhost` on port 3306, with the user 53 $this->options = [ 54 'user' => null, 65 … $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location)); 68 $this->options['dbname'] = substr($this->options['path'], 1); 71 …->mysql = new \PDO("mysql:dbname={$this->options['dbname']};host={$this->options['host']};port={$t… 73 $this->mysql = null; 77 $this->id = $name . $type; [all …]
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | progress.php | 4 * -------- 13 * ------- 15 * - First Release 18 * ------------------------- 39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 53 'BUFFER-COMPARE','BUFFER-COPY','CALL','CASE', 55 'CLOSE STORED-PROCEDURE','COLOR','COMPILE','CONNECT', 56 'CONSTRUCTOR','COPY-LOB','CREATE','CREATE ALIAS', 57 'CREATE BROWSE','CREATE BUFFER','CREATE CALL','CREATE CLIENT-PRINCIPAL', 58 'CREATE DATABASE','CREATE DATASET','CREATE DATA-SOURCE','CREATE QUERY', [all …]
|
| H A D | oorexx.php | 4 * --------------------------------- 7 * - Walter Pachl (pachl@chello.at) 15 * ------- 17 * - tried to get it syntactically right 20 * ------------------------- 21 * - Get it working on rosettacode.org 39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 45 'COMMENT_SINGLE' => array(1 => '--'), 69 'unprotected', 'until', 'user', 88 'errortext', 'filespec', 'form', 'format', 'fuzz', 'insert', [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 | sql.php | 4 * ------- 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 D | genero.php | 4 * ---------- 13 * ------- 15 * - Initial release 33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 39 'COMMENT_SINGLE' => array(1 => '--', 2 => '#'), 179 "INSERT", 331 "USER", 398 '+', '-', '*', '?', '=', '/', '%', '>', '<', '^', '!', '|', ':', 411 2 => 'color: #0000FF; font-weight: bold;', 416 1 => 'color: #008080; font-style: italic;', [all …]
|
| H A D | cobol.php | 4 * ---------- 6 * Copyright: (c) 2007-2008 BenBE (http://www.omorphia.de/) 18 * ------- 20 * - Changed compiler directives to be handled like comments. 21 * - Fixed bug where keywords in identifiers were highlighted. 23 * - Added more intrinsic functions, reserved words, and compiler directives 26 * - Added more reserved words, compiler directives and intrinsic functions. 27 * - Added modern comment syntax and corrected the other one. 28 * - Set OOLANG to true and added an object splitter. 29 * - Added extra symbols. [all …]
|
| 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 | oracle11.php | 4 * ----------- 7 * - Updated for 11i by Simon Redhead 15 * ------- 17 * - SR changes to oracle8.php to support Oracle 11i reserved words. 19 * - First Release 22 * ------------------------- 40 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 46 'COMMENT_SINGLE' => array(1 => '--'), 52 //Put your package names here - e.g. select distinct ''''|| lower(name) || ''',' from user_source; 56 //Put your table names here - e.g. select distinct ''''|| lower(table_name) || ''',' from user_tabl… [all …]
|
| H A D | postgresql.php | 4 * ----------- 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 => '--'), 75 'INSENSITIVE','INSERT','INSTEAD','INTERSECT','INTO','INVOKER','IS', 103 'UPDATE','USER','USING','VACUUM','VALID','VALIDATOR','VALUE', 215 1 => 'color: #000000; font-weight: bold; text-transform: uppercase;', [all …]
|
| H A D | plsql.php | 4 * ------- 14 * ------- 16 * - First Release 19 * ------------------------- 39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 45 …'COMMENT_SINGLE' => array(1 =>'--'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/… 46 …'COMMENT_MULTI' => array('/*' => '*/'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.9… 48 …'QUOTEMARKS' => array("'", '"'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a966… 51 …//PL/SQL reserved keywords (http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/f_wo… 69 'INTEGER', 'INSERT', 'INDICATOR', 'INDEX', 'IN', 'IMMEDIATE', 'IF', [all …]
|
| /dokuwiki/inc/ |
| H A D | toolbar.php | 26 if ($evt->advise_before()) { 98 'mod' => -1, 172 'open' => ' - ', 174 'key' => '-', 187 'type' => 'insert', 190 'insert' => '\n----\n', 249 $evt->advise_after(); 270 $sig = str_replace('@USER@', $INPUT->server->str('REMOTE_USER'), $sig);
|
| H A D | html.php | 33 define('SEC_EDIT_PATTERN', '#<!-- EDIT({.*?}) -->#'); 54 return $xhtml_renderer->internallink($id, $name, $search, true, 'navigation'); 63 * @deprecated 2020-07-18 68 (new Login($svg))->show(); 75 * @deprecated 2020-07-18 not called anymore, see inc/Action/Denied::tplContent() 80 (new Denied())->showBanner(); 195 * @param string[] $params key-value pairs added as hidden inputs 253 * @deprecated 2020-07-18 266 * @deprecated 2020-07-18 271 (new PageView($txt))->show(); [all …]
|
| /dokuwiki/inc/Ui/ |
| H A D | PageDiff.php | 42 $this->preference['showIntro'] = true; 43 $this->preference['difftype'] = 'sidebyside'; // diff view type: inline or sidebyside 51 $this->changelog = new PageChangeLog($this->id); 65 $this->text = $text; 66 $changelog =& $this->changelog; 69 $info = $changelog->getCurrentRevisionInfo(); 70 $this->RevInfo1 = new RevisionInfo($info); 71 $this->RevInfo1->append([ 73 'text' => rawWiki($this->id), 77 $this->RevInfo2 = new RevisionInfo(); [all …]
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 3 * phpQuery is a server-side, chainable, CSS3 selector driven 8 * @link http://phpquery-library.blogspot.com/ 11 * @license http://www.opensource.org/licenses/mit-license.php MIT License 13 * @deprecated 2022-10-19 68 * The explicit original target of the event (Mozilla-specific). 76 * The original target of the event, before any retargetings (Mozilla-specific). 102 * Returns the name of the event (case-insensitive). 109 $this->$k = $v; 111 if (! $this->timeStamp) 112 $this->timeStamp = time(); [all …]
|