| /plugin/asciidocjs/node_modules/pug/lib/ |
| D | index.js | 43 function applyPlugins(value, options, plugins, name) { argument 47 ? plugin[name](value, options) 81 function compileBody(str, options){ argument 83 debug_sources[options.filename] = str; 85 var plugins = options.plugins || []; 87 filename: options.filename, 88 basedir: options.basedir, 89 lex: function (str, options) { argument 91 Object.keys(options).forEach(function (key) { 92 lexOptions[key] = options[key]; [all …]
|
| /plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
| D | Client.php | 101 * @param array $options Request options to apply to the given 106 public function sendAsync(RequestInterface $request, array $options = []) argument 109 $options = $this->prepareDefaults($options); 112 … $request->withUri($this->buildUri($request->getUri(), $options), $request->hasHeader('Host')), 113 $options 120 * @param array $options Request options to apply to the given 126 public function send(RequestInterface $request, array $options = []) argument 128 $options[RequestOptions::SYNCHRONOUS] = true; 129 return $this->sendAsync($request, $options)->wait(); 142 * @param array $options Request options to apply. See \GuzzleHttp\RequestOptions. [all …]
|
| D | RedirectMiddleware.php | 45 * @param array $options 49 public function __invoke(RequestInterface $request, array $options) argument 53 if (empty($options['allow_redirects'])) { 54 return $fn($request, $options); 57 if ($options['allow_redirects'] === true) { 58 $options['allow_redirects'] = self::$defaultSettings; 59 } elseif (!is_array($options['allow_redirects'])) { 63 $options['allow_redirects'] += self::$defaultSettings; 66 if (empty($options['allow_redirects']['max'])) { 67 return $fn($request, $options); [all …]
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/ |
| D | Client.php | 98 * @param array $options Request options to apply to the given 101 public function sendAsync(RequestInterface $request, array $options = []): PromiseInterface argument 104 $options = $this->prepareDefaults($options); 107 … $request->withUri($this->buildUri($request->getUri(), $options), $request->hasHeader('Host')), 108 $options 115 * @param array $options Request options to apply to the given 120 public function send(RequestInterface $request, array $options = []): ResponseInterface argument 122 $options[RequestOptions::SYNCHRONOUS] = true; 124 return $this->sendAsync($request, $options)->wait(); 134 $options[RequestOptions::SYNCHRONOUS] = true; [all …]
|
| D | ClientTrait.php | 24 * @param array $options Request options to apply. 28 abstract public function request(string $method, $uri, array $options = []): ResponseInterface; argument 38 * @param array $options Request options to apply. 42 public function get($uri, array $options = []): ResponseInterface argument 44 return $this->request('GET', $uri, $options); 55 * @param array $options Request options to apply. 59 public function head($uri, array $options = []): ResponseInterface argument 61 return $this->request('HEAD', $uri, $options); 72 * @param array $options Request options to apply. 76 public function put($uri, array $options = []): ResponseInterface argument [all …]
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | minify.js | 49 function set_shorthand(name, options, keys) { argument 51 if (options[key]) { 52 if (typeof options[key] != "object") options[key] = {}; 53 if (!(name in options[key])) options[key][name] = options[name]; 73 function minify(files, options) { argument 75 options = defaults(options, { 92 toplevel: !!(options && options["module"]), 99 if (options.validate) AST_Node.enable_validation(); 100 var timings = options.timings && { start: Date.now() }; 101 …if (options.annotations !== undefined) set_shorthand("annotations", options, [ "compress", "output… [all …]
|
| /plugin/virtualkeyboard/vk/extensions/dom/ |
| D | selectbox.js | 76 var options = []; 101 self.addOptionsList(node.options, false, false); 155 for (var i=0, oL=options.length; i<oL; i++) { 159 if (pre && options[i][type] == state) continue; 163 if ( reg.test(options[i].text) ) { 164 res += (options[i][type] != state); 165 options[i][type] = state; 167 if ( options[i][type] == state && !pre) { 168 res += (options[i][type] == state); 169 options[i][type] = ! state; [all …]
|
| /plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/ |
| D | CurlFactory.php | 29 $options = $this->getDefaultOptions($request, $headers); 30 $this->applyMethod($request, $options); 33 $this->applyHandlerOptions($request, $options); 36 $this->applyHeaders($request, $options); 37 unset($options['_headers']); 41 $options = $this->applyCustomCurlOptions( 43 $options 51 $body = $this->getOutputBody($request, $options); 52 curl_setopt_array($handle, $options); 162 $options = [ [all …]
|
| /plugin/asciidocjs/node_modules/pug-load/ |
| D | index.js | 9 function load(ast, options) { argument 10 options = getOptions(options); 22 path = options.resolve(file.path, file.filename, options); 24 str = options.read(path, options); 31 file.ast = load.string(str, assign({}, options, { 40 load.string = function loadString(src, options) { argument 41 options = assign(getOptions(options), { 44 var tokens = options.lex(src, options); 45 var ast = options.parse(tokens, options); 46 return load(ast, options); [all …]
|
| /plugin/s5reloaded/ui/effects_support/ |
| D | controls.js | 44 baseInitialize: function(element, update, options) { argument 56 this.setOptions(options); 58 this.options = options || { }; 60 this.options.paramName = this.options.paramName || this.element.name; 61 this.options.tokens = this.options.tokens || []; 62 this.options.frequency = this.options.frequency || 0.4; 63 this.options.minChars = this.options.minChars || 1; 64 this.options.onShow = this.options.onShow || 75 this.options.onHide = this.options.onHide || 78 if(typeof(this.options.tokens) == 'string') [all …]
|
| D | dragdrop.js | 20 var options = Object.extend({ 27 if(options.containment) { 28 options._containers = []; 29 var containment = options.containment; 31 containment.each( function(c) { options._containers.push($(c)) }); 33 options._containers.push($(containment)); 37 if(options.accept) options.accept = [options.accept].flatten(); 40 options.element = element; 42 this.drops.push(options); 154 if(draggable.options.delay) { [all …]
|
| /plugin/asciidocjs/node_modules/jstransformer/ |
| D | index.js | 139 Transformer.prototype.compile = function (str, options) { argument 145 return tr.normalize(_this._tr.render(str, options, locals)).body; 158 return tr.normalizeFn(this._tr.compile(str, options)); 160 Transformer.prototype.compileAsync = function (str, options, cb) { argument 165 return tr.normalizeFnAsync(this._tr.compileAsync(str, options), cb); 167 return tr.normalizeFnAsync(this.compile(str, options), cb); 170 Transformer.prototype.compileFile = function (filename, options) { argument 175 return tr.normalizeFn(this._tr.compileFile(filename, options)); 178 return tr.normalize(this._tr.renderFile(filename, options, locals)).body; 181 if (!options) options = {}; [all …]
|
| /plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Factory/ |
| H A D | DigestMD5MessageFactory.php | 63 public function create(int $type, array $options = [], ?Message $received = null): Message argument 66 return $this->generateClientResponse($options, $received); 68 return $this->generateServerResponse($options); 70 return $this->generateServerChallenge($options); 78 protected function generateServerChallenge(array $options): Message argument 82 …$challenge->set('nonce', $options['nonce'] ?? $this->generateNonce($options['nonce_size'] ?? self:… 83 $challenge->set('qop', $this->generateAvailableQops($options)); 84 $challenge->set('realm', $options['realm'] ?? $_SERVER['USERDOMAIN'] ?? gethostname()); 85 $challenge->set('maxbuf', $options['maxbuf'] ?? '65536'); 88 $challenge->set('cipher', $this->getAvailableCiphers($options)); [all …]
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/ |
| D | runtime.js | 68 function invokePartialWrapper(partial, context, options) { argument 69 if (options.hash) { 70 context = Utils.extend({}, context, options.hash); 71 if (options.ids) { 72 options.ids[0] = true; 75 partial = env.VM.resolvePartial.call(this, partial, context, options); 77 let extendedOptions = Utils.extend({}, options, { 90 options.partials[options.name] = env.compile( 95 result = options.partials[options.name](context, extendedOptions); 98 if (options.indent) { [all …]
|
| /plugin/itemtable/ |
| D | syntax.php | 26 public $options=array(); variable in syntax_plugin_itemtable 79 if (trim($this->options["header"])!=""){ 81 … $TableData.="^".$this->options["header"].substr("^^^^^^^^^^",0,$this->options["cols"]+1)."\n"; 88 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) 89 $TableData.="^".$this->options["__col"][$ColPos]." "; 92 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) { 102 if (strstr($rawline,$this->options["cell_off"])) { 103 …$RowElements["__col"][$CellActive-1].=" ".substr($rawline,0,strpos($rawline,$this->options["cell_o… 112 if (substr($rawline,0,1)==$this->options["thead"]) { 115 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) { [all …]
|
| /plugin/gcalendar/inc/ |
| D | gcal_main.php | 25 * @param array $options contains a list of parameters passed to the plugin at the wiki-page 28 function render_gcal(&$options) { argument 36 if(!isset($options['mode'])) $options['mode']='month'; 39 if(isset($_REQUEST['mode'])) $options['mode'] = $_REQUEST['mode']; 40 if(isset($_REQUEST['offset'])) $options['offset'] = $_REQUEST['offset']; 41 if(isset($_REQUEST['pages'])) $options['pages'] = $_REQUEST['pages']; 44 if(!isset($options['pages'])) $options['pages'] = '('.$ID.')'; 49 $pages = $options['pages']; 69 …if(isset($options["month"])) $month = $options["month"] + $options["offset"] + $_SESSION["offset"]; 70 if(isset($options["year"])) $year = $options["year"]; [all …]
|
| /plugin/asciidocjs/node_modules/require-directory/ |
| D | index.js | 18 function checkFileInclusion(path, filename, options) { argument 21 (new RegExp('\\.(' + options.extensions.join('|') + ')$', 'i').test(filename)) && 24 !(options.include && options.include instanceof RegExp && !options.include.test(path)) && 27 … !(options.include && typeof options.include === 'function' && !options.include(path, filename)) && 30 !(options.exclude && options.exclude instanceof RegExp && options.exclude.test(path)) && 33 !(options.exclude && typeof options.exclude === 'function' && options.exclude(path, filename)) 37 function requireDirectory(m, path, options) { argument 41 if (path && !options && typeof path !== 'string') { 42 options = path; 47 options = options || {}; [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
| H A D | Options.php | 31 protected $options; variable in FreeDSx\\Ldap\\Entry\\Options 36 public function __construct(...$options) argument 38 $this->set(...$options); 45 public function add(...$options) argument 47 foreach ($options as $option) { 48 $this->options[] = $option instanceof Option ? $option : new Option($option); 58 public function set(...$options) argument 60 $this->options = []; 61 foreach ($options as $i => $option) { 63 $this->options[] = $option; [all …]
|
| /plugin/batchedit/ |
| D | config.php | 44 public function update($options) { argument 45 $this->load($options); 97 private function load($options) { argument 98 if (array_key_exists('searchmode', $options)) { 99 $this->config['searchmode'] = $options['searchmode'] == 'regexp' ? 'regexp' : 'text'; 102 $this->loadBoolean($options, 'matchcase'); 103 $this->loadBoolean($options, 'multiline'); 104 $this->loadBoolean($options, 'advregexp'); 105 $this->loadBoolean($options, 'matchctx'); 106 $this->loadInteger($options, 'ctxchars'); [all …]
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/ |
| D | CurlFactory.php | 47 public function create(RequestInterface $request, array $options): EasyHandle argument 49 if (isset($options['curl']['body_as_string'])) { 50 $options['_body_as_string'] = $options['curl']['body_as_string']; 51 unset($options['curl']['body_as_string']); 56 $easy->options = $options; 64 if (isset($options['curl'])) { 65 $conf = \array_replace($conf, $options['curl']); 105 if (isset($easy->options['on_stats'])) { 136 ($easy->options['on_stats'])($stats); 154 if (empty($easy->options['_err_message']) && (!$easy->errno || $easy->errno == 65)) { [all …]
|
| /plugin/sequencediagram/bower_components/lodash/vendor/backbone/ |
| D | backbone.js | 204 var onApi = function(events, name, callback, options) { argument 207 var context = options.context, ctx = options.ctx, listening = options.listening; 250 var offApi = function(events, name, callback, options) { argument 254 var context = options.context, listeners = options.listeners; 394 var Model = Backbone.Model = function(attributes, options) { argument 396 options || (options = {}); 400 if (options.collection) this.collection = options.collection; 401 if (options.parse) attrs = this.parse(attrs, options) || {}; 404 this.set(attrs, options); 435 toJSON: function(options) { argument [all …]
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/ |
| D | runtime.js | 53 function invokePartialWrapper(partial, context, options) { argument 54 if (options.hash) { 55 context = _utils.extend({}, context, options.hash); 56 if (options.ids) { 57 options.ids[0] = true; 60 partial = env.VM.resolvePartial.call(this, partial, context, options); 62 var extendedOptions = _utils.extend({}, options, { 70 options.partials[options.name] = env.compile(partial, templateSpec.compilerOptions, env); 71 result = options.partials[options.name](context, extendedOptions); 74 if (options.indent) { [all …]
|
| /plugin/jplayer/vendor/happyworm/jplayer/lib/ |
| D | popcorn.subtitle.js | 70 options: { property 90 _setup: function( options ) { argument 97 ( !this.container && ( !options.target || options.target === "subtitle-container" ) ) && 101 if ( options.target && options.target !== "subtitle-container" ) { 103 …options.container = document.getElementById( options.target ) || createDefaultContainer( this, opt… 106 options.container = this.container; 109 …document.getElementById( options.container.id ) && document.getElementById( options.container.id )… 110 options.innerContainer = newdiv; 112 options.showSubtitle = function() { 113 options.innerContainer.innerHTML = options.text || ""; [all …]
|
| /plugin/googleconsentmananger/ |
| D | jquery.cookiebar.js | 17 $.cookieBar = function(options,val){ argument 18 if(options=='cookies'){ 20 }else if(options=='set'){ 52 var options = $.extend(defaults,options); 56 expireDate.setTime(expireDate.getTime()+(options.expireDays*86400000)); 70 if(cookieValue=='' && doReturn!='cookies' && options.autoEnable){ 73 …}else if((cookieValue=='accepted' || cookieValue=='declined') && doReturn!='cookies' && options.re… 76 if(options.acceptOnContinue){ 77 …if(options.referrer.indexOf(options.domain)>=0 && String(window.location.href).indexOf(options.pol… 99 var message = options.message.replace('{policy_url}',options.policyURL); [all …]
|
| /plugin/amcharts/assets/amcharts/plugins/dataloader/ |
| D | dataloader.js | 179 function loadFile( url, holder, options, providerKey ) { argument 186 if ( options.showCurtain ) 187 showCurtain( undefined, options.noStyles ); 197 …if ( options.progress !== undefined && typeof( options.progress ) === 'function' && options._progr… 198 options._progress = options.progress; 199 options.progress = function( percent ) { 215 options._progress.call( this, globalPercent, Math.round( percent * 100 ) / 100, url ); 220 AmCharts.loadFile( url, options, function( response ) { 224 callFunction( options.error, options, chart ); 225 …raiseError( AmCharts.__( 'Error loading the file', chart.language ) + ': ' + url, false, options ); [all …]
|