| /plugin/linkprefix/ |
| D | renderer.php | 46 function _resolveInterWiki(&$shortcut, $reference, &$exists = null){ argument 48 return parent::_resolveInterWiki($shortcut,$reference); 51 $backup = $this->interwiki[$shortcut]; 52 …this->getConf('encode_url') ? urlencode($this->interwiki[$shortcut]) : $this->interwiki[$shortcut]; 53 if ($backup) $this->interwiki[$shortcut] = $this->getConf('prefix') . $url; 54 $return = parent::_resolveInterWiki($shortcut,$reference); 55 $this->interwiki[$shortcut] = $backup;
|
| /plugin/prosemirror/parser/ |
| D | InterwikiLinkNode.php | 14 $shortcut = $wikiName; 15 $url = $renderer->_resolveInterWiki($shortcut, $wikiUri, $exists); 18 'data-resolvedClass' => 'interwikilink interwiki iw_' . $shortcut,
|
| /plugin/shortcut/syntax/ |
| D | shortcut.php | 61 $this->Lexer->addExitPattern('\x3C/shortcut\x3E', 'plugin_shortcut_shortcut'); 99 $m_s = $meta['shortcut']; 140 $meta['shortcut'] = $m_s;
|
| D | anchor.php | 81 $meta = p_get_metadata('shortcuts','shortcut');
|
| /plugin/prosemirror/action/ |
| D | ajax.php | 62 [$shortcut, $reference] = explode('>', $inner); 63 $responseData[$action] = $this->resolveInterWikiLink($shortcut, $reference); 110 protected function resolveInterWikiLink($shortcut, $reference) argument 114 $url = $xhtml_renderer->_resolveInterWiki($shortcut, $reference, $exits); 117 'resolvedClass' => 'interwikilink interwiki iw_' . $shortcut,
|
| /plugin/interwikiformatting/ |
| D | syntax.php | 46 list($shortcut, $target) = explode('>', $match, 2); 51 if (in_array($shortcut, $ignored_shortcuts)) 54 … $handler->_addCall('interwikilink', array($match, null, strtolower($shortcut), $target), $pos); 123 … $handler->_addCall('interwikilink', array($match, $title, strtolower($shortcut), $target), $pos);
|
| /plugin/interwikipaste/ |
| D | action.php | 42 foreach ($wikis as $shortcut => $url) { 62 'shortcut' => $shortcut,
|
| /plugin/myshortcuts/ |
| H A D | README | 36 1. shortcut_edit: Keyboard shortcut to edit pages (default: ctrl+e) 37 2. shortcut_save: Keyboard shortcut to save pages (default: ctrl+s) 38 3. shortcut_snippet: Keyboard shortcut to open snippet dialog (default: ctrl+i) 68 - Press your configured edit shortcut (default: Ctrl+E) to enter edit mode 71 - Press your configured save shortcut (default: Ctrl+S) to save changes 72 - Press your configured snippet shortcut (default: Ctrl+I) to open snippet dialog
|
| H A D | script.js | 72 parseShortcut: function(shortcut) { argument 73 if (!shortcut) return null; 75 var parts = shortcut.toLowerCase().split('+'); 105 matchesShortcut: function(event, shortcut) { argument 106 var parsed = MyShortcutsPlugin.parseShortcut(shortcut);
|
| /plugin/scrape/vendor/symfony/css-selector/XPath/ |
| D | Translator.php | 148 public function registerParserShortcut(ParserInterface $shortcut): self argument 150 $this->shortcutParsers[] = $shortcut; 220 foreach ($this->shortcutParsers as $shortcut) { 221 $tokens = $shortcut->parse($css);
|
| /plugin/emoji/ |
| D | README | 3 Allows emoji characters or shortcut names to be inserted into wiki pages. The 4 shortcut names will be converted to Unicode when the page is rendered.
|
| /plugin/advanced/lang/en/config/ |
| D | interwiki.txt | 5 In DokuWiki this is done by prefixing Wiki pagenames with a shortcut separated by a ''>'' character… 18 <shortcut> <url to wiki> 20 The shortcut is the one you will be able to use in the link later. In the URL you can use some plac…
|
| /plugin/diagramsnet/lib/js/grapheditor/ |
| D | Toolbar.js | 82 …te('title', mxResources.get('zoomIn') + ' (' + this.editorUi.actions.get('zoomIn').shortcut + ')'); 83 …('title', mxResources.get('zoomOut') + ' (' + this.editorUi.actions.get('zoomOut').shortcut + ')'); 103 …ribute('title', mxResources.get('undo') + ' (' + this.editorUi.actions.get('undo').shortcut + ')'); 104 …ribute('title', mxResources.get('redo') + ' (' + this.editorUi.actions.get('redo').shortcut + ')'); 109 …te('title', mxResources.get('delete') + ' (' + this.editorUi.actions.get('delete').shortcut + ')'); 360 …elts[1].setAttribute('title', mxResources.get('undo') + ' (' + ui.actions.get('undo').shortcut + '… 361 …elts[2].setAttribute('title', mxResources.get('redo') + ' (' + ui.actions.get('redo').shortcut + '… 362 …elts[4].setAttribute('title', mxResources.get('bold') + ' (' + ui.actions.get('bold').shortcut + '… 363 …elts[5].setAttribute('title', mxResources.get('italic') + ' (' + ui.actions.get('italic').shortcut… 364 …tribute('title', mxResources.get('underline') + ' (' + ui.actions.get('underline').shortcut + ')'); [all …]
|
| /plugin/confmanager/lang/en/ |
| D | interwiki.txt | 3 In [[doku>DokuWiki]] this is done by prefixing Wiki [[doku>pagenames]] with a shortcut separated by… 16 There is one special interwiki shortcut called **''this''**. It always links to the webserver direc…
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
| D | dhtmlxgantt_keyboard_navigation.js | 420 addShortcut: function(shortcut, handler, scope){ argument 423 scopeObject.prototype.bind(shortcut, handler); argument 426 getShortcutHandler: function(shortcut, scope){ argument 427 var commands = gantt.$keyboardNavigation.shortcuts.parse(shortcut); 440 removeShortcut: function(shortcut, scope){ argument 443 scopeObject.prototype.unbind(shortcut); argument 559 bind: function (shortcut, handler) { argument 564 var commands = shortcuts.parse(shortcut); 569 unbind: function (shortcut) { argument 572 var commands = shortcuts.parse(shortcut); [all …]
|
| /plugin/asciidocjs/node_modules/has/ |
| D | README.md | 3 > Object.prototype.hasOwnProperty.call shortcut
|
| /plugin/shortcutkey/ |
| D | plugin.info.txt | 6 desc Add shortcut keys to dokuwiki actions
|
| D | README | 3 Add shortcut keys to dokuwiki actions
|
| /plugin/linkbonus/syntax/ |
| D | interwiki.txt | 203 private function _resolveInterWiki(&$shortcut,$reference){ 205 if ( isset($this->interwiki[$shortcut]) ) { 206 $url = $this->interwiki[$shortcut]; 210 $shortcut = 'go';
|
| /plugin/custombuttons/ |
| D | README | 1 A dokuwiki plugin for adding custom buttons to the toolbar, to shortcut commonly used code blocks.
|
| D | plugin.info.txt | 6 desc A plugin for adding custom buttons to the toolbar, to shortcut commonly used code blocks.
|
| /plugin/pot/ |
| D | README.md | 64 * use an page specific code to design an shortcut 70 | key | shortcut | (default) value | why | 73 | potid | @value or #value | unique id for this pot, see below: shortcut | necessary if you want… 83 | defaultentry | ~value | | shortcut, if you have used "set=3" you can use ~3 to call all setti… 132 | shortcut | the same as | |
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/ |
| D | dhtmlxgantt.d.ts | 1246 addShortcut(shortcut: string, handler: GanttCallback, scope: string): void; 1780 getShortcutHandler(shortcut: string, scope: string): GanttCallback; 2154 removeShortcut(shortcut: string, scope: any): void;
|
| /plugin/snippeter/ |
| D | README.md | 41 The plugin provide a shortcut for each page created in that namespace. 70 Snippeter create a shortcut within the default editor toolbar (the "+" icon). That
|
| /plugin/advanced/lang/en/ |
| D | config.txt | 14 …nf'' | [[doku>interwiki]] | interwiki shortcut links …
|