Home
last modified time | relevance | path

Searched +full:fetch +full:- +full:depth (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/.github/workflows/
H A DphpCS.yml5 branches-ignore:
6 - stable
7 - old-stable
11 contents: read # to fetch code (actions/checkout)
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 DautoFix.yml1 name: "Auto-Fix code"
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
25 composer install --no-interaction --no-progress --no-suggest --prefer-dist
[all …]
H A DdeletedFiles.yml2 # 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 …
6 # Finally, the list of newly removed entries receives a header "# removed on $(date -I)" with the c…
12 - master
17 runs-on: ubuntu-latest
19 - name: Checkout
22 fetch-depth: 0
24 - name: Cleaning list from re-introduced files
26 for E in $(git ls-tree -r master --name-only); do
27 if (git check-attr export-ignore "$E" | grep -q "export-ignore: set"); then
[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 …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Doracle11.php4 * -----------
7 * - Updated for 11i by Simon Redhead
15 * -------
17 * - SR changes to oracle8.php to support Oracle 11i reserved words.
19 * - First Release
22 * -------------------------
40 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46 'COMMENT_SINGLE' => array(1 => '--'),
52 //Put your package names here - e.g. select distinct ''''|| lower(name) || ''',' from user_source;
56 //Put your table names here - e.g. select distinct ''''|| lower(table_name) || ''',' from user_tabl…
[all …]
H A Dplsql.php4 * -------
14 * -------
16 * - First Release
19 * -------------------------
39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
45 …'COMMENT_SINGLE' => array(1 =>'--'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/…
46 …'COMMENT_MULTI' => array('/*' => '*/'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.9…
48 …'QUOTEMARKS' => array("'", '"'), //http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a966…
51 …//PL/SQL reserved keywords (http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96624/f_wo…
71 'FORALL', 'FOR', 'FLOAT', 'FETCH', 'FALSE', 'EXTENDS', 'EXIT',
[all …]
H A Dtsql.php4 * --------
10 * T-SQL language file for GeSHi.
13 * -------
15 * - First Release
18 * -------------------------
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
41 'LANG_NAME' => 'T-SQL',
42 'COMMENT_SINGLE' => array(1 => '--'),
51 Built-in functions
145 …'DEFERRED', 'DELAY', 'DELAYED_DURABILITY', 'DELETE', 'DENY', 'DEPTH', 'DEREF', 'DESC', 'DESCRIBE',…
[all …]
/dokuwiki/inc/
H A Dmedia.php77 $meta->_parseAll();
82 $meta->deleteField($key);
84 $meta->setField($key, $val);
94 if ($meta->save()) {
99 $sizechange = $filesize_new - $filesize_old;
107 msg($lang['metasaveerr'], -1);
177 $form->addTagOpen('div')->addClass('no');
178 $form->setHiddenField('img', $id);
179 $form->setHiddenField('mediado', 'save');
195 $form->addTagOpen('div')->addClass('row');
[all …]