/plugin/likeit/script/ |
H A D | jquery.hoverIntent.js | 36 var cfg = { class in $.fn.hoverIntent 43 cfg = $.extend(cfg, handlerIn ); 45 cfg = $.extend(cfg, { over: handlerIn, out: handlerOut, selector: selector } ); 47 cfg = $.extend(cfg, { over: handlerIn, out: handlerIn, selector: handlerOut } ); 65 if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) { 69 return cfg.over.apply(ob,[ev]); 74 ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval ); 82 return cfg.out.apply(ob,[ev]); 101 …hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );} 108 …ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );} [all …]
|
/plugin/amcharts/assets/amcharts/plugins/export/ |
H A D | export.js | 257 cfg.fontSize = cfg.fontSize || cfg.width * 3; 272 if ( cfg.color || cfg.opacity ) { 364 var line = new fabric.Line( [ cfg.x1, cfg.y1, cfg.x2, cfg.y2 ], { 373 cfg.angle = cfg.angle ? cfg.angle : _this.getAngle( cfg.x1, cfg.y1, cfg.x2, cfg.y2 ); 379 arrowTop = cfg.y2 + ( cfg.width / 2 ) - ( ( cfg.y2 - cfg.y1 ) / 2 ); 380 arrowLeft = cfg.x2 + ( cfg.width / 2 ) - ( ( cfg.x2 - cfg.x1 ) / 2 ); 403 cfg: cfg, 1295 cfg: recentState.cfg 1786 cfg.type = cfg.data.slice( 5, cfg.data.indexOf( "," ) - 7 ); 1981 cfg.data = cfg.data ? cfg.data : _this.getChartData( cfg ); [all …]
|
/plugin/freechat/phpfreechat/src/containers/ |
H A D | mysql.class.php | 78 $cfg["mysql_host"] = 'localhost'; 79 $cfg["mysql_port"] = 3306; 80 $cfg["mysql_database"] = 'phpfreechat'; 81 $cfg["mysql_table"] = 'phpfreechat'; 82 $cfg["mysql_username"] = 'root'; 83 $cfg["mysql_password"] = ''; 86 $cfg["mysql_fieldtype_group"] = 'varchar(64)'; 88 $cfg["mysql_fieldtype_leaf"] = 'varchar(128)'; 89 $cfg["mysql_fieldtype_leafvalue"] = 'text'; 91 $cfg["mysql_engine"] = 'InnoDB'; [all …]
|
H A D | oracle.class.php | 76 $cfg = pfcContainerInterface::getDefaultConfig(); 77 $cfg["oracle_host"] = 'localhost'; 78 $cfg["oracle_port"] = 1521; 79 $cfg["oracle_database"] = 'XE'; 80 $cfg["oracle_table"] = 'phpfreechat'; 81 $cfg["oracle_username"] = 'phpfreechatuser'; 82 $cfg["oracle_password"] = 'freechatpass'; 83 return $cfg;
|
H A D | file.class.php | 51 $cfg = pfcContainerInterface::getDefaultConfig(); 52 $cfg["chat_dir"] = ''; // will be generated from the other parameters into the init step 53 $cfg["server_dir"] = ''; // will be generated from the other parameters into the init step 54 return $cfg;
|
/plugin/fedauth/classes/ |
H A D | fa_providerlist.class.php | 65 * @param string $cfg name of the configuration file 68 public static function create($cfg) { argument 70 $instance->loadFrom($cfg); 77 * @param string $cfg name of the configuration file 79 protected function loadFrom($cfg) { argument 80 $this->cfgFile = $cfg; 306 $cfg = '<?php' . "\n/**\n * Federated Login Plugin - configuration file\n" 311 $cfg .= "\$fa_order_large = array('" . implode("','", $this->order_large) . "');\n"; 316 $cfg .= "\n"; 319 $cfg .= $provider->getSerialized(); [all …]
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/ |
H A D | LexerATNSimulator.php | 368 foreach ($closure->elements() as $cfg) { 369 if (!$cfg instanceof LexerATNConfig) { 373 $currentAltReachedAcceptState = ($cfg->alt === $skipAlt); 375 if ($currentAltReachedAcceptState && $cfg->isPassedThroughNonGreedyDecision()) { 383 $cfg->toString(true) 387 foreach ($cfg->state->getTransitions() as $trans) { 391 $lexerExecutor = $cfg->getLexerActionExecutor(); 398 $config = new LexerATNConfig($cfg, $target, null, $lexerExecutor); 410 $skipAlt = $cfg->alt; 455 $cfg [all...] |
H A D | PredictionMode.php | 520 foreach ($configs->elements() as $cfg) { 521 $alts = $configToAlts->get($cfg); 525 $configToAlts->put($cfg, $alts); 528 $alts->add($cfg->alt);
|
/plugin/groupmatrix/syntax/ |
H A D | table.php | 71 $cfg = []; 74 $cfg[trim($key)] = trim($value); 77 if (empty($cfg['groups'])) { 82 $data['attributes'] = $this->trimexplode(',', $cfg['attributes']); 89 $data['groups'] = $this->trimexplode(',', $cfg['groups']); 90 $titles = $this->trimexplode(',', $cfg['titles']);
|
/plugin/authdiscourse/ |
H A D | auth.php | 24 $cfg = $conf['plugin']['authdiscourse']; 25 if (empty($cfg['sso_secret']) || empty($cfg['sso_url'])) { 28 $this->sso_secret = $cfg['sso_secret']; 29 $this->sso_url = $cfg['sso_url'];
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/ |
H A D | IntegrationTest.php | 136 $cfg = new Configuration(); 137 $cfg->setMetadataDriverImpl(new AnnotationDriver(new AnnotationReader(), [ 140 $cfg->setAutoGenerateProxyClasses(true); 141 $cfg->setProxyNamespace('JMS\Serializer\DoctrineProxy'); 142 $cfg->setProxyDir(sys_get_temp_dir() . '/serializer-test-proxies'); 144 return EntityManager::create($con, $cfg);
|
H A D | ObjectConstructorTest.php | 270 $cfg = new Configuration(); 271 $cfg->setMetadataDriverImpl(new AnnotationDriver(new AnnotationReader(), [ 274 $cfg->setAutoGenerateProxyClasses(true); 275 $cfg->setProxyNamespace('JMS\Serializer\DoctrineProxy'); 276 $cfg->setProxyDir(sys_get_temp_dir() . '/serializer-test-proxies'); 278 return EntityManager::create($con, $cfg);
|
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Resources/ |
H A D | require.js | 37 cfg = {}, variable 179 cfg = requirejs; 186 cfg = require; 1227 if (cfg.baseUrl) { 1228 if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') { 1259 if (cfg.shim) { 1276 if (cfg.packages) { 1318 if (cfg.deps || cfg.callback) { 1319 context.require(cfg.deps || [], cfg.callback); 1926 cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain]; [all …]
|
/plugin/jplayer/components/ |
H A D | require.js | 37 cfg = {}, variable 179 cfg = requirejs; 186 cfg = require; 1227 if (cfg.baseUrl) { 1228 if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') { 1259 if (cfg.shim) { 1276 if (cfg.packages) { 1318 if (cfg.deps || cfg.callback) { 1319 context.require(cfg.deps || [], cfg.callback); 1926 cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain]; [all …]
|
/plugin/diagramsnet/lib/js/cryptojs/ |
H A D | aes.min.js | 12 …e();return a},_minBufferSize:0});l.Hasher=q.extend({cfg:t.extend(),init:function(a){this.cfg=this.… 22 …xtend({cfg:d.extend({keySize:4,hasher:p.MD5,iterations:1}),init:function(d){this.cfg=this.cfg.exte… 24 …cfg:l.extend(),createEncryptor:function(e,a){return this.create(this._ENC_XFORM_MODE,e,a)},createD… 27 …2]&255}};d.BlockCipher=v.extend({cfg:v.cfg.extend({mode:b,padding:q}),reset:function(){v.reset.cal… 28 …ction(a,b){this._mode.processBlock(a,b)},_doFinalize:function(){var a=this.cfg.padding;if(this._xf… 29 …her=l.extend({cfg:l.extend({format:b}),encrypt:function(a,b,c,d){d=this.cfg.extend(d);var l=a.crea… 30 …cfg.extend(d);b=this._parse(b,d.format);return a.createDecryptor(c,d).finalize(b.ciphertext)},_par… 31 …ll(this,b,c,d.key,l);b.mixIn(d);return b},decrypt:function(b,c,d,l){l=this.cfg.extend(l);c=this._p…
|
/plugin/imapmarkers/syntax/ |
H A D | map.php | 171 $cfg = $matches[1]; 173 if (json_decode($cfg)) { 175 $args = array($state, self::MATCH_IS_CONFIG, $is_correct, $err_msg, $cfg); 178 $err_msg = sprintf("Invalid JSON in configuration! JSON='%s'", $cfg); 326 list($state, $match_type, $is_correct, $err_msg, $cfg) = $value; 327 … imapmarkers-config" style="display: none;">%s</div>%s', $this->nr_imagemap_render, $cfg, DOKU_LF);
|
/plugin/imapmarkers/ |
H A D | script.js | 261 let cfg = JSON.parse(cfg_text); 263 _g.a_cfg[imap_index] = cfg; 264 if (cfg['clicked-reference-css'] !== undefined) { 265 … _g.a_clicked_css_properties[imap_index] = Object.keys(cfg['clicked-reference-css']).join(", "); 271 if (cfg['area-fillColor'] != undefined) { 273 mapster_decoration_obj.fillColor = String(cfg['area-fillColor']); 275 if (cfg['area-fillOpacity'] != undefined) { 277 mapster_decoration_obj.fillOpacity = parseFloat(String(cfg['area-fillOpacity']));
|
H A D | README.md | 24 {{cfg>}} 32 {{<cfg}} 86 A configuration is inside the map definition and starts with ```{{cfg>}}``` and ends with ```{{<cfg… 131 {{cfg>}} 138 {{<cfg}}
|
/plugin/ckgdoku/ckeditor/plugins/smiley/ |
H A D | plugin.js.unc | 33 * @cfg {String} [smiley_path=CKEDITOR.basePath + 'plugins/smiley/images/'] 49 * @cfg 78 * @cfg 93 * @cfg {Number} [smiley_columns=8]
|
/plugin/ckgedit/ckeditor/plugins/smiley/ |
H A D | plugin.js.unc | 33 * @cfg {String} [smiley_path=CKEDITOR.basePath + 'plugins/smiley/images/'] 49 * @cfg 78 * @cfg 93 * @cfg {Number} [smiley_columns=8]
|
/plugin/autolink4/ |
H A D | helper.php | 61 $cfg = io_readFile(self::CONFIG_FILE); 67 $lines = preg_split('/[\n\r]+/', $cfg);
|
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/ |
H A D | vbsso_shared.php | 227 $cfg = array(); 230 if (count($cfg)) { 231 $config[$platform] = array_merge($config[$platform], $cfg);
|
/plugin/openid/ |
H A D | action.php | 541 $cfg = '<?php' . "\n"; 543 $cfg .= '$openid_associations["' . addslashes($id) . '"] = "' . addslashes($login) . '"' . ";\n"; 545 file_put_contents(DOKU_CONF.'openid.php', $cfg);
|
/plugin/codemirror/dist/modes/ |
H A D | ttcn-cfg.min.js.map | 1 …cfg/ttcn-cfg.js"],"names":["mod","exports","module","require","define","amd","CodeMirror","defineM…
|
/plugin/ckgdoku/ckeditor/plugins/image/ |
H A D | plugin.js.unc | 134 * @cfg {Boolean} [image_removeLinkByEmptyURL=true] 144 * @cfg {String} [image_previewText='Lorem ipsum dolor...' (placeholder text)]
|