Home
last modified time | relevance | path

Searched refs:meta (Results 401 – 425 of 1683) sorted by path

1...<<11121314151617181920>>...68

/plugin/dbquery/lang/en/
H A Dsettings.php8 $meta['namespace'] = 'The namespace in which your queries are created. Be sure to use the proper AC…
9 $meta['dsn'] = 'The connection <a href="https://www.php.net/manual/en/pdo.construct.php">DSN string…
10 $meta['user'] = 'The user name to connect to your database.';
11 $meta['pass'] = 'The password to connect to your database';
/plugin/deeplautotranslate/conf/
H A Dmetadata.php3 $meta['api_key'] = array('string');
4 $meta['api'] = array('multichoice', '_choices' => array('free', 'pro'));
5 $meta['mode'] = array('multichoice', '_choices' => array('direct', 'editor'));
6 $meta['show_button'] = array('onoff');
7 $meta['push_langs'] = array('string');
8 $meta['glossary_ns'] = array('string');
9 $meta['blacklist_regex'] = array('regex');
10 $meta['direct_regex'] = array('regex');
11 $meta['editor_regex'] = array('regex');
12 $meta['ignored_expression
[all...]
/plugin/definitionlist/conf/
H A Dmetadata.php6 $meta['dt_fancy'] = array('onoff');
7 $meta['classname'] = array('string');
/plugin/deniedpage/conf/
H A Dmetadata.php3 $meta['deniedpage'] = array('string');
/plugin/denyactions/conf/
H A Dmetadata.php9 $meta['denyactions'] = array('Actions to deny from read only users. (media, index, etc)');
10 $meta['denyrev'] = array('onoff');
11 $meta['denystyle'] = array('multichoice', '_choices' => array('silent', 'msg', 'login'));
/plugin/description/conf/
H A Dmetadata.php9 $meta['keyword_source'] = array('multichoice','_choices' => array('abstract', 'global','syntax'));
10 $meta['global_description'] = array('string');
/plugin/description/
H A Dplugin.info.txt6 desc Add a specified string to a description meta header
H A Dsyntax.php42 $renderer->meta['plugin_description']['keywords'] = $description;
/plugin/dev/
H A DLangProcessor.php160 $meta = [];
164 foreach ($meta as $key => $info) {
/plugin/dev/skel/_test/
H A DGeneralTest.php41 * Test to ensure that every conf['...'] entry in conf/default.php has a corresponding meta['...'] entry in
62 gettype($meta),
66 if ($conf !== null && $meta !== null) {
70 $meta,
71 'Key $meta[\'' . $key . '\'] missing in ' . DOKU_PLUGIN . '@@PLUGIN_NAME@@/conf/metadata.php'
75 foreach ($meta as $key => $value) {
/plugin/diagrams/conf/
H A Dmetadata.php5 $meta['service_url'] = array('string');
6 $meta['mode'] = array('multichoice', '_choices' => array(1, 2, 3));
7 $meta['pngcache'] = array('onoff');
/plugin/diagramsnet/conf/
H A Dmetadata.php3 $meta['app_source_type'] = array('multichoice', '_choices' => array('internal', 'external'));
4 $meta['editor_parameters'] = array('string');
5 $meta['viewer_parameters'] = array('string');
6 $meta['external_url'] = array('string');
7 $meta['file_match_suffix'] = array('string');
8 $meta['enable_attic'] = array('onoff');
9 $meta['anonymize_xml'] = array('onoff');
/plugin/diagramsnet/lib/js/
H A Dapp.min.js75 kbd:0,keygen:274,label:0,legend:0,li:1,link:274,map:0,mark:0,menu:0,meta:274,meter:0,nav:0,nobr:0,n… property in $.f
79 …nkElement",map:"HTMLMapElement",mark:"HTMLElement",menu:"HTMLMenuElement",meta:"HTMLMetaElement",m… property in $.Q
11373 …ml><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"><meta name="Robots" ');
11624 e&&null!=e.meta&&null!=e.meta.webUrl?(d=e.meta.webUrl,e=encodeURIComponent(e.meta.name),d.substring…
11625 …s.openLink(e.meta.html_url):this.openLink("https://github.com/"):d==App.MODE_GITLAB?null!=e&&e.con…
/plugin/diagramsnet/lib/js/diagramly/
H A DApp.js2675 if (file != null && file.meta != null && file.meta.webUrl != null)
2677 var url = file.meta.webUrl;
2678 var name = encodeURIComponent(file.meta.name);
2722 this.openLink(file.meta.html_url);
2733 this.openLink(file.meta.html_url);
H A DDriveClient.js1375 var meta = class in DriveClient.saveFile
1382 if (this.isGoogleRealtimeMimeType(meta.mimeType))
1384 meta.mimeType = this.xmlMimeType;
1390 else if (meta.mimeType == 'application/octet-stream' ||
1392 meta.mimeType != this.xmlMimeType))
1394 meta.mimeType = this.xmlMimeType;
1442 meta.thumbnail =
1580 meta.properties = properties;
1613 this.executeRequest(this.createUploadRequest(file.getId(), meta,
1828 meta.thumbnail =
[all …]
H A DGitHubClient.js505 …urn (asLibrary) ? new GitHubLibrary(this.ui, content, meta) : new GitHubFile(this.ui, content, met…
702 var org = file.meta.org;
703 var repo = file.meta.repo;
704 var ref = file.meta.ref;
705 var path = file.meta.path;
712 delete file.meta.isNew;
728 fn(file.meta.sha, data);
742 file.meta.sha = sha;
1243 org = file.meta.org;
1244 repo = file.meta.repo;
[all …]
H A DGitHubFile.js5 GitHubFile = function(ui, data, meta) argument
9 this.meta = meta;
38 ((this.meta.repo != null) ? encodeURIComponent(this.meta.repo) + '/' +
39 ((this.meta.ref != null) ? this.meta.ref +
40 ((this.meta.path != null) ? '/' + this.meta.path : '') : '') : '');
111 return this.meta.name;
149 return this.meta;
157 this.meta = desc;
207 var prev = this.meta.name;
208 this.meta.name = title;
[all …]
H A DGitHubLibrary.js5 GitHubLibrary = function(ui, data, meta) argument
7 GitHubFile.call(this, ui, data, meta);
H A DGitLabClient.js514 var meta = {'org': org, 'repo': repo, 'ref': ref, 'name': fileName, class in GitLabClient.createGitLabFile
519 …urn (asLibrary) ? new GitLabLibrary(this.ui, content, meta) : new GitLabFile(this.ui, content, met…
685 var org = file.meta.org;
686 var repo = file.meta.repo;
687 var ref = file.meta.ref;
688 var path = file.meta.path;
694 delete file.meta.isNew;
708 }), error, null, null, file.meta.refPos);
720 fn(file.meta.last_commit_id, data);
726 fn(file.meta.last_commit_id, Base64.encode(file.getData()));
[all …]
H A DGitLabFile.js5 GitLabFile = function(ui, data, meta) argument
7 GitHubFile.call(this, ui, data, meta);
24 encodeURIComponent(this.meta.org) + '/' +
25 encodeURIComponent(this.meta.repo) +'/-/project_members');
36 return this.meta.org + '/' +
37 ((this.meta.repo != null) ? encodeURIComponent(this.meta.repo) + '/' +
38 ((this.meta.ref != null) ? this.meta.ref +
39 ((this.meta.path != null) ? '/' + this.meta.path : '') : '') : '');
H A DGitLabLibrary.js5 GitLabLibrary = function(ui, data, meta) argument
7 GitLabFile.call(this, ui, data, meta);
H A DNotionClient.js233 var meta = {id: id, name: fileNameObj.title, nameField: fileNameObj.key}; class in NotionClient.getFile.AnonymousFunction48905f370f00
237 success(new NotionLibrary(this.ui, xml, meta));
241 success(new NotionFile(this.ui, xml, meta));
285 var meta = {id: fileInfo.id, name: fileNameObj.title, nameField: fileNameObj.key}; class in NotionClient.insertFile.AnonymousFunction48905f371000.AnonymousFunction48905f371100.AnonymousFunction48905f371200
289 success(new NotionLibrary(this.ui, data, meta));
293 success(new NotionFile(this.ui, data, meta));
H A DNotionFile.js5 NotionFile = function(ui, data, meta) argument
9 this.meta = meta;
21 return this.meta.id;
53 return this.meta.name;
61 return this.meta.nameField;
103 var prev = this.meta.name;
104 this.meta.name = title;
108 this.meta.name = prev;
H A DNotionLibrary.js5 NotionLibrary = function(ui, data, meta) argument
7 NotionFile.call(this, ui, data, meta);
H A DOneDriveFile.js9 this.meta = meta;
161 return this.meta.name;
197 return this.meta.size;
247 return this.meta;
255 this.meta = desc;
398 this.meta = meta;
529 this.meta = meta;
540 this.meta = meta;
550 success(meta);
566 this.meta = meta;
[all …]

1...<<11121314151617181920>>...68