| /plugin/diagramsnet/lib/WEB-INF/lib/ |
| D | pusher-http-java-1.0.0.jar | ... com/
com/pusher/
com/pusher/rest/
com/pusher/rest/data/
com |
| /plugin/blog/syntax/ |
| D | archive.php | 30 list($ns, $rest) = explode('?', $match, 2); 42 if (!$rest) { 43 $rest = $ns; 53 if (preg_match("/\d{4}-\d{2}-\d{2}/", $rest)) { 54 list($year, $month, $day) = explode('-', $rest, 3); 60 } elseif (preg_match("/\d{4}-\d{2}/", $rest)) { 61 list($year, $month) = explode('-', $rest, 2); 75 } elseif (preg_match("/\d{4}/", $rest)) { 76 $start = mktime(0, 0, 0, 1, 1, $rest); 77 $end = mktime(0, 0, 0, 1, 1, $rest + 1); [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | value.content.item.php | 19 $rest = $result['rest']; 24 'rest' => $rest); 56 list($value, $rest) = CSS::parse_string($string); 61 'rest' => $rest); 119 $rest = $matches[2]; 124 'rest' => $rest);
|
| D | css.parse.properties.php | 42 $rest = $matches[2]; 44 return $rest; 72 $rest = $matches[2]; 74 return $rest;
|
| D | css.inc.php | 153 $rest = $matches[2]; 157 return array($value, $rest); 162 $rest = $matches[2]; 166 return array($value, $rest);
|
| D | value.content.php | 37 $rest = $result['rest']; 39 $string = $rest;
|
| D | tag.frame.inc.php | 77 $rest = $total - array_sum($values); 87 $part_size = $rest / $parts;
|
| /plugin/issuelinks/services/ |
| D | Jira.service.php | 269 $endpoint = '/rest/api/2/search?jql=' . $jqlQuery . '&maxResults=50&startAt=' . $startat; 332 $projects = $this->makeJiraRequest('/rest/api/2/project', [], 'GET'); 359 $this->makeJiraRequest('/rest/webhooks/1.0/webhook/' . $oldID, [], 'DELETE'); 383 $response = $this->makeJiraRequest('/rest/webhooks/1.0/webhook', $payload, 'POST'); 389 … $db->saveWebhook('jira', $projectsString, $newWebhookID, 'jira rest webhooks have no secrets :/'); 413 $this->makeJiraRequest('/rest/webhooks/1.0/webhook/' . $oldID, [], 'DELETE'); 439 $response = $this->makeJiraRequest('/rest/webhooks/1.0/webhook', $payload, 'POST'); 444 … $db->saveWebhook('jira', $projectsString, $newWebhookID, 'jira rest webhooks have no secrets :/');
|
| /plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/ |
| D | util.php | 253 $rest = substr($path, $len); 255 $rest = preg_replace("#$filetypes#","",$rest); 256 $rest = trim($rest,'\\/'); 257 $folders = preg_split("#[/\\\\]#", $rest);
|
| D | check_acl.php | 295 list($id,$rest) = preg_split('/\s+/',$acl[$i],2); 297 $rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest); 298 $acl[$i] = "$id\t$rest";
|
| /plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/ |
| D | util.php | 253 $rest = substr($path, $len); 255 $rest = preg_replace("#$filetypes#","",$rest); 256 $rest = trim($rest,'\\/'); 257 $folders = preg_split("#[/\\\\]#", $rest);
|
| D | check_acl.php | 296 list($id,$rest) = preg_split('/\s+/',$acl[$i],2); 298 $rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest); 299 $acl[$i] = "$id\t$rest";
|
| /plugin/fckg/fckeditor/editor/filemanager/connectors/php/ |
| D | util.php | 253 $rest = substr($path, $len); 255 $rest = preg_replace("#$filetypes#","",$rest); 256 $rest = trim($rest,'\\/'); 257 $folders = preg_split("#[/\\\\]#", $rest);
|
| D | check_acl.php | 264 list($id,$rest) = preg_split('/\s+/',$acl[$i],2); 266 $rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest); 267 $acl[$i] = "$id\t$rest";
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | transform.js | 136 if (self.rest) self.rest = self.rest.transform(tw); 141 if (self.rest) self.rest = self.rest.transform(tw); 199 if (self.rest) self.rest = self.rest.transform(tw); 207 if (self.rest) self.rest = self.rest.transform(tw);
|
| D | mozilla-ast.js | 56 var argnames = [], rest = null; 59 rest = from_moz(param.argument); 68 rest: rest, property 87 var argnames = [], rest = null; 90 rest = from_moz(param.argument); 100 rest: rest, property 111 var argnames = [], rest = null; 114 rest = from_moz(param.argument); 124 rest: rest, property 253 var elements = [], rest = null; [all …]
|
| D | parse.js | 1258 var rest = null; 1260 rest = to_funarg(node.elements.pop().expression); 1265 rest: rest, property 1281 if (node.rest) node.rest = to_funarg(node.rest); 1288 if (node.rest) node.rest = to_funarg(node.rest); 1293 var rest = null; 1295 rest = to_funarg(node.properties.pop().expression); 1308 rest: rest, property 1330 var rest = exprs.rest || null; 1331 if (rest) rest = to_funarg(rest); [all …]
|
| /plugin/asciidocjs/node_modules/lodash/ |
| D | rest.js | 32 function rest(func, start) { function 40 module.exports = rest;
|
| /plugin/searchns/ |
| D | helper.php | 170 $rest = array_diff_key($results, $all); 171 if ($rest !== []) { 173 $all = array_merge($all, $rest);
|
| /plugin/asciidocjs/node_modules/async/ |
| D | during.js | 61 function next(err, ...rest) { argument 63 results = rest;
|
| D | whilst.js | 61 function next(err, ...rest) { argument 63 results = rest;
|
| /plugin/cssperpage/ |
| D | syntax.php | 61 list($class,$rest) = explode(';',$match); 62 if($rest) {
|
| /plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
| D | PDF417.php | 920 $rest = substr($code, 6); 924 $rest = ''; 949 $code = $rest; 956 $rest = substr($code, 44); 959 $rest = ''; 967 $code = $rest;
|
| /plugin/diagrams/syntax/ |
| H A D | embed.php | 27 [$open, $rest] = sexplode('>', $match, 2); 29 $svg = substr($rest, 0, -10);
|
| /plugin/fedauth/Auth/OpenID/ |
| D | FileStore.php | 163 list($proto, $rest) = explode('://', $server_url, 2); 164 $parts = explode('/', $rest); 374 list($proto, $rest) = explode('://', $server_url, 2); 377 $rest = ''; 380 $parts = explode('/', $rest, 2);
|