| /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' => ' 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 D | wordpress.php | 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' => '', 30 'list-users' => ' [all …]
|
| H A D | mybb.php | 13 '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/_test/pgsql/ |
| H A D | django.php | 10 '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 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 | 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 …]
|
| 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 …]
|
| /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/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 …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/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 66 $conf['plugin']['authmysql']['checkPass'] = "SELECT pass 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 [all …]
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _recent.css | 8 /* select type of revisions (media/pages) */ 10 margin-bottom: .5em; 14 list-style: none; 15 margin-left: 0; 18 margin-right: 0; 22 vertical-align: middle; 24 .dokuwiki form.changes ul li span.user a { 25 vertical-align: bottom; 34 vertical-align: baseline; 37 vertical-align: baseline; [all …]
|
| H A D | _diff.css | 8 border-width: 0; 12 vertical-align: top; 14 border-width: 0; 16 background-color: #fff; 22 border-bottom: 1px solid @ini_border; 23 font-size: 110%; 24 font-weight: normal; 27 font-weight: bold; 29 .dokuwiki table.diff th span.user { 30 font-size: .9em; [all …]
|
| /dokuwiki/inc/Menu/ |
| H A D | MobileMenu.php | 28 'page' => $pagemenu->getItems(), 29 'site' => $sitemenu->getItems(), 30 'user' => $usermenu->getItems() 43 $menu = $this->getGroupedItems(); 64 $html = '<form action="' . script() . '" method="get" accept-charset="utf-8">'; 68 if ($INPUT->server->str('REMOTE_USER')) { 72 $html .= '<select name="do" class="edit quickselect" title="' . $lang['tools'] . '">'; 75 foreach ($this->getGroupedItems() as $tools => $items) { 79 $params = $item->getParams(); 81 $html .= hsc($item->getLabel()); [all …]
|
| /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 | 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 | 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 => '--'), 56 'raise', 'reply', 'return', 'say', 'select', 'signal', 69 'unprotected', 'until', 'user', [all …]
|
| H A D | typoscript.php | 4 * -------- 5 * Author: Jan-Philipp Halle (typo3@jphalle.de) 6 * Copyright: (c) 2005 Jan-Philipp Halle (http://www.jphalle.de/) 13 * ------- 15 * - Michiel Roos <geshi@typofree.org> Complete rewrite 17 * - First Release 20 * ------------------------- 21 * <things-to-do> 39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 47 …'COMMENT_REGEXP' => array(2 => '/(?<!(#|\'|"))(?:#(?!(?:[a-fA-F0-9]{6}|[a-fA-F0-9]{3}))[^\n#]+|#{2… [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 | 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 …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | MySQL.php | 6 * A PHP-Based RSS and Atom Feed Framework. 9 * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 37 * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue 42 * @license http://www.opensource.org/licenses/bsd-license.php BSD License 53 * connect to the `mydb` database on `localhost` on port 3306, with the user 92 $this->options = [ 93 'user' => null, 104 … $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location)); 107 $this->options['dbname'] = substr($this->options['path'], 1); 110 …->mysql = new \PDO("mysql:dbname={$this->options['dbname']};host={$this->options['host']};port={$t… [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/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}… 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 D | admin.php | 41 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/inc/HTTP/ |
| H A D | HTTPClient.php | 18 * @author Tobias Sarnowski <sarnowski@new-thoughts.org> 23 public $agent; // User agent 47 public $user; variable in dokuwiki\\HTTP\\HTTPClient 61 // what we use as boundary on multipart/form-data posts 62 protected $boundary = '---DokuWikiHTTPClient--4523452351'; 71 $this->agent = 'Mozilla/4.0 (compatible; DokuWiki HTTP Client; ' . PHP_OS . ')'; 72 if (extension_loaded('zlib')) $this->headers['Accept-encoding'] = 'gzip'; 73 $this->headers['Accept'] = 'text/xml,application/xml,application/xhtml+xml,' . 75 $this->headers['Accept-Language'] = 'en-us'; 92 if (!$this->sendRequest($url)) return false; [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 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 …]
|