/plugin/jquery-syntax/jquery-syntax/base/ |
H A D | jquery.syntax.core.css | 1 .syntax-theme-base .syntax { 4 .syntax-theme-base .syntax .function { 6 .syntax-theme-base .syntax .keyword, .syntax-theme-base .syntax .access { 8 .syntax-theme-base .syntax .type { 10 .syntax-theme-base .syntax .comment { 12 .syntax-theme-base .syntax .constant { 14 .syntax-theme-base .syntax .string, .syntax-theme-base .syntax .symbol { 18 .syntax-theme-base .syntax .operator { 20 .syntax-theme-base .syntax .href { 27 .syntax-theme-base .syntax pre { [all …]
|
H A D | jquery.syntax.brush.xml.css | 1 .syntax-theme-base .syntax .xml .cdata-content { 4 .syntax-theme-base .syntax .xml .xml-tag, .syntax-theme-base .syntax .xml .cdata { 6 .syntax-theme-base .syntax .xml .tag-name, .syntax-theme-base .syntax .xml .cdata-tag { 9 .syntax-theme-base .syntax .xml .namespace { 11 .syntax-theme-base .syntax .xml .attribute { 13 .syntax-theme-base .syntax .xml .instruction { 15 .syntax-theme-base .syntax .xml .entity, .syntax-theme-base .syntax .xml .percent-escape {
|
H A D | jquery.syntax.brush.diff.css | 1 .syntax-theme-base .syntax .add { 3 .syntax-theme-base .syntax .del { 5 .syntax-theme-base .syntax .insert { 7 .syntax-theme-base .syntax .insert-line { 9 .syntax-theme-base .syntax .remove { 11 .syntax-theme-base .syntax .remove-line { 13 .syntax-theme-base .syntax .offset { 15 .syntax-theme-base .syntax .offset-line {
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | UriResolver.php | 58 * @param UriInterface $base Base URI 69 return $base; 81 $targetAuthority = $base->getAuthority(); 83 $targetPath = $base->getPath(); 106 $base->getScheme(), 135 * @param UriInterface $base Base URI 143 …($base->getScheme() !== $target->getScheme() || $target->getAuthority() === '' && $base->getAuthor… 164 if ($base->getPath() !== $target->getPath()) { 168 if ($base->getQuery() === $target->getQuery()) { 187 $sourceSegments = explode('/', $base->getPath()); [all …]
|
/plugin/openid/Auth/OpenID/ |
H A D | BigMath.php | 178 * @param int $base 212 * @param int $base 219 * @param int $base 248 function pow($base, $exponent) argument 258 function init($number, $base = 10) argument 263 function mod($base, $modulus) argument 265 return bcmod($base, $modulus); 282 * @param int $base 338 function pow($base, $exponent) argument 348 function init($number, $base = 10) argument [all …]
|
/plugin/authucenter/lib/uc_client/model/ |
H A D | user.php | 15 var $base; variable in usermodel 17 function __construct(&$base) { argument 18 $this->usermodel($base); 21 function usermodel(&$base) { argument 22 $this->base = $base; 23 $this->db = $base->db; 177 $uids = $this->base->implode($uidsarr); 188 $this->base->load('note'); 233 …$check_times = $this->base->settings['login_failedtime'] < 1 ? 5 : $this->base->settings['login_fa… 238 $ip = $this->base->onlineip; [all …]
|
H A D | domain.php | 15 var $base; variable in domainmodel 17 function __construct(&$base) { argument 18 $this->domainmodel($base); 21 function domainmodel(&$base) { argument 22 $this->base = $base; 23 $this->db = $base->db; 39 $start = $this->base->page_get_start($page, $ppp, $totalnum); 45 $domainids = $this->base->implode($arr);
|
H A D | tag.php | 15 var $base; variable in tagmodel 17 function __construct(&$base) { argument 18 $this->tagmodel($base); 21 function tagmodel(&$base) { argument 22 $this->base = $base; 23 $this->db = $base->db; 40 $this->base->load('app'); 53 …$this->db->query("UPDATE ".UC_DBTABLEPRE."tags SET data='$datanew', expiration='".$this->base->tim… 55 …ame, appid, data, expiration) VALUES ('$data[0]', '$appid', '$datanew', '".$this->base->time."')");
|
H A D | app.php | 15 var $base; variable in appmodel 17 function __construct(&$base) { argument 18 $this->appmodel($base); 21 function appmodel(&$base) { argument 22 $this->base = $base; 23 $this->db = $base->db;
|
H A D | cache.php | 23 var $base; variable in cachemodel 26 function __construct(&$base) { argument 27 $this->cachemodel($base); 30 function cachemodel(&$base) { argument 31 $this->base = $base; 32 $this->db = $base->db; 81 $this->base->load('app'); 94 return $this->base->get_setting();
|
H A D | mail.php | 17 var $base; variable in mailmodel 20 function __construct(&$base) { argument 21 $this->mailmodel($base); 24 function mailmodel(&$base) { argument 25 $this->base = $base; 26 $this->db = $base->db; 27 $this->apps = &$this->base->cache['apps']; 36 $start = $this->base->page_get_start($page, $ppp, $totalnum); 42 $data[$k]['appname'] = $this->base->cache['apps'][$v['appid']]['name']; 48 $ids = $this->base->implode($ids); [all …]
|
H A D | note.php | 21 var $base; variable in notemodel 26 function __construct(&$base) { argument 27 $this->notemodel($base); 30 function notemodel(&$base) { argument 31 $this->base = $base; 32 $this->db = $base->db; 33 $this->apps = $this->base->cache('apps'); 116 $this->base->load('misc'); 124 $note['getdata'] = $this->base->dstripslashes($note['getdata']); 142 $this->base->load($this->operations[$note['operation']][2]); [all …]
|
H A D | pm.php | 25 var $base; variable in pmmodel 26 function __construct(&$base) { argument 27 $this->pmmodel($base); 30 function pmmodel(&$base) { argument 31 $this->base = $base; 32 $this->db = $base->db; 82 $this->base->load('user'); 191 $this->base->load('user'); 309 $this->base->load('user'); 375 $this->base->load('user'); [all …]
|
H A D | friend.php | 15 var $base; variable in friendmodel 17 function __construct(&$base) { argument 18 $this->friendmodel($base); 21 function friendmodel(&$base) { argument 22 $this->base = $base; 23 $this->db = $base->db; 43 $friendids = $this->base->implode($friendids); 68 $start = $this->base->page_get_start($page, $pagesize, $totalnum);
|
/plugin/cleanup/ |
H A D | helper.php | 148 $time = $opts['useatime'] ? fileatime($base . $file) : filemtime($base . $file); 151 $this->delete($base.$file, 'cache'); 164 $time = filemtime($base . $file); 173 $this->delete($base.$file, 'attic'); 186 $time = filemtime($base . $file); 198 $this->delete($base.$file, 'mediattic'); 215 $time = filemtime($base . $file); 221 $this->delete($base.$file, 'meta'); 238 $time = filemtime($base . $file); 261 $time = filemtime($base . $file); [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | value.margin.class.php | 11 function calc($base, $base_font_size = 0) { argument 13 return $base * $this->percentage / 100; 19 function calcPercentage($base) { argument 59 function units2pt($base) { argument 120 function units2pt($base) { argument 121 $this->top->units2pt($base); 122 $this->bottom->units2pt($base); 123 $this->left->units2pt($base); 124 $this->right->units2pt($base); 127 function calcPercentages($base) { argument [all …]
|
H A D | value.padding.class.php | 11 function calcPercentage($base) { argument 54 function units2pt($base) { argument 115 function units2pt($base) { argument 116 $this->top->units2pt($base); 117 $this->bottom->units2pt($base); 118 $this->left->units2pt($base); 119 $this->right->units2pt($base); 122 function calcPercentages($base) { argument 123 $this->top->calcPercentage($base); 125 $this->left->calcPercentage($base); [all …]
|
/plugin/fedauth/Auth/OpenID/ |
H A D | BigMath.php | 203 function pow($base, $exponent) argument 205 return bcpow($base, $exponent); 213 function init($number, $base = 10) argument 218 function mod($base, $modulus) argument 220 return bcmod($base, $modulus); 289 function pow($base, $exponent) argument 291 return gmp_pow($base, $exponent); 299 function init($number, $base = 10) argument 301 return gmp_init($number, $base); 304 function mod($base, $modulus) argument [all …]
|
/plugin/s5reloaded/ |
H A D | renderer.php | 21 var $base=''; variable in renderer_plugin_s5reloaded 49 $this->base = DOKU_BASE.'lib/plugins/s5reloaded/ui/'; 109 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/wrap.css" type="text/css" /> 110 <link rel="stylesheet" href="'.$this->base.'../../../styles/style.css" type="text/css" /> 123 <script src="'.$this->base.$this->tpl.'/slides.js" type="text/javascript"></script> 126 <script src="'.$this->base.'effects_support/prototype.js" type="text/javascript"></script> 127 <script src="'.$this->base.'effects_support/scriptaculous.js" type="text/javascript"></script> 130 <script src="'.$this->base.'effects_support/presentacular.js" type="text/javascript"></script> 132 <script type="text/javascript" charset="utf-8" src="'.$this->base.'../../asciimath/asciimathml148r.… 133 <script type="text/javascript" charset="utf-8" src="'.$this->base.'../../asciimathml/ASCIIMathML148… [all …]
|
/plugin/explorertree/ |
H A D | helper.php | 128 function htmlExplorer($name,$base = '',$current = null){ argument 130 if ($base == '' || $base == '*') $base = ':'; 134 $data = $this->getTree($base); 136 if ($base == ':'){ 151 if ($base == ':'){ 153 …uery('#{$id}').explorerTree(".$this->_treeOpts($name,$current === null ? $base : $current).")});</… 196 $base = $item['label']; 198 $base = ':'.$item['id']; 199 $base = substr($base,strrpos($base,':')+1); 212 $ret .= $base;
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/ |
H A D | Indic.php | 162 * - The ones that are GenCat=Mn are already positioned visually, ie. after base. (eg. Khmer) 165 * We recategorize the first kind to look like a Nukta and attached to the base directly. 438 /* 1. Find base consonant: 440 * The shaping engine finds the base consonant of the syllable, using the 442 * until a consonant is found that does not have a below-base or post-base 443 * form (post-base forms have to follow below-base forms), or that is not a 444 * pre-base reordering Ra, or arrive at the first consonant. The consonant 445 * stopped at will be the base [all...] |
/plugin/repo/ |
H A D | syntax.php | 44 list($base, $title) = explode('|', $match, 2); 45 list($base, $refresh) = explode(' ', $base, 2); 56 return array(trim($base), trim($title), $pos, $refresh); 65 $base = hsc($data[0]); 66 $title = ($data[1] ? hsc($data[1]) : $base); 68 $url = $base.$path; 122 function _index($url, $path, $base = '', $lvl = 0) { argument 127 $data = $http->get($url.$base); 139 'path' => $base.$result, 230 $base = ''; [all …]
|
/plugin/dokutexit/ |
H A D | config.php | 406 $base = $this->get_base_header_fn(); 407 if (!$base) { 411 $base = $this->get_base_commands_fn(); 412 if (!$base) { 438 $this->simple_copy($base, $dest); 476 function compile_tex($base, $dest) { argument 494 function simple_copy($base, $dest) { argument 495 if (!copy($base, $dest)) { 505 function _needs_update($base, $dest) { argument 509 return filemtime($base) > filemtime($dest); [all …]
|
/plugin/revealjs/ |
H A D | renderer.php | 18 var $base = ''; variable in renderer_plugin_revealjs 80 $this->base = DOKU_BASE.'lib/plugins/revealjs/'; 93 <link rel="stylesheet" href="'.$this->base.'css/reveal.css"> 94 … <link rel="stylesheet" href="'.$this->base.'css/theme/'.$this->getConf('theme').'.css" id="theme"> 95 <link rel="stylesheet" href="'.$this->base.'doku-substitutes.css"> 98 <link rel="stylesheet" href="'.$this->base.'lib/css/zenburn.css"> 110 …ow.location.search.match( /print-pdf/gi ) ? \''.$this->base.'css/print/pdf.css\' : \''.$this->base… 115 <script src='.$this->base.'"lib/js/html5shiv.js"></script> 153 <script src="'.$this->base.'lib/js/head.min.js"></script> 154 <script src="'.$this->base.'js/reveal.js"></script> [all …]
|
/plugin/docsearch/ |
H A D | cron.php | 163 $base = ''; variable 166 $base = DOKU_INC; variable 168 $base .= $conf['savedir'] . '/'; 171 rmdirr($base . 'docsearch'); 175 $output = $base . 'docsearch/pages'; 176 $index = $base . 'docsearch/index'; 177 $cache = $base . 'docsearch/cache'; 178 $meta = $base . 'docsearch/meta'; 179 $locks = $base . 'docsearch/locks';
|