Searched +full:export +full:- +full:ignore (Results 1 – 9 of 9) sorted by relevance
| /dokuwiki/ |
| H A D | .gitattributes | 8 .git export-ignore 9 .gitattributes export-ignore 10 .github export-ignore 11 .github/** export-ignore 12 .gitignore export-ignore 13 .editorconfig export-ignore 14 .travis.yml export-ignore 15 appveyor.yml export-ignore 16 composer.json export-ignore 17 composer.lock export-ignore [all …]
|
| /dokuwiki/.github/workflows/ |
| H A D | deletedFiles.yml | 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 … 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 28 - name: Cleaning list from re-introduced files [all …]
|
| H A D | release-build.yml | 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 35 github-token: ${{ secrets.RELEASE_TOKEN }} [all …]
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | make.php | 4 * -------- 15 * ------- 17 * - First Release 35 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 54 'include', 'vpath', 'export', 'unexport', 'override', 59 …'.SUFFIXES', '.PHONY', '.DEFAULT', '.PRECIOUS', '.IGNORE', '.SILENT', '.EXPORT_ALL_VARIABLES', '.K… 64 // funcs - see regex 65 …bst', 'addprefix', 'addsuffix', 'basename', 'call', 'dir', 'error', 'eval', 'filter-out', 'filter', 74 '=', '-', '+', '*', 86 1 => 'color: #666622; font-weight: bold;', [all …]
|
| H A D | logtalk.php | 4 * ----------- 7 * Copyright: (c) 2009-2011 Paulo Moura (http://logtalk.org/) 14 * ------- 16 * - Added syntax coloring of ignore/1 18 * - Added syntax coloring of conforms_to_protocol/2-3 20 * - Added syntax coloring of coinductive/1 22 * - Added syntax coloring of e/0 and pi/0 23 * - Added syntax coloring of ground/1, numbervars/3, keysort/2, and sort/2 25 * - Added syntax coloring of callable/1 and compare/3 27 * - First Release [all …]
|
| H A D | standardml.php | 4 * ---------- 14 * ------- 16 * - First Release 19 * ------------------------- 20 * - support character literal 21 * - support Vector expressions and patterns (http://www.smlnj.org/doc/features.html) 22 * - support more Basis functions...? 40 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 61 3 => '(?<![0-9a-z_\.])(?<![\d\.]e[+\-])0w[0-9]+?(?![0-9a-z]|\.(?:[eE][+\-]?)?\d)', 63 4 => '(?<![0-9a-z_\.])(?<![\d\.]e[+\-])0wx[0-9a-fA-F]+?(?![0-9a-z]|\.(?:[eE][+\-]?)?\d)' [all …]
|
| H A D | progress.php | 4 * -------- 13 * ------- 15 * - First Release 18 * ------------------------- 39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 53 'BUFFER-COMPARE','BUFFER-COPY','CALL','CASE', 55 'CLOSE STORED-PROCEDURE','COLOR','COMPILE','CONNECT', 56 'CONSTRUCTOR','COPY-LOB','CREATE','CREATE ALIAS', 57 'CREATE BROWSE','CREATE BUFFER','CREATE CALL','CREATE CLIENT-PRINCIPAL', 58 'CREATE DATABASE','CREATE DATASET','CREATE DATA-SOURCE','CREATE QUERY', [all …]
|
| H A D | mapbasic.php | 4 * ------ 13 * ------- 15 * - Replaced all tabs with spaces 16 * - Fixed 'URLS' array 18 * - First Release (MapBasic v9.5) 21 * ------------------------- 39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 53 1 - Statements + Clauses + Data Types + Logical Operators, Geographical Operators + SQL 54 2 - Special Procedures 55 3 - Functions [all …]
|
| /dokuwiki/inc/ |
| H A D | common.php | 38 return htmlspecialchars($string, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, 'UTF-8'); 98 return preg_replace('/[\x00-\x1F]+/s', '', $string); 105 * @link http://en.wikipedia.org/wiki/Cross-site_request_forgery 106 * @link http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html 115 $user = $INPUT->server->str('REMOTE_USER'); 118 // CSRF checks are only for logged in users - do not generate for anonymous 133 if (!$INPUT->server->str('REMOTE_USER')) return true; // no logged in user, no need for a check 135 if (is_null($token)) $token = $INPUT->str('sectok'); 137 msg('Security Token did not match. Possible CSRF attack.', -1); 179 if ($INPUT->server->has('REMOTE_USER')) { [all …]
|