Home
last modified time | relevance | path

Searched refs:opts (Results 1 – 25 of 409) sorted by relevance

12345678910>>...17

/plugin/editx/
Daction.php48 $opts['oldpage'] = cleanID($_REQUEST['oldpage']);
49 $opts['newpage'] = cleanID($_REQUEST['newpage']);
50 $opts['summary'] = $_REQUEST['summary'];
51 $opts['rp_nr'] = $_REQUEST['rp_nr'];
52 $opts['confirm'] = $_REQUEST['rp_confirm'];
53 $this->_rename_page($opts);
56 $opts['oldpage'] = cleanID($_REQUEST['oldpage']);
57 $opts['summary'] = $_REQUEST['summary'];
58 $opts['purge'] = $_REQUEST['dp_purge'];
59 $opts['confirm'] = $_REQUEST['dp_confirm'];
[all …]
/plugin/stlviewer/
Dsyntax.php46 $opts = array( // set default
75 $opts['width'] = $pargs['s'];
76 $opts['height'] = $pargs['s'];
79 $opts['height'] = $pargs['h'];
82 $opts['width'] = $pargs['w'];
85 $opts['noop'] = true;
88 $opts['manual'] = true;
91 $opts['display'] = $pargs['display'];
96 $opts[$k] = $pargs[$k];
101 if(is_numeric($opts['width'])) $opts['width'] .= 'px';
[all …]
/plugin/ajaxedit/vendor/pnotify/
Djquery.pnotify.js95 var s = this.opts.stack;
111 var opts;
113 opts = $.extend({}, $.pnotify.defaults);
114 opts.text = options;
116 opts = $.extend({}, $.pnotify.defaults, options);
119 for (var i in opts) {
121 opts[i.replace(/^pnotify_/, "")] = opts[i];
124 if (opts.before_init) {
125 if (opts.before_init(opts) === false)
155 var styles = styling[opts.styling];
[all …]
/plugin/timetrack/vendor/pnotify/
Djquery.pnotify.js95 var s = this.opts.stack;
111 var opts;
113 opts = $.extend({}, $.pnotify.defaults);
114 opts.text = options;
116 opts = $.extend({}, $.pnotify.defaults, options);
119 for (var i in opts) {
121 opts[i.replace(/^pnotify_/, "")] = opts[i];
124 if (opts.before_init) {
125 if (opts.before_init(opts) === false)
155 var styles = styling[opts.styling];
[all …]
/plugin/asciidocjs/node_modules/@types/babel-types/
Dindex.d.ts2007 export function isArrayExpression(node: object | null | undefined, opts?: object): node is ArrayExp…
2008 export function isAssignmentExpression(node: object | null | undefined, opts?: object): node is Ass…
2009 export function isBinaryExpression(node: object | null | undefined, opts?: object): node is BinaryE…
2010 export function isDirective(node: object | null | undefined, opts?: object): node is Directive;
2011 export function isDirectiveLiteral(node: object | null | undefined, opts?: object): node is Directi…
2012 export function isBlockStatement(node: object | null | undefined, opts?: object): node is BlockStat…
2013 export function isBreakStatement(node: object | null | undefined, opts?: object): node is BreakStat…
2014 export function isCallExpression(node: object | null | undefined, opts?: object): node is CallExpre…
2015 export function isCatchClause(node: object | null | undefined, opts?: object): node is CatchClause;
2016 export function isConditionalExpression(node: object | null | undefined, opts?: object): node is Co…
[all …]
/plugin/asciidocjs/node_modules/handlebars/dist/amd/
Dprecompiler.js14 module.exports.loadTemplates = function (opts, callback) { argument
15 loadStrings(opts, function (err, strings) {
19 loadFiles(opts, function (err, files) {
23 opts.templates = strings.concat(files);
24 callback(undefined, opts);
31 function loadStrings(opts, callback) { argument
32 var strings = arrayCast(opts.string),
33 names = arrayCast(opts.name);
68 function loadFiles(opts, callback) { argument
70 …var extension = (opts.extension || 'handlebars').replace(/[\\^$*+?.():=!|{}\-[\]]/g, function (arg…
[all …]
/plugin/asciidocjs/node_modules/handlebars/lib/
Dprecompiler.js9 module.exports.loadTemplates = function(opts, callback) { argument
10 loadStrings(opts, function(err, strings) {
14 loadFiles(opts, function(err, files) {
18 opts.templates = strings.concat(files);
19 callback(undefined, opts);
26 function loadStrings(opts, callback) { argument
27 let strings = arrayCast(opts.string),
28 names = arrayCast(opts.name);
67 function loadFiles(opts, callback) { argument
69 let extension = (opts.extension || 'handlebars').replace(
[all …]
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/
Dprecompiler.js29 module.exports.loadTemplates = function (opts, callback) { argument
30 loadStrings(opts, function (err, strings) {
34 loadFiles(opts, function (err, files) {
38 opts.templates = strings.concat(files);
39 callback(undefined, opts);
46 function loadStrings(opts, callback) { argument
47 var strings = arrayCast(opts.string),
48 names = arrayCast(opts.name);
83 function loadFiles(opts, callback) { argument
85 …var extension = (opts.extension || 'handlebars').replace(/[\\^$*+?.():=!|{}\-[\]]/g, function (arg…
[all …]
/plugin/asciidocjs/node_modules/ejs/lib/
Dejs.js310 var opts = utils.shallowCopy(utils.createNullProtoObjWherePossible(), options);
311 opts.filename = getIncludePath(path, opts);
313 var includerResult = options.includer(path, opts.filename);
316 opts.filename = includerResult.filename;
319 return handleCache(opts, includerResult.template);
323 return handleCache(opts);
381 exports.compile = function compile(template, opts) { argument
387 if (opts && opts.scope) {
392 if (!opts.context) {
393 opts.context = opts.scope;
[all …]
/plugin/pdfjs/
Dsyntax.php52 $opts = array( // set default
71 $opts['display'] = $display;
81 $opts['zoom'] = $zoom;
92 $opts['height'] = preg_replace('/\s/', '', $size[0]);
96 $opts['width'] = preg_replace('/\s/', '', $size[0]);
97 $opts['height'] = preg_replace('/\s/', '', $size[1]);
101 if(is_numeric($opts['width'])) $opts['width'] .= 'px';
102 if(is_numeric($opts['height'])) $opts['height'] .= 'px';
104 $opts['id'] = trim($id);
105 if(!empty($title)) $opts['title'] = trim($title);
[all …]
/plugin/asciidocjs/node_modules/babel-types/
DREADME.md20 See also `t.isAnyTypeAnnotation(node, opts)` and `t.assertAnyTypeAnnotation(node, opts)`.
32 See also `t.isArrayExpression(node, opts)` and `t.assertArrayExpression(node, opts)`.
45 See also `t.isArrayPattern(node, opts)` and `t.assertArrayPattern(node, opts)`.
60 See also `t.isArrayTypeAnnotation(node, opts)` and `t.assertArrayTypeAnnotation(node, opts)`.
73 See also `t.isArrowFunctionExpression(node, opts)` and `t.assertArrowFunctionExpression(node, opts)…
90 See also `t.isAssignmentExpression(node, opts)` and `t.assertAssignmentExpression(node, opts)`.
105 See also `t.isAssignmentPattern(node, opts)` and `t.assertAssignmentPattern(node, opts)`.
120 See also `t.isAwaitExpression(node, opts)` and `t.assertAwaitExpression(node, opts)`.
133 See also `t.isBinaryExpression(node, opts)` and `t.assertBinaryExpression(node, opts)`.
148 See also `t.isBindExpression(node, opts)` and `t.assertBindExpression(node, opts)`.
[all …]
/plugin/pagemove/
Dadmin.php28 var $opts = array(); variable in admin_plugin_pagemove
168 …owrap><input type="text" name="newns" id="newns" value="'.formtext($this->opts['newns']).'" class=…
173 …name="pagename" id="pagename" value="'.formtext(isset($this->opts['newname']) ? $this->opts['newna…
190 …"namespacename" value="'.formtext(isset($this->opts['newnsname']) ? $this->opts['newnsname'] : $th…
290 $this->opts['ns'] = getNS($ID);
291 $this->opts['name'] = noNS($ID);
292 $this->opts['page_ns'] = $_REQUEST['page_ns'];
295 if( $this->opts['page_ns'] == 'ns' ) {
301 $this->opts['newnsname'] = $_REQUEST['namespacename'];
302 if ( cleanID($this->opts['newnsname']) == '' ) {
[all …]
/plugin/pagemove/_test/
Dpagemove.test.php170 $opts = array();
171 $opts['page_ns'] = 'page';
172 $opts['ns'] = getNS($ID);
173 $opts['name'] = noNS($ID);
174 $opts['newns'] = $opts['ns'];
175 $opts['newname'] = $newPagename;
176 $this->movedToId = $opts['newns'].':'.$newPagename;
177 $this->pagemove->_pm_move_page($opts);
179 $newId = $opts['newns'].':'.$opts['newname'];
288 $opts = array();
[all …]
/plugin/indexmenu2/syntax/
Dindexmenu.php242 if ($opts['level']) $opts['level']++;
245 …search($data,$conf['datadir'],"indexmenu_search_index",$opts,"/".utf8_encodeFN(str_replace(':','/'…
246 if ($opts['sort']) {
247 $this->s_rev = substr($opts['sort'],0,1)=='!';
248 $this->s_target = $this->s_target[preg_replace("#^!#","",$opts['sort'])];
263 if (!$opts['nons'])
273 if ($opts['js'] && !$opts['nons'] && !isset($opts['root']) && !$ns) {
287 …n syntax_plugin_indexmenu_indexmenu::getHTML ($opts, $opts['navigation']?$this->html_buildlist($da…
288 … :"<ul>".$this->html_buildlist($data,$opts)."</ul>");
299 function getHTML ($opts, $html) { argument
[all …]
/plugin/graphgear/
Dsyntax.php121 }elseif($opts['fillcolor'][0] == '#'){
157 foreach($this->nodes as $name => $opts){
160 'text' => (($opts['label']) ? $opts['label'] : $name),
161 'color' => $this->color($opts['fillcolor'],'cccccc'),
162 'textcolor' => $this->color($opts['fontcolor'],'000000'),
164 if($opts['url']){
165 if(preg_match('/^\w+:\/\//',$opts['url'])){
166 $node['link'] = $opts['url'];
168 $node['link'] = wl($opts['url']);
171 if($opts['image']){
[all …]
/plugin/indexmenu/
DSearch.php63 $opts = [
69 $this->makeNodes($data, -1, 0, $children, $hasActiveNode, $opts);
87 * @param array $opts <ul>
94 …function makeNodes(&$data, $indexLatestParsedItem, $previousLevel, &$nodes, &$hasActiveNode, $opts) argument
119 if ($opts['currentPage'] == $item['id']) {
147 'currentPage' => $opts['currentPage'],
149 'nopg' => $opts['nopg']
158 if ($opts['isParentLazy']) {
174 $item['hns'] === $opts['currentPage']
175 || $opts['nopg'] && getNS($opts['currentPage']) === $item['id']
[all …]
/plugin/asciidocjs/node_modules/nunjucks/src/
Dprecompile.js19 function precompileString(str, opts) { argument
20 opts = opts || {};
21 opts.isString = true;
22 var env = opts.env || new Environment([]);
23 var wrapper = opts.wrapper || precompileGlobal;
24 if (!opts.name) {
27 return wrapper([_precompile(str, opts.name, env)], opts);
29 function precompile(input, opts) { argument
44 opts = opts || {};
45 var env = opts.env || new Environment([]);
[all …]
/plugin/phpipam/
Dsyntax.php127 $opts = array(
185 $opts['net'] = $matches[2] . $matches[4] . '/' .$matches[5] ;
189 $opts['vid'] = $matches[2] ;
193 $opts['vlan'] = $matches[2] ;
223 $opts['sid'] = $matches[2] ;
227 $opts['did'] = $matches[2] ;
231 $opts['eid'] = $matches[2] ;
235 $opts['tid'] = $matches[2] ;
239 $opts['lid'] = $matches[2] ;
243 $opts['loc'] = $matches[2] ;
[all …]
/plugin/iframe/
Dsyntax.php34 $opts = array(
50 $opts['width'] = $matches[1];
51 if(!$matches[2]) $opts['width'] .= 'px'; //default to pixel when no unit was set
52 $opts['height'] = $matches[4];
53 if(!$matches[5]) $opts['height'] .= 'px'; //default to pixel when no unit was set
56 $opts['height'] = $matches[1];
57 if(!$matches[2]) $opts['height'] .= 'px'; //default to pixel when no unit was set
63 $opts['scroll'] = false;
66 $opts['border'] = false;
69 $opts['fullscreen'] = true;
[all …]
/plugin/asciidocjs/node_modules/jake/test/unit/
Dparseargs.js64 assert.equal('foo', res.opts.tasks);
65 assert.equal(undefined, res.opts.jakefile);
70 assert.equal('foo', res.opts.tasks);
71 assert.equal(undefined, res.opts.jakefile);
76 assert.equal(true, res.opts.tasks);
77 assert.equal(undefined, res.opts.jakefile);
82 assert.equal(true, res.opts.tasks);
87 assert.equal(true, res.opts.tasks);
88 assert.equal(undefined, res.opts.jakefile);
93 assert.equal('zoobie', res.opts.tasks);
[all …]
/plugin/asciidocjs/node_modules/resolve/lib/
Dsync.js50 var maybeRealpathSync = function maybeRealpathSync(realpathSync, x, opts) { argument
51 if (opts && opts.preserveSymlinks === false) {
65 var getPackageCandidates = function getPackageCandidates(x, start, opts) { argument
66 var dirs = nodeModulesPaths(start, opts, x);
77 var opts = normalizeOptions(x, options);
79 var isFile = opts.isFile || defaultIsFile;
80 var readFileSync = opts.readFileSync || fs.readFileSync;
81 var isDirectory = opts.isDirectory || defaultIsDir;
82 var realpathSync = opts.realpathSync || defaultRealpathSync;
83 var readPackageSync = opts.readPackageSync || defaultReadPackageSync;
[all …]
Dasync.js46 var maybeRealpath = function maybeRealpath(realpath, x, opts, cb) { argument
47 if (opts && opts.preserveSymlinks === false) {
68 var getPackageCandidates = function getPackageCandidates(x, start, opts) { argument
69 var dirs = nodeModulesPaths(start, opts, x);
78 var opts = options;
80 cb = opts;
81 opts = {};
90 opts = normalizeOptions(x, opts);
92 var isFile = opts.isFile || defaultIsFile;
93 var isDirectory = opts.isDirectory || defaultIsDir;
[all …]
/plugin/tagfilter/script/select2/
Dselect2.js602 function defaultTokenizer(input, selection, selectCallback, opts) { argument
610 …if (!opts.createSearchChoice || !opts.tokenSeparators || opts.tokenSeparators.length < 1) return u…
615 for (i = 0, l = opts.tokenSeparators.length; i < l; i++) {
616 separator = opts.tokenSeparators[i];
627 token = opts.createSearchChoice.call(this, token, selection);
628 …if (token !== undefined && token !== null && opts.id(token) !== undefined && opts.id(token) !== nu…
631 if (equal(opts.id(token), opts.id(selection[i]))) {
670 init: function (opts) { argument
674 this.opts = opts = this.prepareOpts(opts);
676 this.id=opts.id;
[all …]
/plugin/indexmenu/scripts/fancytree/modules/
Djquery.fancytree.themeroller.js52 opts = ctx.options.themeroller;
72 opts.hoverClass + " " + opts.addClass,
88 opts = ctx.options.themeroller;
103 classes[opts.activeClass] = false;
104 classes[opts.focusClass] = false;
105 classes[opts.selectedClass] = false;
107 classes[opts.activeClass] = true;
110 classes[opts.focusClass] = true;
114 classes[opts.selectedClass] = true;
116 $el.toggleClass(opts.activeClass, classes[opts.activeClass]);
[all …]
/plugin/json/script/
Dejs.min.js1opts=utils.shallowCopy({},options);opts.filename=getIncludePath(path,opts);if(typeof options.inclu… property

12345678910>>...17