Home
last modified time | relevance | path

Searched +full:runs +full:- +full:on (Results 1 – 19 of 19) sorted by relevance

/dokuwiki/.github/workflows/
H A DtodoChecker.yml3 on:
11 runs-on: ubuntu-latest
14 - name: Checkout code
17 - name: Check for Todos
H A DphpCS.yml3 on:
5 branches-ignore:
6 - stable
7 - old-stable
16 runs-on: ubuntu-latest
19 - uses: actions/checkout@v4
21 fetch-depth: 0
23 - name: Setup PHP
24 uses: shivammathur/setup-php@v2
26 php-version: '8.2'
[all …]
H A Drelease-build.yml3 # release-preparation workflow
6 on:
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 …]
H A DtestWindows.yml3 on:
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 DautoFix.yml1 name: "Auto-Fix code"
2 on:
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
[all …]
H A DtestLinux.yml3 on:
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 DdeletedFiles.yml1 # This workflow updates the list of deleted files based on the recent changes and creates a pull re…
2 # It compares the current master with the data/deleted.files file and cleans the file from any re-i…
4 # unless they are already listed there or are excluded from the release archives (export-ignore in …
5 …s are made to the top of the list with a single trailing line before the first "# removed on" line.
6 # Finally, the list of newly removed entries receives a header "# removed on $(date -I)" with the c…
9 on:
12 - master
17 runs-on: ubuntu-latest
19 - name: Checkout
22 fetch-depth: 0
[all …]
H A Drelease-preparation.yml4 # When the pull request is merged, the release-build workflow will be triggered automatically
7 on:
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
34 echo "::error::This workflow should only be triggered on master"
37 - name: Checkout
[all …]
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php13 * all menus are shown in a Dropdown list on mobile, but are split into several places on
14 * desktop. The item's $context property can be used to hide the item depending on the current
22 /** menu item is to be shown on desktop screens only */
24 /** menu item is to be shown on mobile screens only */
44 protected $svg = DOKU_INC . 'lib/images/menu/00-default_checkbox-blank-circle-outline.svg';
64 $this->id = $ID;
65 $this->type = $this->getType();
66 $this->params['do'] = $this->type;
68 if (!actionOK($this->type)) throw new \RuntimeException("action disabled: {$this->type}");
82 if ($this->label !== '') return $this->label;
[all …]
/dokuwiki/vendor/geshi/geshi/
H A DLICENSE5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
14 software--to make sure the software is free for all its users. This
45 software. If the software is modified by someone else and passed on, we
47 that any problems introduced by others will not reflect on the original
65 refers to any such program or work, and a "work based on the Program"
75 is covered only if its contents constitute a work based on the
77 Whether that is true depends on what the Program does.
81 conspicuously and appropriately publish on each copy an appropriate
91 of it, thus forming a work based on the Program, and copy and
111 does not normally print such an announcement, your work based on
[all …]
/dokuwiki/
H A DCOPYING5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
14 software--to make sure the software is free for all its users. This
45 software. If the software is modified by someone else and passed on, we
47 that any problems introduced by others will not reflect on the original
65 refers to any such program or work, and a "work based on the Program"
75 is covered only if its contents constitute a work based on the
77 Whether that is true depends on what the Program does.
81 conspicuously and appropriately publish on each copy an appropriate
91 of it, thus forming a work based on the Program, and copy and
111 does not normally print such an announcement, your work based on
[all …]
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
25 strategy to use in any particular case, based on the explanations below.
48 We protect your rights with a two-step method: (1) we copyright the
54 modified by someone else and passed on, the recipients should know
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
89 For example, on rare occasions, there may be a special need to
91 a de-facto standard. To achieve this, non-free programs must be
[all …]
/dokuwiki/inc/
H A DActionRouter.php37 * Sets up the correct action based on the $ACT global. Writes back
45 $this->disabled = explode(',', $conf['disableactions']);
46 $this->disabled = array_map('trim', $this->disabled);
49 $this->setupAction($ACT);
50 $ACT = $this->action->getActionName();
70 * Instantiates the right class, runs permission checks and pre-processing and
83 if ($evt->advise_before()) {
84 $this->action = $this->loadAction($actionname);
85 $this->checkAction($this->action);
86 $this->action->preProcess();
[all …]
H A DTaskRunner.php20 * @todo refactor to remove dependencies on globals
32 $output = $INPUT->has('debug') && $conf['allowdebug'];
34 $this->sendGIF();
37 $ID = cleanID($INPUT->str('id'));
43 header('Content-Type: text/plain');
49 if ($evt->advise_before()) {
52 $this->runIndexer() ||
53 $this->runSitemapper() ||
54 $this->sendDigest() ||
55 $this->runTrimRecentChanges() ||
[all …]
H A Dio.php23 * @param string $id - a pageid, the namespace of that id will be tried to deleted
24 * @param string $basedir - the config name of the type to delete (datadir or mediadir usally)
25 * @return bool - true if at least one namespace was deleted
113 * @return string|bool the file contents or false on error
147 * @return string|array|bool content or false on error
249 * @return bool true on success, otherwise false
301 * @return bool true on success, otherwise false
310 msg("Writing $file failed", -1);
326 * or all lines if $maxlines is -1. If $regex is true then captures can be used in $newline.
338 * @return bool true on success
[all …]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE5 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
25 strategy to use in any particular case, based on the explanations below.
48 We protect your rights with a two-step method: (1) we copyright the
54 modified by someone else and passed on, the recipients should know
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
89 For example, on rare occasions, there may be a special need to
91 a de-facto standard. To achieve this, non-free programs must be
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/
H A DLICENSE12 Copyright (c) 2013 - 2015 Leaf Corcoran, http://leafo.net/lessphp
13 Copyright (c) 2016 - Marcus Schwarz, https://www.maswaba.de
57 share and change all versions of a program--to make sure it remains free
76 gratis or for a fee, you must pass on to the recipients the same
82 (1) assert copyright on the software, and (2) offer you this License
104 software on general-purpose computers, but in those that do, we wish to
107 patents cannot be used to render the program non-free.
118 "Copyright" also means copyright-like laws that apply to other kinds of
128 earlier work or a work "based on" the earlier work.
131 on the Program.
[all …]
/dokuwiki/lib/scripts/
H A Dlinkwiz.js22 selected = -1;
65 // scrollview correction on arrow up/down gets easier
74 jQuery('#link__wiz .ui-dialog-titlebar-close').on('click', () => this.hide());
76 jQuery(this.result).on('click', 'a', (e) => this.onResultClick(e));
93 this.select(this.selected - 1);
105 if (this.selected > -1) {
153 const yDiff = childPos + $obj.outerHeight() - jQuery(this.result).innerHeight();
171 if (this.selected > -1) {
174 this.selected = -1;
192 * Handles the "click" on a given result anchor
[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);
63 return $rev == $this->currentRevision();
74 return $rev === $this->lastRevision();
81 * identical with or newer than the "last" revision, that depends on whether the file
90 if (!isset($this->currentRevision)) {
92 $this->getCurrentRevisionInfo();
[all …]