Home
last modified time | relevance | path

Searched +full:add +full:- +full:matcher (Results 1 – 25 of 72) sorted by relevance

123

/plugin/combo/db/combo/
H A Dupdate0003.sql1 -- Add the type (ie http or id)
2 alter table REDIRECTIONS_LOG add column METHOD TEXT;
4 -- Rename redirection to page rules
8 MATCHER TEXT unique NOT NULL, -- the matcher pattern field
9 TARGET TEXT NOT NULL, -- the target
10 PRIORITY INTEGER NOT NULL, -- the priority in which the match must be performed
11 TIMESTAMP TIMESTAMP NOT NULL -- a update/create timestamp
14 insert into PAGE_RULES_tmp(ID, MATCHER, TARGET, PRIORITY, TIMESTAMP)
/plugin/combo/admin/
H A Dpagerules.php43 // of use of $this->getLang
44 $this->setupLocale();
56 if (!isset($this->pageRuleManager)) {
58 $this->pageRuleManager = new PageRules();
87 return ucfirst(PluginUtility::$PLUGIN_NAME) . " - " . $this->lang['PageRules'];
92 return DirectoryLayout::getComboImagesDirectory()->resolve('page-next.svg')->toAbsoluteId();
102 $this->initiatePageRuleManager();
105 * If one of the form submit has the add key
110 $matcher = $_POST[PageRules::MATCHER_NAME] ?? null;
114 if ($matcher == null) {
[all …]
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md5 [![Build Status](https://travis-ci.org/myclabs/DeepCopy.png?branch=1.x)](https://travis-ci.org/mycl…
7 …ttps://scrutinizer-ci.com/g/myclabs/DeepCopy/badges/quality-score.png?s=2747100c19b275f93a777e3297…
8 …nloads](https://poser.pugx.org/myclabs/deep-copy/downloads.svg)](https://packagist.org/packages/my…
14 1. [Using simply `clone`](#using-simply-clone)
15 1. [Overridding `__clone()`](#overridding-__clone)
16 1. [With `DeepCopy`](#with-deepcopy)
17 1. [How it works](#how-it-works)
18 1. [Going further](#going-further)
20 1. [Property name](#property-name)
21 1. [Specific property](#specific-property)
[all …]
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
DREADME.md5 [![Build Status](https://travis-ci.org/myclabs/DeepCopy.png?branch=1.x)](https://travis-ci.org/mycl…
7 …ttps://scrutinizer-ci.com/g/myclabs/DeepCopy/badges/quality-score.png?s=2747100c19b275f93a777e3297…
8 …nloads](https://poser.pugx.org/myclabs/deep-copy/downloads.svg)](https://packagist.org/packages/my…
19 1. [Using simply `clone`](#using-simply-clone)
20 1. [Overridding `__clone()`](#overridding-__clone)
21 1. [With `DeepCopy`](#with-deepcopy)
22 1. [How it works](#how-it-works)
23 1. [Going further](#going-further)
25 1. [Property name](#property-name)
26 1. [Specific property](#specific-property)
[all …]
/plugin/farmer/vendor/splitbrain/php-ico/.github/workflows/
H A Dtest.yaml7 name: PHP ${{ matrix.php-versions }}
8 runs-on: ubuntu-latest
13 php-versions: [7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
14 fail-fast: false
17 - name: Checkout
20 - name: Setup PHP
21 uses: shivammathur/setup-php@v2
23 php-version: ${{ matrix.php-versions }}
25 - name: Setup problem matchers
27 echo ::add-matcher::${{ runner.tool_cache }}/php.json
[all …]
/plugin/timezoneco/.github/workflows/
H A DphpTestLinux.yml.disabled7 name: PHP ${{ matrix.php-versions }} DokuWiki ${{ matrix.dokuwiki-branch }}
8 runs-on: ubuntu-latest
13 php-versions: ['7.2', '7.3', '7.4', '8.0']
14 dokuwiki-branch: [ 'master', 'stable']
16 - dokuwiki-branch: 'stable'
17 php-versions: '8.0'
18 fail-fast: false
21 - name: Checkout
24 - name: Setup PHP
25 uses: shivammathur/setup-php@v2
[all …]
/plugin/pureldap/.github/workflows/
H A DphpTestActiveDirectory.yml7 name: PHP ${{ matrix.php-versions }} DokuWiki ${{ matrix.dokuwiki-branch }}
8 runs-on: macos-latest
13 php-versions: ['7.4']
14 dokuwiki-branch: [ 'master']
15 fail-fast: false
18 - name: Cache Vagrant boxes
22 key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
23 restore-keys: |
24 ${{ runner.os }}-vagrant-
26 - name: Install AD
[all …]
/plugin/combo/ComboStrap/
H A DPageRules.php16 const MATCHER_NAME = 'MATCHER';
31 ->createRequest()
32 ->setQueryParametrized('delete from PAGE_RULES where id = ?', [$ruleId]);
34 $request->execute();
36 … LogUtility::msg("Something went wrong when deleting the redirections. {$e->getMessage()}");
38 $request->close();
55 ->createRequest()
56 ->setQueryParametrized("SELECT count(*) FROM PAGE_RULES where ID = ?", [$id]);
60 ->execute()
61 ->getFirstCellValueAsInt();
[all …]
/plugin/combo/.github/workflows/
H A Dphp-test-reusable.yml3 # https://docs.github.com/en/actions/using-workflows/reusing-workflows#creating-a-reusable-workflow
7 # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs
19 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaults
31 runs-on: ubuntu-latest
34 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_id…
39 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-ad…
41 fail-fast: false
48 - name: Phpunit ${{ matrix.php }}
54 # https://github.com/marketplace/actions/setup-php-action#matrix-setup
55 - name: Setup PHP
[all …]
/plugin/jsoncode/
DjsonTree.js11 /* ---------- Utilities ---------- */
15 * Returns js-"class" of value
17 * @param val {any type} - value
18 * @returns {string} - for example, "[object Function]"
26 * In other cases - throws an exception
28 * @param val {any type} - the value for new node
62 * @param obj {Object | Array} - a list or a dict with child nodes
63 * @param func {Function} - the function for each item
71 isLast = obj.length - 1;
82 isLast = keys.length - 1;
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dobjects.js10 // the test above is not safe because it relies on for-in enumeration order
35 assert.deepEqual(_.keys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');
40 // the test above is not safe because it relies on for-in enumeration order
63 assert.deepEqual(_.allKeys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');
97 …assert.deepEqual(['b', 'd'], _.functions(obj), 'can grab the function names of any passed-in objec…
160 …strictEqual(_.extendOwn(val, {a: 1}), val, 'extending non-objects results in returning the non-obj…
166 …assert.deepEqual(result, {a: 1, 0: 1, 1: 2, length: 2}, 'should treat array-like objects like norm…
294 … assert.deepEqual(_.create(val), {}, 'should return empty object when a non-object is provided');
312 assert.notOk(created.hasOwnProperty('foo'), 'should only add own properties');
329 assert.notOk(_.isEqual(0, -0), '`0` is not equal to `-0`');
[all …]
/plugin/asciidocjs/node_modules/glob/
Dcommon.js37 if (pattern.slice(-3) === '/**') {
43 matcher: new Minimatch(pattern, { dot: true }),
52 // base-matching: just use globstar for that.
53 if (options.matchBase && -1 === pattern.indexOf("/")) {
189 var slash = p.slice(-1) === '/'
194 m = m.slice(0, -1)
227 // Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's conten…
233 return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path))
/plugin/datatables/assets/datatables.net-i18n/
Dda.json4 "zeroRecords": "Ingen linjer matcher søgningen",
31 "-1": "Vis alle rækker",
80 "title": "Filter aktive - %d",
90 "unknown": "-",
148 "add": "Tilføj betingelse", string
/plugin/sequencediagram/bower_components/underscore/
Dunderscore.js3 // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
9 // --------------
35 // Naked function reference for surrogate-prototype-swapping.
46 // backwards-compatibility for the old `require()` API. If we're in
47 // the browser, add `_` as a global object.
61 // of the passed-in callback, to be repeatedly applied in other Underscore
84 // A mostly-internal function to generate callbacks that can be applied
86 // identity, an arbitrary callback, a property matcher, or a property accessor.
90 if (_.isObject(value)) return _.matcher(value);
133 // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
Dunderscore.js3 // (c) 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
9 // --------------
37 // Naked function reference for surrogate-prototype-swapping.
48 // backwards-compatibility for their old module API. If we're in
49 // the browser, add `_` as a global object.
65 // of the passed-in callback, to be repeatedly applied in other Underscore
73 // The 2-parameter case has been omitted only because no current consumers
91 // an arbitrary callback, a property matcher, or a property accessor.
96 if (_.isObject(value)) return _.matcher(value);
102 // This abstraction hides the internal-only argCount argument.
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
DTestCase.php29 * 4) Clean-up after a test by overriding tearDown().
45 * $this->value1 = 2;
46 * $this->value2 = 3;
60 * $this->assertTrue($this->value1 + $this->value2 == 5);
297 $this->setName($name);
300 $this->data = $data;
301 $this->dataName = $dataName;
315 $class->name,
316 $this->getName(false)
319 return $buffer . $this->getDataSetAsString();
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
D12.12.js1-]?\d+(?:(?:N|(?:[eE][+\-]?\d+))|(?:\.?\d*(?:M|(?:[eE][+\-]?\d+))?)|\/\d+|[xX][0-9a-fA-F]+|r[0-9a-
D12.12.js.map1-editor/esm/vs/basic-languages/clojure/clojure.js"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAA…
/plugin/codemirror/dist/modes/
Dclojure.min.js1-enter","monitor-exit","new","quote","recur","set!","throw","try","var"];var e=["*","*'","*1","*2"…
/plugin/tagfilter/script/select2/
Dselect2.js13 http://www.apache.org/licenses/LICENSE-2.0
14 http://www.gnu.org/licenses/gpl-2.0.html
25 * 4-10 times faster .each replacement
29 var j = $([0]), i = -1, l = this.length;
99 MEASURE_SCROLLBAR_TEMPLATE = "<div class='select2-measure-scrollbar'></div>",
134 return -1;
142 width: $template.width() - $template[0].clientWidth,
143 height: $template.height() - $template[0].clientHeight
161 if (a.constructor === String) return a+'' === b+''; // a+'' - in case 'a' is a String object
162 if (b.constructor === String) return b+'' === a+''; // b+'' - in case 'b' is a String object
[all …]
Dselect2.min.js13 http://www.apache.org/licenses/LICENSE-2.0
14 http://www.gnu.org/licenses/gpl-2.0.html
21-1,e=this.length;++d<e&&(c.context=c[0]=this[d])&&b.call(c[0],d,c)!==!1;);return this}})}(jQuery),…
22-a.offset().top-a.height(),c<=this.opts.loadMorePadding&&(b.addClass("select2-active"),this.opts.q… property
/plugin/diagramsnet/lib/WEB-INF/lib/
Dpusher-http-java-1.0.0.jar ... META-INF/ META-INF/MANIFEST.MF com/ com/pusher ... ...
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/
Dbackbone.js3 // (c) 2010-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
37 // -------------
62 // set a `X-Http-Method-Override` header.
67 // `application/x-www-form-urlencoded` instead and will send the model in a
113 var matcher = _.matches(attrs);
115 return matcher(model.attributes);
120 // ---------------
124 // remove with `off`; `trigger`-ing an event fires all callbacks in
138 // space-separated events `"change blur", callback` and jQuery-style event
149 // Handle space-separated event names by delegating them individually.
[all …]
/plugin/freechat/phpfreechat/data/public/js/
Dprototype.js2 * (c) 2005-2008 Sam Stephenson
4 * Prototype is freely distributable under the terms of an MIT-style license.
7 *--------------------------------------------------------------------------*/
15 WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
16 Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1,
30 JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,
254 return '"' + this.getUTCFullYear() + '-' +
255 (this.getUTCMonth() + 1).toPaddedString(2) + '-' +
284 /*--------------------------------------------------------------------------*/
356 if (--count < 0) return match[0];
[all …]
/plugin/bpmnioeditor/vendor/bpmnio-js/
Dbpmn-modeler.development.js2 * bpmn-js - bpmn-modeler v8.8.2
4 * Copyright (c) 2014-present, camunda Services GmbH
9 * Source Code: https://github.com/bpmn-io/bpmn-js
11 * Date: 2021-10-20
68 var rem = digits - Math.floor(digits);
284 * @param {Function|Object} matcher
289 function find(collection, matcher) { argument
290 matcher = toMatcher(matcher);
293 if (matcher(val, key)) {
304 * @param {Function} matcher
[all …]

123