| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| 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 …]
|
| H A D | django.php | 10 'select-user' => ' 13 CONCAT_WS(\' \', first_name, last_name) AS name, 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… 34 'delete-user' => ' 41 'list-users' => ' [all …]
|
| /dokuwiki/inc/Input/ |
| H A D | Input.php | 35 $this->access = &$_REQUEST; 36 $this->post = new Post(); 37 $this->get = new Get(); 38 $this->server = new Server(); 49 if (!$this->filter) return $data; 50 return call_user_func($this->filter, $data); 63 $this->filter = $filter; 65 $this->filter = ''; 76 * @param string $name Parameter name 79 public function has($name) argument [all …]
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | build.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name="GeSHi" default="pack" basedir="."> 3 <!-- 4 GeSHi - Generic Syntax Highlighter - phing build file. 8 --> 11 <property name="version" value="1.0.9.1" /> 12 <property name="stability" value="stable" /> 13 <property name="zipfile" value="${phing.project.name}-${version}.zip" /> 14 <property name="gzfile" value="${phing.project.name}-${version}.tar.gz" /> 15 <property name="bz2file" value="${phing.project.name}-${version}.tar.bz2" /> [all …]
|
| /dokuwiki/.github/workflows/ |
| H A D | release-build.yml | 3 # release-preparation workflow 5 name: "Release: Tag, Build & Deploy" 9 - stable 14 name: Tag Release 15 runs-on: ubuntu-latest 17 - name: Checkout 20 - name: Prepare Environment 24 - name: Check if a tag already exists 26 if git rev-parse "release-${{ env.current_version }}" >/dev/null 2>&1; then 31 - name: Create tag [all …]
|
| H A D | testWindows.yml | 1 name: Windows Unit Tests 5 branches-ignore: 6 - stable 7 - old-stable 15 name: PHP ${{ matrix.php-versions }} 16 runs-on: windows-latest 21 php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] 22 fail-fast: false 25 - name: Checkout 28 - name: Setup PHP [all …]
|
| H A D | autoFix.yml | 1 name: "Auto-Fix code" 5 - master 10 runs-on: ubuntu-latest 12 - name: Checkout 15 fetch-depth: 0 17 - name: Setup PHP 18 uses: shivammathur/setup-php@v2 20 php-version: '8.2' 22 - name: Install tools 25 composer install --no-interaction --no-progress --no-suggest --prefer-dist [all …]
|
| H A D | testLinux.yml | 1 name: Linux Unit Tests 5 branches-ignore: 6 - stable 7 - old-stable 15 name: PHP ${{ matrix.php-versions }} 16 runs-on: ubuntu-latest 21 php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] 22 fail-fast: false 30 - 3306:3306 36 - 5432:5432 [all …]
|
| H A D | release-preparation.yml | 4 # When the pull request is merged, the release-build workflow will be triggered automatically 6 name: "Release: Preparation " 16 - stable 17 - hotfix 18 - rc 23 description: 'The version date YYYY-MM-DD, empty for today' 28 name: Prepare Pull Request 29 runs-on: ubuntu-latest 31 - name: Fail if branch is not master 37 - name: Checkout [all …]
|
| H A D | phpCS.yml | 1 name: PHP Code Style 5 branches-ignore: 6 - stable 7 - old-stable 15 name: PHP CodeSniffer 16 runs-on: ubuntu-latest 19 - uses: actions/checkout@v4 21 fetch-depth: 0 23 - name: Setup PHP 24 uses: shivammathur/setup-php@v2 [all …]
|
| /dokuwiki/lib/plugins/authplain/_test/ |
| H A D | escaping.test.php | 24 $this->auth = new auth_plugin_authplain(); 30 $name = $config_cascade['plainauth.users']['default']; 31 copy($name, $name.".orig"); 32 $this->reloadUsers(); 38 $name = $config_cascade['plainauth.users']['default']; 39 copy($name.".orig", $name); 45 $this->auth->createUser("mwuser", "12345", "Mediawiki User", "me@example.com"); 46 $this->reloadUsers(); 47 $this->assertTrue($this->auth->checkPass("mwuser", "12345")); 48 $mwuser = $this->auth->getUserData("mwuser"); [all …]
|
| /dokuwiki/inc/Remote/Response/ |
| H A D | User.php | 10 /** @var string The login name of the user */ 12 /** @var string The full name of the user */ 13 public $name; variable in dokuwiki\\Remote\\Response\\User 25 * @param string $name 29 public function __construct($login = '', $name = '', $mail = '', $groups = []) argument 35 $this->login = $login; 36 $this->name = $name; 37 $this->mail = $mail; 38 $this->groups = $groups; 40 if ($this->login === '') { [all …]
|
| /dokuwiki/inc/Form/ |
| H A D | InputElement.php | 28 * @param string $name The name of this form element 31 public function __construct($type, $name, $label = '') argument 33 parent::__construct($type, ['name' => $name]); 34 $this->attr('name', $name); 35 $this->attr('type', $type); 36 if ($label) $this->label = new LabelElement($label); 46 return $this->label; 60 $this->useInput = (bool) $useinput; 72 if ($this->label) $this->label->attr('for', $id); 86 if ($this->label) $this->label->addClass($class); [all …]
|
| H A D | Form.php | 17 * @var array name value pairs for hidden values 39 if (!$this->attr('action')) { 43 $this->attr('action', $self); 47 if (!$this->attr('method')) { 48 $this->attr('method', 'post'); 51 // we like UTF-8 52 if (!$this->attr('accept-charset')) { 53 $this->attr('accept-charset', 'utf-8'); 58 $this->setHiddenField('sectok', getSecurityToken()); 62 $this->addClass('doku_form'); [all …]
|
| H A D | CheckableElement.php | 8 * For Radio- and Checkboxes 16 * @param string $name The name of this form element 19 public function __construct($type, $name, $label) argument 21 parent::__construct($type, $name, $label); 23 $this->attr('value', 1); 32 [$name, $key] = $this->getInputName(); 33 $myvalue = $this->val(); 35 if (!$INPUT->has($name)) return; 38 // no key - single value 39 $value = $INPUT->str($name); [all …]
|
| /dokuwiki/inc/parser/ |
| H A D | metadata.php | 14 * Some simplified rendering to $doc is done to gather the page's (text-only) abstract. 69 $this->headers = []; 72 if (!isset($this->persistent['date']['created']) || !$this->persistent['date']['created']) { 73 $this->persistent['date']['created'] = filectime(wikiFN($ID)); 75 if (!isset($this->persistent['user'])) { 76 $this->persistent['user'] = ''; 78 if (!isset($this->persistent['creator'])) { 79 $this->persistent['creator'] = ''; 82 $this->meta = $this->persistent; 95 $this->meta['internal'] = $this->info; [all …]
|
| /dokuwiki/inc/Debug/ |
| H A D | PropertyDeprecationHelper.php | 15 * and make the properties non-public. The trait will preserve public access 23 * $this->deprecatePublicProperty( 'bar', '1.21', __CLASS__ ); 28 * $foo->bar; // works but logs a warning 36 * List of deprecated properties, in <property name> => <class> format 37 * where <class> is the the name of the class defining the property 48 * @param string $property The name of the property. 49 * @param null $class name of the class defining the property 56 $this->deprecatedPublicProperties[$property] = $class ?: get_class($this); 59 public function __get($name) argument 61 if (isset($this->deprecatedPublicProperties[$name])) { [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | File.php | 6 * A PHP-Based RSS and Atom Feed Framework. 9 * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 22 * * Neither the name of the SimplePie Team nor the names of its contributors may be used 37 * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue 42 * @license http://www.opensource.org/licenses/bsd-license.php BSD License 83 protected $name; variable in SimplePie\\Cache\\File 89 * @param string $name Unique ID for the cache 92 public function __construct($location, $name, $type) argument 94 $this->location = $location; 95 $this->filename = $name; [all …]
|
| H A D | Redis.php | 6 * A PHP-Based RSS and Atom Feed Framework. 9 * Copyright (c) 2004-2022, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors 22 * * Neither the name of the SimplePie Team nor the names of its contributors may be used 37 * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue 42 * @license http://www.opensource.org/licenses/bsd-license.php BSD License 56 * prefixed with `simple_primary-` and data will expire after 3600 seconds 80 * Cache name 84 protected $name; variable in SimplePie\\Cache\\Redis 90 * @param string $name Unique ID for the cache 93 public function __construct($location, $name, $options = null) argument [all …]
|
| /dokuwiki/conf/ |
| H A D | license.php | 10 $license['cc-zero'] = array( 11 'name' => 'CC0 1.0 Universal', 15 'name' => 'Public Domain', 18 $license['cc-by'] = array( 19 'name' => 'CC Attribution 4.0 International', 22 $license['cc-by-sa'] = array( 23 'name' => 'CC Attribution-Share Alike 4.0 International', 24 'url' => 'https://creativecommons.org/licenses/by-sa/4.0/deed.'.$LC, 27 'name' => 'GNU Free Documentation License 1.3', 28 'url' => 'https://www.gnu.org/licenses/fdl-1.3.html', [all …]
|
| /dokuwiki/vendor/splitbrain/lesserphp/ |
| H A D | .phpcs.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 4 <exclude name="Generic.ControlStructures.InlineControlStructure.NotAllowed" /> 5 <exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps" /> 6 <exclude name="PSR2.ControlStructures.ControlStructureSpacing.SpaceBeforeCloseBrace" /> 7 <exclude name="PSR2.ControlStructures.ControlStructureSpacing.SpacingAfterOpenBrace" /> 10 <arg name="encoding" value="UTF-8"/> 11 <arg name="extensions" value="php"/> 12 <exclude-pattern>vendor</exclude-pattern>
|
| /dokuwiki/lib/plugins/authpdo/conf/ |
| H A D | default.php | 15 * statement to select a single user identified by its login name 18 * return: user, name, mail, (clear|hash), [uid], [*] 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'] = ''; 43 $conf['select-groups'] = ''; 48 * input: :user, :name, :mail, (:clear|:hash) 50 $conf['insert-user'] = ''; 57 $conf['delete-user'] = ''; [all …]
|
| /dokuwiki/inc/Extension/ |
| H A D | Event.php | 14 … /** @var string READONLY event name, objects must register against this name to see the event */ 15 public $name = ''; variable in dokuwiki\\Extension\\Event 35 * @param string $name 38 public function __construct($name, &$data) argument 41 $this->name = $name; 42 $this->data =& $data; 50 return $this->name; 59 * $evt = new dokuwiki\Plugin\Doku_Event(name, data); 60 * if ($evt->advise_before(canPreventDefault) { 63 * $evt->advise_after(); [all …]
|
| /dokuwiki/lib/plugins/authpdo/_test/mysql/ |
| H A D | wordpress.php | 12 'select-user' => ' 15 display_name AS name, 21 'select-user-groups' => ' 27 'select-groups' => '', 28 'insert-user' => '', 29 'delete-user' => '', 30 'list-users' => ' 37 AND U.display_name LIKE :name 43 'count-users' => ' 50 AND U.display_name LIKE :name [all …]
|
| /dokuwiki/_test/tests/inc/ |
| H A D | html_secedit_pattern.test.php | 9 …'<!-- EDIT{"target":"SECTION","name":"Plugins","hid":"plugins","codeblockOffset":0,"secid":5,"rang… 13 'name' => 'Plugins', 15 'range' => '1406-', 20 …'<!-- EDIT{"target":"TABLE","name":"","hid":"table4","codeblockOffset":0,"secid":10,"range":"11908… 24 'name' => '', 26 'range' => '11908-14014', 31 …'<!-- EDIT{"target":"PLUGIN_DATA","name":"","hid":"","codeblockOffset":0,"secid":2,"range":"27-432… 35 'name' => '', 37 'range' => '27-432', 55 $this->assertSame($expected_value, $data[$key], $msg); [all …]
|