Home
last modified time | relevance | path

Searched +full:version -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 755) sorted by relevance

12345678910>>...31

/dokuwiki/inc/
H A DInfo.php13 * Parse the given version string into its parts
15 * @param string $version
19 public static function parseVersionString($version) argument
25 'version' => '', // sortable, full version string
27 'raw' => $version, // raw version string as given
30 if (preg_match('/^(rc)?(\d{4}-\d{2}-\d{2})([a-z]*)/', $version, $matches)) {
41 throw new \Exception('failed to parse version string');
44 [, $return['codename']] = sexplode(' ', $version, 2);
47 $return['version'] = $return['date'];
48 $return['version'] .= $return['type'] == 'rc' ? 'rc' : $return['hotfix'];
H A Dinfoutils.php76 * Return DokuWiki's version (split up in date and type)
82 $version = [];
83 //import version string
84 if (file_exists(DOKU_INC . 'VERSION')) {
86 $version['date'] = trim(io_readFile(DOKU_INC . 'VERSION'));
87 $version['type'] = 'Release';
89 $version['type'] = 'Git';
90 $version['date'] = 'unknown';
96 [$version['sha'], $date] = explode(' ', $commitInfo);
97 $version['date'] = hsc($date);
[all …]
/dokuwiki/inc/Remote/
H A DJsonRpcServer.php12 /** @var float The XML-RPC Version. 0 is our own simplified variant */
13 protected $version = 0; variable in dokuwiki\\Remote\\JsonRpcServer
74 * This should handle all JSON-RPC versions and our simplified version
88 // this is a standard conform request (at least version 1.0)
91 $this->version = 1;
96 // version 2.0 request
99 $this->version = (float)$data['jsonrpc'];
102 // version 1.1 request
103 if (isset($data['version'])) {
104 $return['version'] = $data['version'];
[all …]
/dokuwiki/vendor/composer/
H A Dinstalled.php5 'version' => 'dev-master',
15 'version' => '2.0.1.0',
24 'version' => 'dev-master',
33 'version' => 'dev-master',
45 'version' => '1.8.5.0',
54 'version' => '1.9.0.0',
63 'version' => '2.7.0.0',
72 'version' => '9.99.100.0',
81 'version' => 'dev-fallback-intl',
90 'version' => '3.0.43.0',
[all …]
H A DInstalledVersions.php37version: string, reference: string|null, type: string, install_path: string, aliases: string[], de…
53version: string, reference: string|null, type: string, install_path: string, aliases: string[], de…
120 * Checks whether the given package satisfies a version constraint
122 … * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
128 …* @param string|null $constraint A version constraint to check for, if you pass one you have t…
140 …* Returns a version constraint representing all the range(s) which are installed for a given packa…
143 * whether a given version of a package is installed, and not just whether it exists
146 * @return string Version constraint usable with composer/semver
177 …installed, null will be returned as version, use satisfies or getVersionRanges if you need to know…
186 if (!isset($installed['versions'][$packageName]['version'])) {
[all …]
/dokuwiki/_test/tests/
H A DInfoTest.php20 'version' => '2010-10-07rc',
31 'version' => '2017-02-19d',
42 'version' => '2017-02-19',
53 public function testParseVersionString($version, $expected) argument
55 $this->assertEquals($expected, \dokuwiki\Info::parseVersionString($version));
/dokuwiki/vendor/geshi/geshi/
H A Dbuild.xml1 <?xml version="1.0" encoding="utf-8"?>
6 Packs up a new version of geshi, tags it in git and releases it on
11 <property name="version" value="1.0.9.1" />
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" />
16 <property name="pkgfile" value="geshi-${version}.tgz" />
22 Version 1.0.9.1
44 <echo msg="Creating distribution files for ${phing.project.name} ${version}"/>
85 <version release="${version}" api="${version}" />
[all …]
H A DCHANGELOG4 Changes to the code are listed under the version they occurred in, with who suggested
9 Language files listed under each version were made by the author beside them, and then
15 Version 1.0.9.2
17 Version 1.0.9.1
37 Version 1.0.9.0
43 Version 1.0.8.13
60 * AutoIt: new version (Jonathan Bennett)
74 Version 1.0.8.12
97 - Updated COPYING to use updated version of GPL 2.0 (BenBE)
127 Version 1.0.8.11
[all …]
/dokuwiki/.github/workflows/
H A Drelease-preparation.yml22 version:
23 description: 'The version date YYYY-MM-DD, empty for today'
50 --date "${{ inputs.version }}" \
62 - name: Create merge commit with version info
65 echo '${{ env.next_raw }}' > VERSION
66 git add VERSION
89 * Update Version ${{ env.current_update }} -> ${{ env.next_update }}
101 - [ ] Update the [version symlinks](https://download.dokuwiki.org/admin/)
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPContactCollection.php4 * Version 4.0.4
6 * PHP Version 5 with SSL and LDAP support
20 * version 2.1 of the License.
34 * @version 4.0.4
H A DadLDAPUserCollection.php4 * Version 4.0.4
6 * PHP Version 5 with SSL and LDAP support
20 * version 2.1 of the License.
34 * @version 4.0.4
H A DadLDAPGroupCollection.php4 * Version 4.0.4
6 * PHP Version 5 with SSL and LDAP support
20 * version 2.1 of the License.
34 * @version 4.0.4
H A DadLDAPComputerCollection.php4 * Version 4.0.4
6 * PHP Version 5 with SSL and LDAP support
20 * version 2.1 of the License.
34 * @version 4.0.4
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php8 * PHP version 5
39 * Default version
43 private static $version = 2; variable in phpseclib3\\Crypt\\Common\\Formats\\Keys\\PuTTY
56 * Sets the default version
58 * @param int $version
60 public static function setVersion($version) argument
62 if ($version != 2 && $version != 3) {
65 self::$version = $version;
183 …$version = (int) Strings::shift($key[0], 3); // should be either "2: " or "3: 0" prior to int cast…
184 if ($version != 2 && $version != 3) {
[all …]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DPSR3CLI.php11 * PSR3 version 2 is needed.
13 * @see PSR3CLIv3 for a version 3 compatible class
H A DPSR3CLIv3.php12 * PSR3 version 3 is needed.
14 * @see PSR3CLI for a version 2 compatible class
/dokuwiki/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml47 label: Version of DokuWiki
48 description: Can be found in the admin screen or in the `VERSION` file.
54 label: PHP Version
55 description: The version of PHP you are using to run DokuWiki
61 label: Webserver and version of webserver
66 label: Browser and version of browser, operating system running browser
/dokuwiki/.github/
H A Drelease.php36 …$options->registerOption('date', 'The date to use for the version. Defaults to today', null, 'YYYY…
37 …$options->registerOption('name', 'The codename to use for the version. Defaults to the last used o…
62 // we name files like the string in the VERSION file, with rc at the front
121 $next['version'] = $next['date'] . ($next['type'] === 'rc' ? 'rc' : $next['hotfix']);
137 * Get current version info from local VERSION file
143 $versioninfo = \dokuwiki\Info::parseVersionString(trim(file_get_contents('VERSION')));
153 * Get current version info from stable branch
160 // basic version info
161 …sioninfo = \dokuwiki\Info::parseVersionString(trim(file_get_contents($this->BASERAW . 'VERSION')));
163 // update version grepped from the doku.php file
/dokuwiki/vendor/paragonie/constant_time_encoding/
H A DREADME.md4 [![Latest Stable Version](https://poser.pugx.org/paragonie/constant_time_encoding/v/stable)](https:…
5 [![Latest Unstable Version](https://poser.pugx.org/paragonie/constant_time_encoding/v/unstable)](ht…
23 ## PHP Version Requirements
25 Version 2 of this library should work on **PHP 7** or newer. For PHP 5
28 …roject intended to work on both PHP 5 and PHP 7, please set the required version to `^1|^2` instea…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/
H A DRSAPrivateKey.php6 * PHP version 5
25 // version must be multi if otherPrimeInfos present
29 'version' => [
H A DOtherPrimeInfos.php6 * PHP version 5
25 // version must be multi if otherPrimeInfos present
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE2 Version 2.1, February 1999
9 [This is the first released version of the Lesser GPL. It also counts
10 as the successor of the GNU Library Public License, version 2, hence
11 the version number 2.1.]
55 that what they have is not the original version, so that the original
63 any patent license obtained for a version of the library must be
107 that program using a modified version of the Library.
214 that they refer to the ordinary GNU General Public License, version 2,
215 instead of to this License. (If a newer version than version 2 of the
217 that version instead if you wish.) Do not make any other change in
[all …]
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A Dcomposer.lock12 "version": "1.5.0",
82 "version": "1.11.1",
141 "version": "2.0.3",
157 "phar-io/version": "^3.0.1",
200 "name": "phar-io/version",
201 "version": "3.2.1",
204 "url": "https://github.com/phar-io/version.git",
209 …"url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbe…
243 "description": "Library for handling version information and constraints",
245 "issues": "https://github.com/phar-io/version/issues",
[all …]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE2 Version 2.1, February 1999
9 [This is the first released version of the Lesser GPL. It also counts
10 as the successor of the GNU Library Public License, version 2, hence
11 the version number 2.1.]
55 that what they have is not the original version, so that the original
63 any patent license obtained for a version of the library must be
107 that program using a modified version of the Library.
214 that they refer to the ordinary GNU General Public License, version 2,
215 instead of to this License. (If a newer version than version 2 of the
217 that version instead if you wish.) Do not make any other change in
[all …]
/dokuwiki/vendor/splitbrain/slika/
H A Dcomposer.lock12 "version": "1.4.0",
81 "version": "1.10.2",
97 "myclabs/deep-copy": "self.version"
139 "version": "2.0.1",
155 "phar-io/version": "^3.0.1",
198 "name": "phar-io/version",
199 "version": "3.0.4",
202 "url": "https://github.com/phar-io/version.git",
207 …"url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5…
241 "description": "Library for handling version information and constraints",
[all …]

12345678910>>...31