Home
last modified time | relevance | path

Searched +full:- +full:- +full:name (Results 1 – 25 of 525) sorted by relevance

12345678910>>...21

/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.sql1 --
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 Ddjango.php10 '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 DInput.php35 $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 Dbuild.xml1 <?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 Drelease-build.yml3 # 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 DtestWindows.yml1 name: Windows Unit Tests
5 branches-ignore:
6 - stable
7 - old-stable
11 group: ${{ github.workflow }}-${{ github.ref }}
12 cancel-in-progress: true
19 name: PHP ${{ matrix.php-versions }}
20 runs-on: windows-latest
25 php-versions: ['8.2', '8.3', '8.4', '8.5']
26 fail-fast: false
[all …]
H A DautoFix.yml1 name: "Auto-Fix code"
5 - master
8 group: ${{ github.workflow }}-${{ github.ref }}
9 cancel-in-progress: true
14 runs-on: ubuntu-latest
16 - name: Checkout
19 fetch-depth: 0
21 - name: Setup PHP
22 uses: shivammathur/setup-php@v2
24 php-version: '8.2'
[all …]
H A Drelease-preparation.yml4 # 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 DtestLinux.yml1 name: Linux Unit Tests
5 branches-ignore:
6 - stable
7 - old-stable
11 group: ${{ github.workflow }}-${{ github.ref }}
12 cancel-in-progress: true
19 name: PHP ${{ matrix.php-versions }}
20 runs-on: ubuntu-latest
25 php-versions: ['8.2', '8.3', '8.4', '8.5']
26 fail-fast: false
[all …]
/dokuwiki/lib/plugins/authplain/_test/
H A Descaping.test.php24 $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 DUser.php10 /** @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/vendor/simplepie/simplepie/src/Cache/
H A DFile.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
44 protected $name; variable in SimplePie\\Cache\\File
50 * @param string $name Unique ID for the cache
53 public function __construct(string $location, string $name, $type) argument
55 $this->location = $location;
56 $this->filename = $name;
57 $this->extension = $type;
58 $this->name = "$this->location/$this->filename.$this->extension";
69 …if (file_exists($this->name) && is_writable($this->name) || file_exists($this->location) && is_wri…
[all …]
H A DRedis.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-FileCopyrightText: 2015 Jan Kozak <galvani78@gmail.com>
5 // SPDX-License-Identifier: BSD-3-Clause
20 * prefixed with `simple_primary-` and data will expire after 3600 seconds
42 * Cache name
46 protected $name; variable in SimplePie\\Cache\\Redis
52 * @param string $name Unique ID for the cache
55 public function __construct(string $location, string $name, $options = null) argument
57 //$this->cache = \flow\simple\cache\Redis::getRedisClientInstance();
60 $redis->connect($parsed['host'], $parsed['port']);
[all …]
H A DMemcache.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
41 * Cache name
45 protected $name; variable in SimplePie\\Cache\\Memcache
51 * @param string $name Unique ID for the cache
54 public function __construct(string $location, string $name, $type) argument
56 $this->options = [
64 … $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
66 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
68 $this->cache = new NativeMemcache();
[all …]
H A DCallableNameFilter.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
25 $this->callable = $callable;
31 * The returning name MUST follow the rules for keys in PSR-16.
33 * @link https://www.php-fig.org/psr/psr-16/
35 * The returning name MUST be a string of at least one character
37 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
45 * @param string $name The name for the cache will be most likely an url with query string
47 * @return string the new cache name
49 public function filter(string $name): string argument
[all …]
H A DMemcached.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-FileCopyrightText: 2015 Paul L. McNeely
5 // SPDX-License-Identifier: BSD-3-Clause
40 * Cache name
43 protected $name; variable in SimplePie\\Cache\\Memcached
48 * @param string $name Unique ID for the cache
51 public function __construct(string $location, string $name, $type) argument
53 $this->options = [
61 … $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
63 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
[all …]
H A DNameFilter.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
18 * The returning name MUST follow the rules for keys in PSR-16.
20 * @link https://www.php-fig.org/psr/psr-16/
22 * The returning name MUST be a string of at least one character
24 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
32 * @param string $name The name for the cache will be most likely an url with query string
34 * @return string the new cache name
36 public function filter(string $name): string; argument
/dokuwiki/inc/Form/
H A DInputElement.php28 * @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 DForm.php17 * @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 …]
/dokuwiki/inc/parser/
H A Dmetadata.php14 * 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/vendor/simplepie/simplepie/src/HTTP/
H A DRawTextResponse.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
14 * @see https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface
31 * @var array<non-empty-array<string>>
42 $this->raw_text = $raw_text;
43 $this->permanent_url = $filepath;
44 $this->requested_url = $filepath;
49 return $this->permanent_url;
54 return $this->requested_url;
64 return $this->headers;
[all …]
H A DResponse.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-FileCopyrightText: 2014 PHP Framework Interoperability Group
5 // SPDX-License-Identifier: MIT
15 * @see https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface
30 * - If a scheme is present, it MUST be suffixed by ":".
31 * - If an authority is present, it MUST be prefixed by "//".
32 * - The path can be concatenated without delimiters. But there are two
35 * - If the path is rootless and an authority is present, the path MUST
37 * - If the path is starting with more than one "/" and no authority is
39 * - If a query is present, it MUST be prefixed by "?".
[all …]
H A DPsr7Response.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
13 * HTTP Response based on a PSR-7 response
16 * @see https://www.php-fig.org/psr/psr-7/#33-psrhttpmessageresponseinterface
39 $this->response = $response;
40 $this->permanent_url = $permanent_url;
41 $this->requested_url = $requested_url;
46 return $this->permanent_url;
51 return $this->requested_url;
56 return $this->response->getStatusCode();
[all …]
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php15 * 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 ?: $this::class;
59 public function __get($name) argument
61 if (isset($this->deprecatedPublicProperties[$name])) {
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DAuthor.php3 // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
4 // SPDX-License-Identifier: BSD-3-Clause
11 * Manages all author-related data
20 * Author's name
25 public $name; variable in SimplePie\\Author
47 ?string $name = null, argument
51 $this->name = $name;
52 $this->link = $link;
53 $this->email = $email;
57 * String-ified version
[all …]

12345678910>>...21