Home
last modified time | relevance | path

Searched refs:base (Results 26 – 50 of 1781) sorted by relevance

12345678910>>...72

/plugin/move/admin/
H A Dtree.php101 * @param string $base The namespace to start from
104 public function tree($type = self::TYPE_PAGES, $open = '', $base = '') { argument
108 $basedir = utf8_encodeFN(str_replace(':', '/', $base));
141 $base = $item['label'];
143 $base = ':' . $item['id'];
144 $base = substr($base, strrpos($base, ':') + 1);
156 $ret .= $base;
/plugin/combo/ComboStrap/Web/
H A DUrl.php736 $base = "$scheme://";
738 $base = "$base{$this->getHost()}";
745 $base = "$base{$path}";
749 return $base;
759 $base = "$scheme:";
761 $base = "$base{$this->getPath()}";
766 $base
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDH.php70 protected $base; variable in phpseclib3\\Crypt\\DH
91 $params->base = $args[1];
95 $params->base = new BigInteger(2);
222 $params->base = new BigInteger(2);
257 $key->base = $params->base;
259 $key->publicKey = $key->base->powMod($key->privateKey, $key->prime);
276 … if (!$private->prime->equals($public->prime) || !$private->base->equals($public->base)) {
353 $new->base = $components['base'];
400 $key = $type::saveParameters($this->prime, $this->base);
/plugin/pubmed2020/classes/
H A Dcache.php97 function getRawContentPath($base, $id) { argument
99 $base = strtolower($base);
101 if ($base === "pmcid")
238 function getMedlineContent($base, $id) { argument
265 function saveRawMedlineContent($base, $raw) { argument
269 $path = $this->getRawContentPath($base, $id);
368 function _idExists($base, $id) { argument
369 $path = $this->getRawContentPath($base, $id);
380 function _read_array($base, $id) { argument
383 $path = $this->getRawContentPath($base, $id);
[all …]
/plugin/letsencrypt/classes/
H A DClient.php9 protected $base; variable in dokuwiki\\plugin\\letsencrypt\\classes\\Client
16 * @param string $base the ACME API base all relative requests are sent to
18 public function __construct($base) { argument
19 $this->base = $base;
32 if(!preg_match('/^https?:\/\//', $url)) $url = $this->base . $url;
45 if(!preg_match('/^https?:\/\//', $url)) $url = $this->base . $url;
/plugin/jquery-syntax/jquery-syntax/base/
H A Djquery.syntax.layout.fixed.css1 .syntax-container.syntax-theme-base div.fixed.syntax {
6 .syntax-container.syntax-theme-base div.fixed.syntax .numbers-column {
13 .syntax-container.syntax-theme-base div.fixed.syntax .numbers-column div {
15 .syntax-container.syntax-theme-base div.fixed.syntax .code-column {
19 .syntax-container.syntax-theme-base div.fixed.syntax .code-column table {
23 .syntax-container.syntax-theme-base div.fixed.syntax .code-column .source {
27 .syntax-container.syntax-theme-base div.fixed.syntax .code-column .source.alt {
H A Djquery.syntax.layout.list.css1 .syntax-container.syntax-theme-base ol.syntax {
6 .syntax-container.syntax-theme-base ol.syntax li {
19 .syntax-container.syntax-theme-base ol.syntax li div.source {
25 .syntax-container.syntax-theme-base ol.syntax li.alt div.source {
27 .syntax-container.syntax-theme-base ul.syntax {
33 .syntax-container.syntax-theme-base ul.syntax li {
45 .syntax-container.syntax-theme-base ul.syntax li div.source {
50 .syntax-container.syntax-theme-base ul.syntax li.alt div.source {
H A Djquery.syntax.brush.bash.css1 .syntax-theme-base .syntax .bash {
4 .syntax-theme-base .syntax .bash .prompt {
7 .syntax-theme-base .syntax .bash .bash-script {
10 .syntax-theme-base .syntax .bash .stderr {
H A Djquery.syntax.brush.css.css1 .syntax-theme-base .syntax .css .selector {
4 .syntax-theme-base .syntax .css .property {
6 .syntax-theme-base .syntax .css .color-box {
8 .syntax-theme-base .syntax .css .color-box .sample {
/plugin/davcal/vendor/sabre/uri/lib/
H A Dfunctions.php17 $base = parse($basePath);
20 $pick = function($part) use ($base, $delta) {
24 } elseif ($base[$part]) {
25 return $base[$part];
50 $path = $base['path'];
57 $path = $base['path'] ?: '/';
83 } elseif (!empty($base['query']) && empty($delta['host']) && empty($delta['path'])) {
85 $newParts['query'] = $base['query'];
/plugin/headerfooter/
H A Daction.php24 $base = str_replace('\\', '/', DOKU_INC) . 'data/pages/' . $ns; // 得到文件绝对路径
26 if (file_exists($base . '_header.txt')){ // 存在头文件
27 $header = file_get_contents($base . '_header.txt');
33 if (file_exists($base . '_footer.txt')){ // 存在尾文件
34 $footer = file_get_contents($base . '_footer.txt');
/plugin/s5/
H A Drenderer.php19 var $base=''; variable in renderer_plugin_s5
47 $this->base = DOKU_BASE.'lib/plugins/s5/ui/';
83 <link rel="stylesheet" href="'.$this->base.$this->tpl.'/slides.css" type="text/css" media="projecti…
84 <link rel="stylesheet" href="'.$this->base.'default/outline.css" type="text/css" media="screen" id=…
85 <link rel="stylesheet" href="'.$this->base.'default/print.css" type="text/css" media="print" id="sl…
86 <link rel="stylesheet" href="'.$this->base.'default/opera.css" type="text/css" media="projection" i…
88 <script src="'.$this->base.'default/slides.js" type="text/javascript"></script>
/plugin/pgn4web/pgn4web/
H A Dviewer-links.php48 $base = $baseItem->getAttribute('href');
50 $base = $targetUrl;
57 $url = make_absolute($frame->getAttribute('src'), $base);
63 $url = make_absolute($frame->getAttribute('src'), $base);
72 $absolute = make_absolute($url, $base);
140 function make_absolute($url, $base) { argument
143 if( ! $url) return $base;
149 if($url[0] == '#' || $url[0] == '?') return $base.$url;
152 extract(parse_url($base));
/plugin/jplayer/vendor/happyworm/jplayer/src/skin/pink.flag/scss/
H A Djplayer.pink.flag.scss16 $jplayer-images-base-url: "../image/" !default;
122 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0 0 no-repeat;
163 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -40px no-repeat;
171 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -120px no-repeat;
185 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -80px no-repeat;
277 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0 -420px no-repeat;
291 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0 -440px no-repeat;
305 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0 -460px no-repeat;
328 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.seeking.gif");
349 background: url("#{$jplayer-images-base-url}jplayer.pink.flag.jpg") 0px -260px repeat-x;
[all …]
/plugin/dev/
H A DSkeletor.php22 protected $base; variable in dokuwiki\\plugin\\dev\\Skeletor
37 * @param string $base
44 public function __construct($type, $base, $desc, $author, $email, $name = '', $url = '') argument
47 $this->base = $base;
51 $this->name = $name ?: ucfirst($base . ' ' . $type);
54 $this->url = $url ?: 'https://www.dokuwiki.org/plugin:' . $base;
55 $this->dir = 'lib/plugins/' . $base;
57 $this->url = $url ?: 'https://www.dokuwiki.org/template:' . $base;
58 $this->dir = 'lib/tpl/' . $base;
[all...]
/plugin/impressjs/
H A Drenderer.php20 private $base; variable in renderer_plugin_impressjs
26 $this->base = DOKU_BASE.'lib/plugins/impressjs/tpl/';
40 <link href="'.$this->base.$this->tpl.'/impress.css" rel="stylesheet" />
41 <link href="'.$this->base.$this->tpl.'/impress-extra.css" rel="stylesheet" />
49 <script src="'.$this->base.$this->tpl.'/impress.js"></script>
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/inheritance/
H A Dmultiple.test6 {% extends "base.twig" %}{% block content %}{{ parent() }}layout {% endblock %}
7 --TEMPLATE(base.twig)--
8 {% block content %}base {% endblock %}
12 base layout index
/plugin/jplayer/vendor/happyworm/jplayer/src/skin/blue.monday/scss/
H A Djplayer.blue.monday.scss16 $jplayer-images-base-url: "../image/" !default;
165 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 0 no-repeat;
168 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") -41px 0 no-repeat;
171 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 -42px no-repeat;
184 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 -83px no-repeat;
193 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 -112px no-repeat;
200 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 -141px no-repeat;
234 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 -202px repeat-x;
247 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.seeking.gif");
312 background: url("#{$jplayer-images-base-url}jplayer.blue.monday.jpg") 0 -250px repeat-x;
[all …]
/plugin/struct/meta/
H A DSchemaEditor.php117 $base = 'schema[' . $key . '][' . $column_id . ']'; // base name for all fields
124 $html .= '<input type="text" name="' . $base . '[sort]" value="' . hsc($col->getSort()) . '" size="3">';
128 $html .= '<input type="text" name="' . $base . '[label]" value="' . hsc($col->getType()->getLabel()) . '">';
133 $html .= '<input type="checkbox" name="' . $base . '[ismulti]" value="1" ' . $checked . '>';
138 $html .= '<textarea name="' . $base . '[config]" cols="45" rows="10" class="config">' .
145 $html .= '<select name="' . $base . '[class]">';
156 $html .= '<input type="checkbox" name="' . $base . '[isenabled]" value="1" ' . $checked . '>';
/plugin/icalevents/vendor/sabre/uri/lib/
H A Dfunctions.php25 $base = parse($basePath);
28 $pick = function($part) use ($base, $delta) {
32 } elseif ($base[$part]) {
33 return $base[$part];
58 $path = $base['path'];
65 $path = $base['path'] ?: '/';
91 } elseif (!empty($base['query']) && empty($delta['host']) && empty($delta['path'])) {
93 $newParts['query'] = $base['query'];
/plugin/webdav/vendor/sabre/uri/lib/
H A Dfunctions.php25 $base = parse($basePath);
28 $pick = function($part) use ($base, $delta) {
32 } elseif ($base[$part]) {
33 return $base[$part];
58 $path = $base['path'];
65 $path = $base['path'] ?: '/';
91 } elseif (!empty($base['query']) && empty($delta['host']) && empty($delta['path'])) {
93 $newParts['query'] = $base['query'];
/plugin/pubmed2020/
H A Dsyntax.php366 list($base, $req) = $query;
430 $raw = $this->getMedlineContent($base, $id);
446 $raw = $this->getMedlineContent($base, $id);
479 $raw = $this->getMedlineContent($base, $curId);
564 function getMedlineContent($base, $id) { argument
571 $raw = $this->pubmed2020->getDataFromCtxp($base, $id);
573 $this->pubmedCache->saveRawMedlineContent($base, $raw);
580 function checkIdFormat($base, $id) { argument
593 function getIdOutput($cmd, $base, $id, $multipleIds) { argument
594 if (!$this->checkIdFormat($base, $id)) {
[all …]
/plugin/farmsync/meta/
H A DTemplateUpdates.php60 * @param string $base Where to start the search.
67 public function getTemplates($base, $dir = '', $lvl = 0, $opts = array()) { argument
73 if ($base == '' || $base == '/') {
78 $dh = @opendir($base . '/' . $dir);
84 if (is_dir($base . '/' . $dir . '/' . $file)) {
99 $items = array_merge($items, $this->getTemplates($base, $sdir, $lvl + 1, $opts));
/plugin/diagramsnet/lib/math/
H A Dlatest.js19base:"https://cdnjs.cloudflare.com/ajax/libs/mathjax/"},"rawcdn.githack.com":{api:"https://api.git… property in k.gitcdn.xyz
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/perl/
H A Dio.pl39 local($path, $base, $ext);
44 $base = $1;
46 if($fileName =~ /(.*)$base\.$ext$/) {
50 return($path,$base,$ext);

12345678910>>...72