Home
last modified time | relevance | path

Searched refs:mode (Results 26 – 50 of 2447) sorted by last modified time

12345678910>>...98

/plugin/siteexport/syntax/
H A Dtoctools.php34 public function connectTo($mode) { argument
35 $this->Lexer->addSpecialPattern($this->special_pattern,$mode,'plugin_siteexport_toctools');
36 $this->Lexer->addEntryPattern($this->entry_pattern,$mode,'plugin_siteexport_toctools');
89 public function render($mode, Doku_Renderer $renderer, $data) { argument
92 if ($mode == 'xhtml') {
126 } else if ( $mode = 'markdown' && $type == 'mergehint' && $pos == 'start' ) {
/plugin/linkback/
H A Dsyntax.php27 function connectTo($mode) { argument
28 if ($mode == 'base') {
29 $this->Lexer->addSpecialPattern('~~LINKBACK(?:|:off|:closed)~~', $mode, 'plugin_linkback');
H A DCOPYING319 when it starts in an interactive mode:
/plugin/structpublish/
H A DLICENSE313 when it starts in an interactive mode:
/plugin/structpublish/action/
H A Dcache.php33 if ($cache->mode != 'xhtml') return true;
/plugin/structpublish/syntax/
H A Dtable.php16 public function connectTo($mode) argument
18 $this->Lexer->addSpecialPattern('----+ *structpublish *-+\n.*?\n?----+', $mode, 'plugin_structpublish_table');
/plugin/diagrams/
H A DLICENSE313 when it starts in an interactive mode:
H A Dscript.js6 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 1)) {
12 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 2)) {
/plugin/diagrams/conf/
H A Ddefault.php6 $conf['mode'] = 1;
/plugin/diagrams/script/
H A DDiagramsForm.js170 await fetch(url, {cache: 'reload', mode: 'no-cors'});
H A Dprosemirror.js66 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 1)) {
71 if (JSINFO.plugins.diagrams && (JSINFO.plugins.diagrams.mode & 2)) {
/plugin/diagrams/syntax/
H A Dembed.php17 public function connectTo($mode) argument
19 // only register if embed mode is enabled
20 if (!($this->getConf('mode') & Diagrams::MODE_EMBED)) return;
21 $this->Lexer->addSpecialPattern('<diagram(?: .*?)?>.*?(?:</diagram>)', $mode, 'plugin_diagrams_embed');
H A Dmediafile.php30 public function connectTo($mode) argument
32 // only register if mediafile mode is enabled
33 if (!($this->getConf('mode') & Diagrams::MODE_MEDIA)) return;
36 $this->Lexer->addSpecialPattern('\{\{[^\}]+(?:\.svg)[^\}]*?\}\}', $mode, 'plugin_diagrams_mediafile');
/plugin/struct/jsoneditor/
H A Djsoneditor-minimalist.min.js30 !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):"object"==typeof exports?exports.JSONEditor=t():e.JSONEditor=t()}(this,function(){return function(e){function t(i){if(n[i])return n[i].exports;var o=n[i]={exports:{},id:i,loaded:!1};return e[i].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){function i(e,t,n){if(!(this instanceof i))throw new Error('JSONEditor constructor called without "new".');var o=l.getInternetExplorerVersion();if(-1!=o&&9>o)throw new Error("Unsupported browser, IE9 or newer required. Please install the newest version of your browser.");if(t&&(t.error&&(console.warn('Option "error" has been renamed to "onError"'),t.onError=t.error,delete t.error),t.change&&(console.warn('Option "change" has been renamed to "onChange"'),t.onChange=t.change,delete t.change),t.editable&&(console.warn('Option "editable" has been renamed to "onEditable"'),t.onEditable=t.editable,delete t.editable),t)){var r=["ace","theme","ajv","schema","onChange","onEditable","onError","onModeChange","escapeUnicode","history","search","mode","modes","name","indentation"];Object.keys(t).forEach(function(e){-1===r.indexOf(e)&&console.warn('Unknown option "'+e+'". This option will be ignored')})}arguments.length&&this._create(e,t,n)}var o;try{o=n(!function(){var e=new Error('Cannot find module "ajv/dist/ajv.bundle.js"');throw e.code="MODULE_NOT_FOUND",e}())}catch(r){}var s=n(1),a=n(2),l=n(3);i.modes={},i.prototype.DEBOUNCE_INTERVAL=150,i.prototype._create=function(e,t,n){this.container=e,this.options=t||{},this.json=n||{};var i=this.options.mode||"tree";this.setMode(i)},i.prototype._delete=function(){},i.prototype.set=function(e){this.json=e},i.prototype.get=function(){return this.json},i.prototype.setText=function(e){this.json=l.parse(e)},i.prototype.getText=function(){return JSON.stringify(this.json)},i.prototype.setName=function(e){this.options||(this.options={}),this.options.name=e},i.prototype.getName=function(){return this.options&&this.options.name},i.prototype.setMode=function(e){var t,n,o=this.container,r=l.extend({},this.options),s=r.mode;r.mode=e;var a=i.modes[e];if(!a)throw new Error('Unknown mode "'+r.mode+'"');try{var c="text"==a.data;if(n=this.getName(),t=this[c?"getText":"get"](),this._delete(),l.clear(this),l.extend(this,a.mixin),this.create(o,r),this.setName(n),this[c?"setText":"set"](t),"function"==typeof a.load)try{a.load.call(this)}catch(d){console.error(d)}if("function"==typeof r.onModeChange&&e!==s)try{r.onModeChange(e,s)}catch(d){console.error(d)}}catch(d){this._onError(d)}},i.prototype.getMode=function(){return this.options.mode},i.prototype._onError=function(e){if(!this.options||"function"!=typeof this.options.onError)throw e;this.options.onError(e)},i.prototype.setSchema=function(e){if(e){var t;try{t=this.options.ajv||o({allErrors:!0,verbose:!0})}catch(n){console.warn("Failed to create an instance of Ajv, JSON Schema validation is not available. Please use a JSONEditor bundle including Ajv, or pass an instance of Ajv as via the configuration option `ajv`.")}t&&(this.validateSchema=t.compile(e),this.options.schema=e,this.validate())}else this.validateSchema=null,this.options.schema=null,this.validate()},i.prototype.validate=function(){},i.registerMode=function(e){var t,n;if(l.isArray(e))for(t=0;t<e.length;t++)i.registerMode(e[t]);else{if(!("mode"in e))throw new Error('Property "mode" missing');if(!("mixin"in e))throw new Error('Property "mixin" missing');if(!("data"in e))throw new Error('Property "data" missing');var o=e.mode;i
[all...]
/plugin/struct/meta/
H A DAggregationCloud.php17 if ($this->mode !== 'xhtml') return;
67 if ($this->mode == 'xhtml') {
73 $value->renderAsTagCloudLink($this->renderer, $this->mode, $target, $filter, $weight, $showCount);
75 if ($this->mode == 'xhtml') {
15 protected $mode; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationCloud
52 __construct($id, $mode, \\Doku_Renderer $renderer, SearchCloud $searchConfig) global() argument
H A DAggregationEditorTable.php22 * Adds additional info to document and renderer in XHTML mode
34 if ($this->mode != 'xhtml') return;
H A DAggregationList.php16 public function __construct($id, $mode, \Doku_Renderer $renderer, SearchConfig $searchConfig)
18 parent::__construct($id, $mode, $renderer, $searchConfig);
108 if ($this->mode === 'xhtml') {
139 $value->render($this->renderer, $this->mode);
158 $value->render($this->renderer, $this->mode);
19 protected $mode; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationList
54 __construct($id, $mode, \\Doku_Renderer $renderer, SearchConfig $searchConfig) global() argument
H A DAggregationTable.php17 public function __construct($id, $mode, \Doku_Renderer $renderer, SearchConfig $searchConfig)
19 parent::__construct($id, $mode, $renderer, $searchConfig); variable in dokuwiki\\plugin\\struct\\meta\\AggregationTable
25 if (in_array($this->mode, \helper_plugin_struct::BLACKLIST_RENDERER)) return;
38 'format' => $this->mode,
88 * Adds additional info to document and renderer in XHTML mode
120 if ($this->mode != 'xhtml') return;
181 // simple mode first
182 if ($this->mode != 'xhtml') {
246 if ($this->mode != 'xhtml') return false;
258 if ($this->mode !
82 __construct($id, $mode, \\Doku_Renderer $renderer, SearchConfig $searchConfig) global() argument
[all...]
H A DAggregationValue.php20 public function __construct($id, $mode, \Doku_Renderer $renderer, SearchConfig $searchConfig)
26 parent::__construct($id, $mode, $renderer, $searchConfig);
56 if ($this->mode == 'xhtml') {
60 $value->render($this->renderer, $this->mode);
61 if ($this->mode == 'xhtml') {
21 protected $mode; global() variable in dokuwiki\\plugin\\struct\\meta\\AggregationValue
62 __construct($id, $mode, \\Doku_Renderer $renderer, SearchConfig $searchConfig) global() argument
H A DValue.php161 * Render the value using the given renderer and mode
168 * @param string $mode
171 public function render(\Doku_Renderer $R, $mode) argument
175 return $this->column->getType()->renderMultiValue($this->value, $R, $mode);
178 return $this->column->getType()->renderValue($this->value, $R, $mode);
187 * @param string $mode
193 public function renderAsTagCloudLink(\Doku_Renderer $R, $mode, $page, $filterQuery, $weight, $showCount)
196 $this->column->getType()->renderTagCloudLink($value, $R, $mode, $page, $filterQuery, $weight, $showCount);
194 renderAsTagCloudLink(\\Doku_Renderer $R, $mode, $page, $filterQuery, $weight) global() argument
/plugin/struct/syntax/
H A Dcloud.php19 * @return string Syntax mode type
45 * @param string $mode Parser mode
47 public function connectTo($mode)
49 $this->Lexer->addSpecialPattern('----+ *struct cloud *-+\n.*?\n----+', $mode, 'plugin_struct_cloud');
82 * @param string $mode Renderer mode (supported modes: xhtml)
87 public function render($mode, Doku_Renderer $renderer, $data)
89 if ($mode != 'xhtml') return false;
97 $cloud = new AggregationCloud($INFO['id'], $mode,
46 connectTo($mode) global() argument
86 render($mode, Doku_Renderer $renderer, $data) global() argument
[all...]
H A Dglobal.php21 * @param string $mode Parser mode
23 public function connectTo($mode)
25 $this->Lexer->addSpecialPattern('----+ *struct global *-+\n.*?\n----+', $mode, 'plugin_struct_global');
28 $this->Lexer->addSpecialPattern('----+ *struct lookup *-+\n.*?\n----+', $mode, 'plugin_struct_global');
22 connectTo($mode) global() argument
H A Dlist.php26 * @param string $mode Parser mode
28 public function connectTo($mode)
30 $this->Lexer->addSpecialPattern('----+ *struct list *-+\n.*?\n----+', $mode, 'plugin_struct_list');
49 connectTo($mode) global() argument
104 render($mode, Doku_Renderer $renderer, $data) global() argument
H A Doutput.php29 * @return string Syntax mode type
59 * @param string $mode Parser mode argument
61 public function connectTo($mode)
H A Dserial.php17 * @param string $mode Parser mode
19 public function connectTo($mode) argument
21 $this->Lexer->addSpecialPattern('----+ *struct serial *-+\n.*?\n----+', $mode, 'plugin_struct_serial');

12345678910>>...98