Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 877) sorted by relevance

12345678910>>...36

/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/lang/fr/
H A Dconflict.txt1 ====== Une version plus récente existe ======
3 Une version plus récente du document que vous avez modifié existe. Cela se produit lorsqu'un autre …
5 … quelle version conserver. Si vous choisissez « Enregistrer », votre version sera enregistrée. Cli…
/dokuwiki/inc/lang/en/
H A Dconflict.txt1 ====== A newer version exists ======
3 A newer version of the document you edited exists. This happens when another user changed the docum…
5 …y, then decide which version to keep. If you choose ''save'', your version will be saved. Hit ''ca…
/dokuwiki/inc/lang/oc/
H A Dconflict.txt1 ====== Una version mai recenta existís ======
2 Una version mai recenta del document qu’avètz modificat existís. Aquò arriba quand qualqu’un mai cà…
4 …ausissètz la version de gardar. Se causissètz « enregistrar », vòstra version serà enregistrada. Q…
/dokuwiki/inc/lang/ia/
H A Dconflict.txt1 ====== Un version plus nove existe ======
3 Existe un version plus nove del documento que tu ha modificate. Isto occurre si un altere usator ca…
5 …e qual version debe esser conservate. Si tu selige ''salveguardar'', tu version essera salveguarda…
H A Ddraft.txt1 ====== Version provisori trovate ======
3 …okuWiki ha automaticamente salveguardate un version provisori durante tu labor. Ora tu pote usar i…
5 Per favor decide si tu vole //recuperar// le session de modification perdite, //deler// le version
H A Deditrev.txt1 **Tu ha cargate un version ancian del documento!** Si tu lo salveguarda, tu crea un nove version co…
/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/inc/lang/sv/
H A Dconflict.txt1 ====== Det finns en senare version ======
3 Det finns en senare version av dokumentet du har redigerat. Detta kan hända när en annan användare …
5 … visas nedan noga, och välj sedan vilken version du vill behålla. Om du väljer ''spara'', så komme…
/dokuwiki/inc/lang/de/
H A Dconflict.txt1 ====== Es gibt eine neuere Version ======
3 Es existiert eine neuere Version des aktuell in Bearbeitung befindlichen Dokumentes. Das heißt, jem…
5 … Wählen Sie **''[Speichern]''** zum Sichern Ihrer Version oder **''[Abbrechen]''**, um Ihre Vers…
H A Deditrev.txt1 **Eine ältere Version des Dokuments wurde geladen!** Beim Speichern wird eine neue Version des Doku…
/dokuwiki/inc/lang/de-informal/
H A Dconflict.txt1 ====== Eine neuere Version existiert ======
3 Eine neuere Version des aktuell in Bearbeitung befindlichen Dokuments existiert. Das heißt, ein and…
5 …wird. Wähle **''[Speichern]''** zum Sichern deiner Version oder **''[Abbrechen]''**, um deine Ver…
H A Deditrev.txt1 **Eine ältere Version des Dokuments wurde geladen!** Beim Speichern wird eine neue Version des Doku…
/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/inc/lang/ku/
H A Dconflict.txt5 …y, then decide which version to keep. If you choose ''save'', your version will be saved. Hit ''ca…
/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 …]
/dokuwiki/inc/lang/sq/
H A Dconflict.txt1 ====== Ekziston një version më i ri ======
3 Ekziston një version më i ri i dokumentit që ju redaktuat. Kjo ndodh kur një përdorues tjetër e ndr…
5 Gjeni ndryshimet e treguara më poshtë dhe pastaj vendosni se kë version doni të mbani. Nëse zgjidhn…
/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

12345678910>>...36