Home
last modified time | relevance | path

Searched +full:delete +full:- +full:branch (Results 1 – 6 of 6) sorted by relevance

/dokuwiki/.github/workflows/
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 DdeletedFiles.yml2 # It compares the current master with the data/deleted.files file and cleans the file from any re-i…
3 # It compares the current master with the stable branch and adds all deleted files to the data/dele…
4 # unless they are already listed there or are excluded from the release archives (export-ignore in …
6 # Finally, the list of newly removed entries receives a header "# removed on $(date -I)" with the c…
12 - master
15 group: ${{ github.workflow }}-${{ github.ref }}
16 cancel-in-progress: true
21 runs-on: ubuntu-latest
23 - name: Checkout
26 fetch-depth: 0
[all …]
H A Drelease-preparation.yml4 # When the pull request is merged, the release-build workflow will be triggered automatically
16 - stable
17 - hotfix
18 - rc
23 description: 'The version date YYYY-MM-DD, empty for today'
29 runs-on: ubuntu-latest
31 - name: Fail if branch is not master
37 - name: Checkout
40 fetch-depth: 0
42 - name: Set git identity
[all …]
H A Drelease-build.yml2 # It is triggered by pushing to the stable branch, either manually or by merging a PR created by the
3 # release-preparation workflow
9 - stable
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
32 uses: actions/github-script@v6
[all …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dbash.php4 * --------
13 * -------
15 * - Added loads of keywords and commands of GNU/Linux
16 * - Added support for parameters starting with a dash
18 * - Added description of extra language features (SF#1970248)
20 * - PARSER_CONTROL patch using SF #1788408 (BenBE)
22 * - Added a lot of keywords (BenBE / Jan G)
24 * - Added support for multiple object splitters
26 * - Added support for URLs
28 * - First Release
[all …]
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php31 $this->cache =& $cache_revinfo;
32 if (!isset($this->cache[$id])) {
33 $this->cache[$id] = [];
36 $this->id = $id;
37 $this->setChunkSize($chunk_size);
56 * Returns path to the global changelog file (the cross-page recent-changes feed)
70 return $rev == $this->currentRevision();
81 return $rev === $this->lastRevision();
97 if (!isset($this->currentRevision)) {
99 $this->getCurrentRevisionInfo();
[all …]