| /plugin/bugzillaint/helper/ |
| D | bugzillaclient.php | 23 $this->login = $login; 24 $this->password = $password; 29 * Fetch dependency tree 36 public function getBugDependencyTrees( $ids, $depth, $extras ) { argument 38 …return $this->getDependenciesRecursive( $f_ids, $depth == -1 ? $this->getConf('tree_depth') : $dep… 40 private function getDependenciesRecursive( $ids, $depth, $extras ) { argument 41 …$includeFields = array_merge( $this->includeFields, $this->extrasToIncludeFields($extras), array('… 42 …$response = $this->bugzillaRPC('Bug.get', array('ids' => $ids, 'include_fields' => $includeFields … 49 $bug['depends_on'] = $this->getDependenciesRecursive( $bug['depends_on'], $depth--, $extras ); 111 if ( preg_match('/product:([A-Za-z0-9_,]+)/', $query, $m) ) { [all …]
|
| /plugin/dev/.github/workflows/ |
| D | getEventNames.yml | 5 - cron: "0 0 * * *" 10 runs-on: Ubuntu-latest 12 - name: Install pup 19 - name: Checkout 22 fetch-depth: 0 24 - name: Download Event Names 28 - name: Create Pull Request 29 uses: peter-evans/create-pull-request@v4 31 commit-message: "Update event names" 34 delete-branch: true
|
| /plugin/authskautis/.github/workflows/ |
| H A D | main.yml | 6 - "*" 12 build-release: 13 runs-on: ubuntu-latest 16 - name: Checkout 19 fetch-depth: 0 21 - name: Setup PHP + Composer 22 uses: shivammathur/setup-php@v2 24 php-version: "8.2" 27 - name: Install zip 28 run: sudo apt-get update && sudo apt-get install -y zip rsync [all …]
|
| /plugin/webdav/vendor/sabre/dav/lib/DAV/ |
| D | PropFind.php | 22 * fetch every property, because it was used so often and it's so heavy 40 * @param int $depth 43 function __construct($path, array $properties, $depth = 0, $requestType = self::NORMAL) { argument 45 $this->path = $path; 46 $this->properties = $properties; 47 $this->depth = $depth; 48 $this->requestType = $requestType; 51 $this->properties = [ 55 '{DAV:}quota-used-bytes', 56 '{DAV:}quota-available-bytes', [all …]
|
| D | Server.php | 28 …* Infinity is used for some request supporting the HTTP Depth header and indicates that the operat… 30 const DEPTH_INFINITY = -1; 85 * plugins override this. For example, the WebDAV-Sync sync-collection 86 * report will set this to 'report-sync-collection'. 93 * This is a list of properties that are always server-controlled, and 110 '{DAV:}quota-available-bytes', 111 '{DAV:}quota-used-bytes', 114 '{DAV:}supported-privilege-set', 115 '{DAV:}current-user-privilege-set', 117 '{DAV:}acl-restrictions', [all …]
|
| D | CorePlugin.php | 34 $this->server = $server; 35 $server->on('method:GET', [$this, 'httpGet']); 36 $server->on('method:OPTIONS', [$this, 'httpOptions']); 37 $server->on('method:HEAD', [$this, 'httpHead']); 38 $server->on('method:DELETE', [$this, 'httpDelete']); 39 $server->on('method:PROPFIND', [$this, 'httpPropFind']); 40 $server->on('method:PROPPATCH', [$this, 'httpPropPatch']); 41 $server->on('method:PUT', [$this, 'httpPut']); 42 $server->on('method:MKCOL', [$this, 'httpMkcol']); 43 $server->on('method:MOVE', [$this, 'httpMove']); [all …]
|
| /plugin/davcal/vendor/sabre/dav/lib/DAV/ |
| H A D | PropFind.php | 22 * fetch every property, because it was used so often and it's so heavy 40 * @param int $depth 43 function __construct($path, array $properties, $depth = 0, $requestType = self::NORMAL) { argument 45 $this->path = $path; 46 $this->properties = $properties; 47 $this->depth = $depth; 48 $this->requestType = $requestType; 51 $this->properties = [ 55 '{DAV:}quota-used-bytes', 56 '{DAV:}quota-available-bytes', [all …]
|
| H A D | Server.php | 15 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 22 …* Infinity is used for some request supporting the HTTP Depth header and indicates that the operat… 24 const DEPTH_INFINITY = -1; 79 * plugins override this. For example, the WebDAV-Sync sync-collection 80 * report will set this to 'report-sync-collection'. 87 * This is a list of properties that are always server-controlled, and 104 '{DAV:}quota-available-bytes', 105 '{DAV:}quota-used-bytes', 108 '{DAV:}supported-privilege-set', 109 '{DAV:}current-user-privilege-set', [all …]
|
| H A D | CorePlugin.php | 13 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 34 $this->server = $server; 35 $server->on('method:GET', [$this, 'httpGet']); 36 $server->on('method:OPTIONS', [$this, 'httpOptions']); 37 $server->on('method:HEAD', [$this, 'httpHead']); 38 $server->on('method:DELETE', [$this, 'httpDelete']); 39 $server->on('method:PROPFIND', [$this, 'httpPropFind']); 40 $server->on('method:PROPPATCH', [$this, 'httpPropPatch']); 41 $server->on('method:PUT', [$this, 'httpPut']); 42 $server->on('method:MKCOL', [$this, 'httpMkcol']); [all …]
|
| /plugin/siteexport/action/ |
| D | ajax.php | 6 * @author i-net software <tools@inetsoftware.de> 11 if (!defined('DOKU_INC')) define('DOKU_INC', /** @scrutinizer ignore-type */ realpath(dirname(__FIL… 47 … $controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'ajax_siteexport_provider'); 48 $controller->register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 'siteexport_action'); 52 * AJAX Provider - check what is going to be done 59 if (!strstr($event->data, '__siteexport')) 64 $this->__init_functions(true); 66 switch ($event->data) { 67 case '__siteexport_getsitelist': $this->ajax_siteexport_getsitelist($event); break; 68 case '__siteexport_addsite': $this->ajax_siteexport_addsite($event); break; [all …]
|
| /plugin/combo/.github/workflows/ |
| H A D | php-test-reusable.yml | 3 # 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 16 contents: read # needed to fetch code 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 [all …]
|
| /plugin/sync/ |
| D | admin.php | 19 $this->_profileLoad(); 20 $this->profno = preg_replace('/[^0-9]+/','',$_REQUEST['no']); 24 if(!is_null($this->client)) return true; 26 if ( isset($this->profiles[$this->profno]['timeout']) ){ 27 $timeout = (int) $this->profiles[$this->profno]['timeout']; 29 $timeout = $this->defaultTimeout; 33 … $this->client = new IXR_Client($this->profiles[$this->profno]['server'], false, 80, $timeout); 36 … $this->client = new dokuwiki\Remote\IXR\Client($this->profiles[$this->profno]['server']); 37 $this->client->timeout = $timeout; 41 if($this->profiles[$this->profno]['user']){ [all …]
|
| /plugin/webdavclient/ |
| D | helper.php | 26 $this->syncChangeLogFile = $conf['metadir'].'/.webdavclient/synclog'; 28 $this->client = new DokuHTTPClient(); 29 $client_headers = $this->client->headers; 37 if($this->sqlite === null) 39 $this->sqlite = plugin_load('helper', 'sqlite'); 40 if(!$this->sqlite) 43 msg('This plugin requires the sqlite plugin. Please install it.', -1); 46 if(!$this->sqlite->init('webdavclient', DOKU_PLUGIN.'webdavclient/db/')) 48 $this->sqlite = null; 53 return $this->sqlite; [all …]
|
| /plugin/codemirror/dist/modes/ |
| D | sql.min.js.map | 1 …depth","m","pushContext","type","context","prev","indent","indentation","col","column","popContext…
|
| /plugin/commonmark/ |
| H A D | action.php | 3 * This file is part of the clockoon/dokuwiki-commonmark-plugin package. 8 * - CommonMark JS reference parser (https://bitly.com/commonmark-js) (c) John MacFarlane 9 …* - league/commonmark (https://github.com/thephpleague/commonmark) (c) Colin O'Dell <colinodell@gm… 24 // [hid] => {[depth], [startline], [endline]} 35 $controller->register_hook('PARSER_WIKITEXT_PREPROCESS', 'BEFORE', $this, 37 if($this->getConf('fix_secedit')) { 38 $controller->register_hook('HTML_SECEDIT_BUTTON', 'BEFORE', $this, 47 //echo(print_r($this->headingInfo)); 48 //echo(print_r($this->linePosition).'<br />'); 52 $hid = $event->data['hid']; [all …]
|
| /plugin/indexmenu/lang/en/ |
| D | lang.php | 10 $lang['fetch'] = 'Show'; 27 …rial">Theme Tutorial</a> page. <br />Then you could make more people happy :-) sending it to the p… 39 $lang['js']['nsdepth'] = 'Depth';
|
| /plugin/syntaxhighlightjs/static/lib/highlightjs/languages/ |
| D | sql.min.js | 1 …--","$");return{cI:!0,i:/[<>{}*]/,c:[{bK:"begin end start commit rollback savepoint lock alter cre…
|
| /plugin/webdav/vendor/sabre/dav/lib/CardDAV/Backend/ |
| D | PDO.php | 50 $this->pdo = $pdo; 62 …$stmt = $this->pdo->prepare('SELECT id, uri, displayname, principaluri, description, synctoken FRO… 63 $stmt->execute([$principalUri]); 67 foreach ($stmt->fetchAll() as $row) { 74 … '{' . CardDAV\Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], 76 …'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctok… 106 '{' . CardDAV\Plugin::NS_CARDDAV . '}addressbook-description', 109 $propPatch->handle($supportedProperties, function($mutations) use ($addressBookId) { 118 case '{' . CardDAV\Plugin::NS_CARDDAV . '}addressbook-description' : 123 $query = 'UPDATE ' . $this->addressBooksTableName . ' SET '; [all …]
|
| /plugin/davcal/vendor/sabre/dav/lib/CardDAV/Backend/ |
| H A D | PDO.php | 13 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 50 $this->pdo = $pdo; 62 …$stmt = $this->pdo->prepare('SELECT id, uri, displayname, principaluri, description, synctoken FRO… 63 $stmt->execute([$principalUri]); 67 foreach ($stmt->fetchAll() as $row) { 74 … '{' . CardDAV\Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], 76 …'{http://sabredav.org/ns}sync-token' => $row['synctoken'] ? $row['synctok… 106 '{' . CardDAV\Plugin::NS_CARDDAV . '}addressbook-description', 109 $propPatch->handle($supportedProperties, function($mutations) use ($addressBookId) { 118 case '{' . CardDAV\Plugin::NS_CARDDAV . '}addressbook-description' : [all …]
|
| /plugin/webdav/vendor/sabre/dav/lib/DAVACL/ |
| D | Plugin.php | 23 * In addition it also provides support for the {DAV:}current-user-principal 24 * property, defined in RFC5397 and the {DAV:}expand-property report, as 50 * This checks every parentnode in the tree, but not leaf-nodes. 73 * in directory listings (PROPFIND on parent with Depth: 1) 84 * the {DAV:}principal-property-search report. 92 '{http://sabredav.org/ns}email-address' => 'Email address', 125 return ['access-control', 'calendarserver-principal-property-search']; 158 * This will be used in the {DAV:}supported-report-set property. 168 '{DAV:}expand-property', 169 '{DAV:}principal-match', [all …]
|
| /plugin/katex/_assets/ |
| D | katex.min.js | 1 …-15,n):o.slice(0,n))+l+(s+15<o.length?o.slice(s,s+15)+"\u2026":o.slice(s))}var h=new Error(a);retu… property
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
| H A D | Plugin.php | 23 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 75 $node = $this->server->tree->getNodeForPath($parent); 79 $node->getChild($name); 112 return ['calendar-access', 'calendar-proxy']; 133 * This will be used in the {DAV:}supported-report-set property. 142 $node = $this->server->tree->getNodeForPath($uri); 146 $reports[] = '{' . self::NS_CALDAV . '}calendar-multiget'; 147 $reports[] = '{' . self::NS_CALDAV . '}calendar-query'; 150 $reports[] = '{' . self::NS_CALDAV . '}free-busy-query'; 153 // if we say we support it on the calendar-home, even though this is [all …]
|
| /plugin/jquery-syntax/jquery-syntax/ |
| D | jquery.syntax.brush.sql.js | 5 …-- .*$/gm,klass:'comment',allow:['href']};Syntax.register('sql',function(brush){var keywords=["A",…
|
| /plugin/webdav/vendor/sabre/dav/lib/CalDAV/ |
| D | Plugin.php | 76 $node = $this->server->tree->getNodeForPath($parent); 80 $node->getChild($name); 106 // excludes things like the calendar-proxy-read principal (which it 123 return ['calendar-access', 'calendar-proxy']; 144 * This will be used in the {DAV:}supported-report-set property. 153 $node = $this->server->tree->getNodeForPath($uri); 157 $reports[] = '{' . self::NS_CALDAV . '}calendar-multiget'; 158 $reports[] = '{' . self::NS_CALDAV . '}calendar-query'; 161 $reports[] = '{' . self::NS_CALDAV . '}free-busy-query'; 164 // if we say we support it on the calendar-home, even though this is [all …]
|
| /plugin/davcal/vendor/sabre/dav/lib/CardDAV/ |
| H A D | Plugin.php | 19 * @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/). 66 $server->on('propFind', [$this, 'propFindEarly']); 67 $server->on('propFind', [$this, 'propFindLate'], 150); 68 $server->on('report', [$this, 'report']); 69 $server->on('onHTMLActionsPanel', [$this, 'htmlActionsPanel']); 70 $server->on('beforeWriteContent', [$this, 'beforeWriteContent']); 71 $server->on('beforeCreateFile', [$this, 'beforeCreateFile']); 72 $server->on('afterMethod:GET', [$this, 'httpAfterGet']); 74 $server->xml->namespaceMap[self::NS_CARDDAV] = 'card'; 76 …$server->xml->elementMap['{' . self::NS_CARDDAV . '}addressbook-query'] = 'Sabre\\CardDAV\\Xml\\Re… [all …]
|