Home
last modified time | relevance | path

Searched +full:- +full:i (Results 1 – 25 of 521) sorted by relevance

12345678910>>...21

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DPHPCreator.php17 $this->contentType = "text/plain";
18 $this->encoding = "utf-8";
26 …$feed .= " \$feedTitle='".addslashes(FeedCreator::iTrunc(htmlspecialchars($this->title), 100))."'…
27 $feed .= " \$feedDescription='".addslashes($this->getDescription())."';\n";
28 $feed .= " \$feedLink='".$this->link."';\n";
30 for ($i = 0; $i < count($this->items); $i++) {
31 $feed .= " \$feedItem[$i] = new FeedItem();\n";
32 if ($this->items[$i]->guid != "") {
33 $feed .= " \$feedItem[$i]->id='".htmlspecialchars($this->items[$i]->guid)."';\n";
35 $feed .= " \$feedItem[$i]->title='".addslashes(
[all …]
H A DAtomCreator10.php5 * as in http://www.atomenabled.org/developers/syndication/atom-format-spec.php
15 * @since 1.7.2-mod (modified)
26 $this->contentType = "application/atom+xml";
27 $this->encoding = "utf-8";
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
34 $feed .= $this->_createGeneratorComment();
35 $feed .= $this->_createStylesheetReferences();
37 if (!empty($this->items[0]->lat)) {
40 if ($this->language != "") {
41 $feed .= " xml:lang=\"".$this->language."\"";
[all …]
H A DRSSCreator10.php16 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
17 $feed .= $this->_createGeneratorComment();
18 if (empty($this->cssStyleSheet)) {
19 $this->cssStyleSheet = "http://www.w3.org/2000/08/w3c-synd/style.css";
21 $feed .= $this->_createStylesheetReferences();
24 $feed .= " xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n";
26 if (!empty($this->items[0]->thumb)) {
29 if (!empty($this->items[0]->lat)) {
33 $feed .= " <channel rdf:about=\"".$this->syndicationURL."\">\n";
34 $feed .= " <title>".htmlspecialchars((string) $this->title)."</title>\n";
[all …]
H A DPIECreator01.php19 $this->encoding = "utf-8";
25 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
26 $feed .= $this->_createStylesheetReferences();
28 … $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</title>\n";
29 $feed .= " <subtitle>".$this->getDescription()."</subtitle>\n";
30 $feed .= " <link>".$this->link."</link>\n";
31 for ($i = 0; $i < count($this->items); $i++) {
34 htmlspecialchars(strip_tags($this->items[$i]->title)),
37 $feed .= " <link>".htmlspecialchars($this->items[$i]->link)."</link>\n";
38 $itemDate = new FeedDate($this->items[$i]->date);
[all …]
H A DAtomCreator03.php26 $this->contentType = "application/atom+xml";
27 $this->encoding = "utf-8";
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
34 $feed .= $this->_createGeneratorComment();
35 $feed .= $this->_createStylesheetReferences();
37 if ($this->format == 'TOOLBAR') {
40 if ($this->language != "") {
41 $feed .= " xml:lang=\"".$this->language."\"";
44 $feed .= " <title>".htmlspecialchars($this->title)."</title>\n";
45 $feed .= " <tagline>".htmlspecialchars($this->description)."</tagline>\n";
[all …]
H A DRSSCreator091.php6 * @see http://my.netscape.com/publish/formats/rss-spec-0.91.html
21 $this->_setRSSVersion("0.91");
22 $this->contentType = "application/rss+xml";
32 $this->RSSVersion = $version;
38 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
39 $feed .= $this->_createGeneratorComment();
40 $feed .= $this->_createStylesheetReferences();
41 $feed .= "<rss version=\"".$this->RSSVersion."\"";
43 if (count($this->items) > 0
44 && !empty($this->items[0]->lat)
[all …]
H A DGPXCreator.php17 $this->contentType = "text/xml";
18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
25 $feed .= $this->_createStylesheetReferences();
26 …p://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"…
31 $feed .= "<desc>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</desc>
33 <url>".htmlspecialchars($this->link)."</url>
34 <time>".htmlspecialchars($now->iso8601())."</time>
37 for ($i = 0; $i < count($this->items); $i++) {
38 $feed .= "<wpt lat=\"".$this->items[$i]->lat."\" lon=\"".$this->items[$i]->long."\">
[all …]
H A DKMLCreator.php17 $this->contentType = "application/vnd.google-earth.kml+xml";
18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
25 $feed .= $this->_createStylesheetReferences();
31 if (!empty($_GET['simple']) && count($this->items) > 0) {
38 (($this->items[0]->thumb != "") ? "
59 $feed .= " <name>".FeedCreator::iTrunc(htmlspecialchars($this->title), 100)."</name>
60 <description>".$this->getDescription()."</description>
63 for ($i = 0; $i < count($this->items); $i++) {
65 $this->items[$i]->description = "<b>".$this->items[$i]->description."</b><br/>
[all …]
H A DMBOXCreator.php18 $this->contentType = "text/plain";
19 $this->encoding = "ISO-8859-15";
39 for ($i = 0; $i < $linlen; $i++) {
40 $c = substr($line, $i, 1);
42 if (($dec == 32) && ($i == ($linlen - 1))) { // convert space at eol only
69 for ($i = 0; $i < count($this->items); $i++) {
70 if ($this->items[$i]->author != "") {
71 $from = $this->items[$i]->author;
73 $from = $this->title;
75 $itemDate = new FeedDate($this->items[$i]->date);
[all …]
H A DOPMLCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
25 $feed .= $this->_createGeneratorComment();
26 $feed .= $this->_createStylesheetReferences();
27 …d=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n";
29 $feed .= " <title>".htmlspecialchars($this->title)."</title>\n";
30 if ($this->pubDate != "") {
31 $date = new FeedDate($this->pubDate);
32 $feed .= " <dateCreated>".$date->rfc822()."</dateCreated>\n";
34 if ($this->lastBuildDate != "") {
[all …]
/dokuwiki/lib/scripts/jquery/
H A Djquery-ui.min.js1 /*! jQuery UI - v1.14.1 - 2024-10-30
3-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.j…
6i,E=0,N=Array.prototype.hasOwnProperty,c=Array.prototype.slice;V.cleanData=(n=V.cleanData,function… class
H A Djquery.min.js2i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"functio… class
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php5 * such as sha256-96. Any hash algorithm returned by hash_algos() (and
18 * $hash->setKey('abcdefg');
20 * echo base64_encode($hash->hash('abcdefg'));
28 * @license http://www.opensource.org/licenses/mit-license.html MIT License
82 * Byte-length of hash output (Internal HMAC)
195 /**#@-*/
204 $this->setHash($hash);
216 $this->key = $key;
217 $this->computeKey();
218 $this->recomputeAESKey = true;
[all …]
H A DRijndael.php4 * Pure-PHP implementation of Rijndael.
12 …* {@link self::setKey() setKey()}. ie. if the key is 128-bits, the key length will be 128-bits. …
13 * 136-bits it'll be null-padded to 192-bits and 192 bits will be the key length until
16 …* Not all Rijndael implementations may support 160-bits or 224-bits as the block length / key leng…
18 …* {@link http://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf#page=10 Rijndael-ammended…
21 …* {@link http://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf#page=44 Rijndael-ammended…
23 …* Note: Use of 160/224-bit Keys must be explicitly set by setKeyLength(160) respectively setKeyLen…
26 …* {@link http://www.csrc.nist.gov/publications/fips/fips197/fips-197.pdf#page=10 fips-197.pdf#page…
35 * $rijndael->setKey('abcdefghijklmnop');
39 * for ($i = 0; $i < $size; $i++) {
[all …]
/dokuwiki/lib/plugins/config/lang/cy/
H A Dlang.php26 /* --- Config Setting Headers --- */
33 /* --- Config Setting Groups --- */
37 $lang['_anti_spam'] = 'Gwrth-Sbam';
46 /* --- Undefined Setting Messages --- */
51 /* -------------------- Config Options --------------------------- */
55 $lang['start'] = 'Enw\'r dudalen i\'w defnyddio fel man cychwyn ar gyfer pob namespace'; //na…
64 $lang['cookiedir'] = 'Llwybr cwcis. Gadewch yn wag i ddefnyddio \'baseurl\'.';
71 $lang['recent_days'] = 'Sawl newid diweddar i\'w cadw (diwrnodau)';
72 $lang['breadcrumbs'] = 'Nifer y briwsion "trywydd". Gosodwch i 0 i analluogi.';
77 $lang['signature'] = 'Yr hyn i\'w mewnosod gyda\'r botwm llofnod yn y golygydd';
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DEvalBarrett.php10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
59 $m_length = count($m->value);
64 $lhs->value = $x;
66 $rhs->value = [' .
67 implode(',', array_map(self::class . '::float2string', $m->value)) . '];
68 list(, $temp) = $lhs->divide($rhs);
69 return $temp->value;
81 array_unshift($m->value, 0);
86 $lhs_value = &$lhs->value;
92 list($u, $m1) = $lhs->divide($m);
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php4 * Pure-PHP BigInteger Engine
10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
20 * Pure-PHP Engine.
41 /**#@-*/
69 * @param mixed $x integer Base-10 number or base-$base number if $base set.
83 $this->value = [];
97 $x = (strlen($this->value) & 1) ? '0' . $this->value : $this->value;
99 $this->value = $temp->value;
105 $multiplier->value = [static::MAX10];
107 $x = $this->value;
[all …]
/dokuwiki/inc/Parsing/Handler/
H A DQuote.php12 $last_call = end($this->calls);
13 $this->writeCall(['quote_end', [], $last_call[2]]);
15 $this->process();
16 $this->callWriter->finalise();
17 unset($this->callWriter);
26 foreach ($this->calls as $call) {
31 $this->quoteCalls[] = ['quote_open', [], $call[2]];
34 $quoteLength = $this->getDepth($call[1][0]);
37 $quoteDiff = $quoteLength - $quoteDepth;
38 for ($i = 1; $i <= $quoteDiff; $i++) {
[all …]
/dokuwiki/inc/Utf8/
H A DClean.php6 * Methods to assess and clean UTF-8 strings
13 * @author Andreas Haerter <andreas.haerter@dev.mail-node.com>
20 return (preg_match('/(?:[^\x00-\x7F])/', $str) !== 1);
27 * @link http://php.net/manual/en/function.utf8-encode.php
35 for ($i = 0; $i < $len; $i++) {
36 $b = ord($str[$i]);
46 if ((++$i === $len) || ((ord($str[$i]) & 0xC0) !== 0x80))
67 for ($i = 0; $i < $len; $i++) {
68 if (ord($str[$i]) < 128) {
69 $ascii .= $str[$i];
[all …]
/dokuwiki/lib/plugins/config/lang/sq/
H A Dlang.php12 $lang['menu'] = 'Konfigurimi i Kuadrove';
17 …'] = 'Skedari i kuadrove nuk mund të përditësohet, nëse kjo është e paqëllimshme, <…
18 $lang['danger'] = 'Rrezik: Ndrishimi i kësaj alternative mund ta bëjë wiki-n dhe men…
19 $lang['warning'] = 'Paralajmërim: Ndryshimi i kësaj alternative mund të shkaktojë sje…
20 $lang['security'] = 'Paralajmërim Sigurie: Ndryshimi i kësaj alternative mund të paraq…
21 $lang['_configuration_manager'] = 'Menaxhuesi i Kuadrove';
22 $lang['_header_dokuwiki'] = 'Kuadrot e DokuWiki-t';
23 $lang['_header_plugin'] = 'Kuadrot e Plugin-eve';
24 $lang['_header_template'] = 'Kuadrot e Template-eve';
29 $lang['_anti_spam'] = 'Kuadrot Anti-Spam';
[all …]
/dokuwiki/lib/plugins/usermanager/lang/sq/
H A Dlang.php13 $lang['noauth'] = '(autentikimi i përdoruesve nuk është i disponueshëm)';
14 $lang['nosupport'] = '(menaxhimi i përdoruesve nuk suportohet)';
15 $lang['badauth'] = '(mekanizëm i pavlefshëm autentikimi)';
19 $lang['user_name'] = 'Emri i Vërtetë';
34 $lang['summary'] = 'Duke treguar përdoruesit %1$d-%2$d nga %3$d të gjetur. %4$d përdo…
39 $lang['update_fail'] = 'Përditësimi i përdoruesit dështoi.';
40 $lang['update_exists'] = 'Ndryshimi i emrit të përdoruesit dështoi, emri i përdoruesit i sp…
45 $lang['edit_usermissing'] = 'Përdoruesi i përzgjedhur nuk u gjet, emri i specifikuar i përdoru…
47 $lang['note_notify'] = 'Email-et e lajmërimit dërgohen vetëm nëse përdoruesit i jepet një…
49 …lëkalimi do të autogjenerohet nëse fusha lihet bosh dhe lajmërimi i përdoruesit është i aktivizuar…
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php8 * @license http://www.opensource.org/licenses/mit-license.html MIT License
61 * See {@link http://tools.ietf.org/html/rfc3447#section-5.1.2 RFC3447#section-5.1.2}.
67 if ($c->compare(self::$zero) < 0 || $c->compare($this->modulus) > 0) {
70 return $this->exponentiate($c);
76 * See {@link http://tools.ietf.org/html/rfc3447#section-5.2.1 RFC3447#section-5.2.1}.
82 if ($m->compare(self::$zero) < 0 || $m->compare($this->modulus) > 0) {
85 return $this->exponentiate($m);
97 case empty($this->primes):
98 case $this->primes[1]->equals(self::$zero):
99 case empty($this->coefficients):
[all …]
/dokuwiki/inc/Parsing/ParserMode/
H A DExternallink.php13 if (count($this->patterns)) return;
16 $gunk = '/\#~:.?+=&%@!\-\[\]';
17 $punc = '.:?\-;,';
21 $this->schemes = getSchemes();
22 foreach ($this->schemes as $scheme) {
23 …$this->patterns[] = '\b(?i)' . $scheme . '(?-i)://[' . $any . ']+?(?=[' . $punc . ']*[^' . $any . …
26 $this->patterns[] = '(?<![/\\\\])\b(?i)www?(?-i)\.[' . $host . ']+?\.' .
28 $this->patterns[] = '(?<![/\\\\])\b(?i)ftp?(?-i)\.[' . $host . ']+?\.' .
36 foreach ($this->patterns as $pattern) {
37 $this->Lexer->addSpecialPattern($pattern, $mode, 'externallink');
[all …]
/dokuwiki/lib/plugins/acl/lang/eu/
H A Dlang.php6 * @author Inko Illarramendi <inko.i.a@gmail.com>
14 $lang['namespace'] = 'Izen-espazioa';
16 …</b> erabiltzaileak une honetan honako baimenak ditu <b class="aclpage">%s</b> orrian: <i>%s</i>.';
17 …rabiltzaileak une honetan honako baimenak ditu <b class="aclns">%s</b> izen-espazioan: <i>%s</i>.';
18 …> taldeko kideek une honetan honako baimenak dituzte <b class="aclpage">%s</b> orrian: <i>%s</i>.';
19 …eko kideek une honetan honako baimenak dituzte <b class="aclns">%s</b> izen-espazioan: <i>%s</i>.';
21 … erabiltzaile edo taldea</b> goiko formularioan <b class="aclns">%s</b> izen-espazioan ezarritako …
22 …oriek ez dira esplizituki jarriak, beste talde batzuetatik edo goragoko izen-espazioetatik heredat…
24 … baimen txikiagoak barneratzen dituzte. Sortu, Igo eta Ezabatu baimenak izen-espazioei soilik apli…
26 $lang['where'] = 'Orria/Izen-espazioa';
/dokuwiki/lib/plugins/styling/
H A Daction.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
23 $controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'handleHeader');
27 * Adds the preview parameter to the stylesheet loading in non-js mode
38 if ($ACT != 'admin' || $INPUT->str('page') != 'styling') return;
41 if (!$admin->isAccessibleByCurrentUser()) return;
44 $len = count($event->data['link']);
45 for ($i = 0; $i < $len; $i++) {
47 $event->data['link'][$i]['rel'] == 'stylesheet' &&
48 strpos($event->data['link'][$i]['href'], 'lib/exe/css.php') !== false
50 $event->data['link'][$i]['href'] .= '&preview=1&tseed=' . time();

12345678910>>...21