Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 1167) sorted by relevance

12345678910>>...47

/plugin/yuriigantt/_test/
Dtest_page.txt26 "target": ""
37 "target": ""
48 "target": ""
59 "target": ""
70 "target": ""
81 "target": "next:10"
92 "target": null
103 "target": null
114 "target": "11"
125 "target": "10"
[all …]
/plugin/wordimport/docx/
DImage.php51 $target = $pageid . ':' . $this->rId . '.' . $ext;
52 $this->copyImage($src, $target);
54 $target = $this->rId . '.' . $ext;
56 $target = cleanID($target);
58 $target = $this->alignmentPadding($target);
59 return '{{' . $target . '|' . $this->alt . '}}';
68 * @param string $target The target media id
71 protected function copyImage($src, $target) argument
73 if (file_exists(mediaFN($target)) && md5_file($src) === md5_file(mediaFN($target))) {
78 $auth = auth_quickaclcheck(getNS($target) . ':*');
[all …]
/plugin/asciidocjs/node_modules/clean-css/lib/utils/
Doverride.js2 var target = {};
11 target[key1] = item.slice(0);
13 target[key1] = override(item, {});
15 target[key1] = item;
22 if (key2 in target && Array.isArray(item)) {
23 target[key2] = item.slice(0);
24 } else if (key2 in target && typeof item == 'object' && item !== null) {
25 target[key2] = override(target[key2], item);
27 target[key2] = item;
31 return target;
/plugin/farmsync/meta/
DMediaUpdates.php8 public function updateEntity($medium, $source, $target) { argument
12 $result = new UpdateResults($medium, $target);
13 if (!$this->farm_util->remoteMediaExists($target, $medium)) {
14 $this->farm_util->saveRemoteMedia($source, $target, $medium);
16 $this->results[$target]['passed'][] = $result;
19 $targetModTime = $this->farm_util->getRemoteFilemtime($target, $medium, true);
20 …m_util->readRemoteMedia($source, $medium) == $this->farm_util->readRemoteMedia($target, $medium)) {
22 $this->results[$target]['passed'][] = $result;
25 …teMedia($source, $medium, $targetModTime) == $this->farm_util->readRemoteMedia($target, $medium)) {
26 $this->farm_util->saveRemoteMedia($source, $target, $medium);
[all …]
DPageUpdates.php8 public function updateEntity($page, $source, $target) { argument
9 $result = new UpdateResults($page, $target);
13 if (!$this->farm_util->remotePageExists($target, $page)) {
14 $this->farm_util->saveRemotePage($target, $page, $sourceText, $sourceModTime);
16 $this->results[$target]['passed'][] = $result;
19 $targetModTime = $this->farm_util->getRemoteFilemtime($target, $page);
20 $targetText = $this->farm_util->readRemotePage($target, $page);
23 $this->results[$target]['passed'][] = $result;
29 $this->farm_util->saveRemotePage($target, $page, $sourceText, $sourceModTime);
31 $this->results[$target]['passed'][] = $result;
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DUriResolver.php136 * @param UriInterface $target Target URI
140 public static function relativize(UriInterface $base, UriInterface $target) argument
142 if ($target->getScheme() !== '' &&
143 …($base->getScheme() !== $target->getScheme() || $target->getAuthority() === '' && $base->getAuthor…
145 return $target;
148 if (Uri::isRelativePathReference($target)) {
152 return $target;
155 if ($target->getAuthority() !== '' && $base->getAuthority() !== $target->getAuthority()) {
156 return $target->withScheme('');
162 …$emptyPathUri = $target->withScheme('')->withPath('')->withUserInfo('')->withPort(null)->withHost(…
[all …]
/plugin/fedauth/js/
Dadmin.js19 fa_manager.bindaction('details', function(target, id) { argument
20 if (jQuery(target).attr('collapse') == 'yes') {
21 jQuery(target).removeAttr('collapse');
25 fa_manager.loadinfo(target, id);
35 fa_manager.bindaction('toggle', function(target) { argument
36 var did = jQuery(target).closest('div[id^="fa__"]').attr('id');
38 fa_manager.toggleproviders(target, did);
63 loadinfo: function (sender, target) { argument
64 jQuery('#fa__det_'+target)
68 jQuery('#fa__large form').serialize()+'&ajax=details&fa[details]['+target+']',
[all …]
/plugin/virtualkeyboard/vk/extensions/dom/
Dautosuggest.js19 var Autosuggest = function (target) { argument
183 var xy = DOM.getOffset(target);
185 node.style.top = xy.y+target.offsetHeight+'px';
199 controller.showOnlyMatchingOptions(target.value, options.match);
218 target.focus();
253 var tsp = DOM.getOffset(target)['y']-DOM.getBodyScrollTop()
255 ,bsp = ht - (DOM.getOffset(target)['y'] + target.offsetHeight-DOM.getBodyScrollTop())
257 ,ttop = DOM.getOffset(target)['y']
258 ,tbot = ttop + target.offsetHeight+'px'
268 ct.parentNode.style.top = DOM.getOffset(target)['y'] + target.offsetHeight+'px';
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/
DFacade.php59 * @param string $target
61 public function process(CodeCoverage $coverage, $target) argument
63 $target = $this->getDirectory($target);
97 $directory->render($report, $target . 'index.html');
98 $dashboard->render($report, $target . 'dashboard.html');
104 if (!file_exists($target . $id)) {
105 mkdir($target . $id, 0777, true);
108 $directory->render($node, $target . $id . '/index.html');
109 $dashboard->render($node, $target . $id . '/dashboard.html');
111 $dir = dirname($target . $id);
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUriResolver.php128 public static function relativize(UriInterface $base, UriInterface $target): UriInterface argument
130 if ($target->getScheme() !== ''
131 …&& ($base->getScheme() !== $target->getScheme() || $target->getAuthority() === '' && $base->getAut…
133 return $target;
136 if (Uri::isRelativePathReference($target)) {
140 return $target;
143 if ($target->getAuthority() !== '' && $base->getAuthority() !== $target->getAuthority()) {
144 return $target->withScheme('');
150 …$emptyPathUri = $target->withScheme('')->withPath('')->withUserInfo('')->withPort(null)->withHost(…
152 if ($base->getPath() !== $target->getPath()) {
[all …]
/plugin/wideredit/
Dscript.js12 const target = event.target;
13 $buttons.not(target).removeClass('selected');
14 jQuery(target).toggleClass('selected');
20 const target = event.target;
24 if (selected.form.elements['range'].value < target.form.elements['range'].value) {
25 target.form.elements['hid'].value = selected.form.elements['hid'].value;
26 target.form.elements['summary'].value = selected.form.elements['summary'].value;
29 target.form.elements['range'].value = newRange(
30 target.form.elements['range'].value,
/plugin/dwtimeline/syntax/
H A Drenderpagetimeline.php65 $target = $data['id'] ?? '';
66 if ($target && $target !== $ID && page_exists($target)) {
70 $renderer->meta['relation']['references'][] = $target;
81 $target = $data['id'] ?? '';
82 if ($target === '') {
88 if (auth_quickaclcheck($target) < AUTH_READ) {
89 $renderer->doc .= $this->err('rp_no_acl', [$target]);
94 if (!page_exists($target)) {
95 $renderer->doc .= $this->err('rp_not_found', [$target]);
100 if ($target === $ID) {
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
DCloneIndices.php31 protected $target; variable in Elasticsearch\\Endpoints\\Indices\\CloneIndices
36 $target = $this->target ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_clone/$target";
68 public function setTarget($target): CloneIndices argument
70 if (isset($target) !== true) {
73 $this->target = $target;
DShrink.php31 protected $target; variable in Elasticsearch\\Endpoints\\Indices\\Shrink
36 $target = $this->target ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_shrink/$target";
69 public function setTarget($target): Shrink argument
71 if (isset($target) !== true) {
74 $this->target = $target;
DSplit.php31 protected $target; variable in Elasticsearch\\Endpoints\\Indices\\Split
36 $target = $this->target ?? null;
38 if (isset($index) && isset($target)) {
39 return "/$index/_split/$target";
69 public function setTarget($target): Split argument
71 if (isset($target) !== true) {
74 $this->target = $target;
/plugin/findologicxmlexport/vendor/hoa/file/Link/
DLink.php132 $target = dirname($this->getStreamName()) . DS .
138 if (true === is_link($target)) {
140 $target,
144 } elseif (true === is_file($target)) {
146 $target,
150 } elseif (true === is_dir($target)) {
152 $target,
162 $target
180 * @param string $target Target name.
183 public static function create($name, $target) argument
[all …]
/plugin/editions/
Dscript.js12 var target = $this.attr("href");
13 var hashPos = target.lastIndexOf('#');
14 var targetURL = target.substring(0, hashPos);
15 var targetAnchor = target.substring(hashPos+1, target.length);
22 var target = $this.attr("href");
23 var hashPos = target.lastIndexOf('#');
24 var targetURL = target.substring(0, hashPos);
25 var targetAnchor = target.substring(hashPos+1, target.length);
/plugin/authssocas/vendor/apereo/phpcas/source/CAS/
H A DCookieJar.php108 $target = parse_url($request_url);
109 if ($target === false) {
117 if ($this->cookieMatchesTarget($cookie, $target)) {
311 * @param array|false $target An array of URL attributes as generated by parse_url().
317 protected function cookieMatchesTarget ($cookie, $target) argument
319 if (!is_array($target)) {
324 if (!isset($target['host'])) {
331 if ($cookie['secure'] && $target['scheme'] != 'https') {
339 if (substr($cookie['domain'], 1) == $target['host']) {
344 $pos = strripos($target['host'], $cookie['domain']);
[all …]
/plugin/autlogin/
Dscript.js85 if(e.target.src){ // is it an image?
86 acl.treetoggle(e.target);
87 } else if(e.target.href){ // is it a link?
95 e.target.className += ' cur';
99 if(e.target.className.search(/wikilink1/) > -1){
101 frm.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']);
102 }else if(e.target.className.search(/idx_dir/) > -1){
103 frm.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']);
107 if(e.target.className.search(/wikilink1/) > -1){
109 frm2.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']);
[all …]
/plugin/asciidocjs/node_modules/function-bind/
Dimplementation.js11 var target = this;
12 if (typeof target !== 'function' || toStr.call(target) !== funcType) {
13 throw new TypeError(ERROR_MESSAGE + target);
20 var result = target.apply(
29 return target.apply(
36 var boundLength = Math.max(0, target.length - args.length);
44 if (target.prototype) {
46 Empty.prototype = target.prototype;
/plugin/impressjs/tpl/dokuwiki/
Dimpress.js451 var target = { variable
471 var zoomin = target.scale >= currentState.scale;
482 var targetScale = target.scale * windowScale;
506 transform: rotate(target.rotate, true) + translate(target.translate),
520 if ( currentState.scale === target.scale ||
521 … (currentState.rotate.x === target.rotate.x && currentState.rotate.y === target.rotate.y &&
522 … currentState.rotate.z === target.rotate.z && currentState.translate.x === target.translate.x &&
523 …currentState.translate.y === target.translate.y && currentState.translate.z === target.translate.z…
528 currentState = target;
587 event.target.classList.remove("past");
[all …]
/plugin/matrixnotifierwas/vendor/rappasoft/laravel-helpers/src/
Dhelpers.php479 * @param mixed $target
484 function data_get($target, $key, $default = null) argument
487 return $target;
491 if (is_array($target)) {
492 if (!array_key_exists($segment, $target)) {
496 $target = $target[$segment];
497 } elseif ($target instanceof ArrayAccess) {
498 if (!isset($target[$segment])) {
502 $target = $target[$segment];
503 } elseif (is_object($target)) {
[all …]
/plugin/farmsync/action/
Dajax.php54 $target = $INPUT->str('farmsync-animal');
78 $targetText = $this->farm_util->readRemotePage($target, $page, false);
97 $this->farm_util->saveRemoteMedia($source, $target, $page);
99 $this->overwriteRemotePage($source, $target, $page);
102 $this->farm_util->importAnimalStructSchema($target, $page, $json[$page]);
104 $targetFN = $this->farm_util->getRemoteFilename($target, $page, null, false);
109 $this->farm_util->clearAnimalCache($target);
116 $this->writeManualMerge($source, $target, $page, $content);
117 $this->farm_util->clearAnimalCache($target);
136 public function overwriteRemotePage($source, $target, $page) { argument
[all …]
/plugin/parserfunctions/
Dhelper.php144 * @param string $target The identifier or path to check
147 public function checkExistence($target) { argument
149 $target = preg_replace('/\s*:\s*/', ':', $target);
152 if (file_exists($target)) {
157 if (strlen($target) > 0 && $target[0] === '/') {
158 $relativePath = ltrim($target, '/');
166 if (page_exists($target)) {
171 if (file_exists(mediaFN($target))) {
176 $namespacePath = str_replace(':', '/', $target);
/plugin/markdowku/
Danchorsreference.php49 $target = p_get_metadata($ID, 'markdowku_references_'.$rid, METADATA_RENDER_USING_CACHE);
50 if ($target == '') {
52 } else if (preg_match('/^mailto:/', $target) or
53 preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>', $target)) {
54 $target = preg_replace('/^mailto:/', '', $target);
55 $renderer->emaillink($target, $title);
57 $renderer->externallink($target, $title);

12345678910>>...47