Home
last modified time | relevance | path

Searched refs:data (Results 51 – 75 of 161) sorted by relevance

1234567

/dokuwiki/bin/
H A Dindexer.php68 $data = [];
70 search($data, $conf['datadir'], 'search_allpages', ['skipacl' => true]);
71 $this->quietecho(count($data) . " pages found.\n");
73 foreach ($data as $val) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php41 * of data. The average length of back to back _encryptBlock() calls with a fixed P-array is
42 * 514.12, which is ~4KB of data. Creating an eval()-optimized _encryptBlock() has an upfront
44 * data. Conseqeuently, bcrypt does not benefit from the eval()-optimized _encryptBlock().
66 * Every bcrypt round is the equivalent of encrypting 512KB of data. Since OpenSSH uses 16
67 * rounds by default that's ~8MB of data that's essentially being encrypted whenever
68 * you use bcrypt. That's a lot of data, however, bcrypt operates within tighter constraints
445 for ($data = 0, $k = 0; $k < 4; ++$k) {
446 $data = ($data << 8) | $key[$j];
451 $this->bctx['p'][] = self::$parray[$i] ^ intval($data);
689 _expandstate($data, $key, & $sbox0, & $sbox1, & $sbox2, & $sbox3, & $p) global() argument
[all...]
/dokuwiki/inc/Action/
H A DDenied.php29 $data = null;
30 $event = new Event('ACTION_DENIED_TPLCONTENT', $data);
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingLicense.php17 foreach ($license as $key => $data) {
19 $this->lang[$this->key . '_o_' . $key] = $data['name']; // stored in setting
/dokuwiki/inc/
H A Dcommon.php261 //load page meta data
400 * @return string[] with the data: array(pageid=>name, ... )
706 * Action Plugins can use this event to inspect the blocked data
709 * Event data:
710 * data['matches'] - array of matches
711 * data['userinfo'] - information about the blocked user
762 // prepare event data
763 $data = [];
764 $data['matches'] = $matches;
765 $data['userinf
1124 parsePageTemplate(& $data) global() argument
[all...]
H A Dindexer.php23 * The indexer is only compatible with data written by the same version.
27 * add their version info to the event data like so:
28 * $data[$plugin_name] = $plugin_version;
42 $data = ['dokuwiki' => $version];
43 Event::createAndTrigger('INDEXER_VERSION_GET', $data, null, false);
44 unset($data['dokuwiki']); // this needs to be first
45 ksort($data);
46 foreach ($data as $plugin => $vers)
187 $data = ['page' => $page, 'body' => $body, 'metadata' => $metadata, 'pid' => $pid];
188 $evt = new Event('INDEXER_PAGE_ADD', $data);
[all...]
H A Dhtml.php108 * prepares section edit button data for event triggering
122 $data = json_decode($json, true, 512, JSON_THROW_ON_ERROR);
126 $data['target'] = strtolower($data['target']);
127 $data['hid'] = strtolower($data['hid'] ?? '');
131 $data,
142 * @param array $data name, section id and target
145 function html_secedit_get_button($data)
150 if (!isset($data['nam
132 html_secedit_get_button($data) global() argument
428 html_buildlist($data, $class, $func, $lifunc = null, $forcewrapper = false) global() argument
[all...]
/dokuwiki/inc/Remote/
H A DApiCore.php265 $data = [];
269 search($data, $conf['datadir'], 'search_allpages', $opts, $dir);
279 ), $data);
327 $data = ft_pageSearch($query, $regex);
330 // prepare additional data
332 foreach ($data as $id => $score) {
416 * The page is rendered to HTML as it would be in the wiki. The HTML consist only of the data for the page
438 * Return some basic data about a page
767 $data = [];
768 search($data,
[all...]
/dokuwiki/lib/plugins/popularity/lang/cs/
H A Dintro.txt3 Tento nástroj jednorázově shromáždí anonymní data o vaší wiki a umožní vám odeslat je vývojářům DokuWiki. To jim pomůže lépe porozumět, jak uživatelé DokuWiki používají, a jejich rozhodnutí při dalším vývoji budou založena na statistikách z reálného používání DokuWiki.
5 Chcete-li pomoci vývojářům, čas od času, jak vaše wiki poroste, použijte tento nástroj. Vaše data budou pokaždé označena stejným anonymním identifikátorem.
7 Shromážděná data budou obsahovat informace, jako je instalovaná verze DokuWiki, počet a velikosti stránek a souborů, instalované pluginy a informace o nainstalovaném PHP.
9 Čistá data, která se odešlou, budou vidět níže. K odeslání informací použijte prosím tlačítko "Odeslat data"
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php17 public function __construct($callbacks = false, $data = false, $wait = false) argument
25 $this->serve($data);
29 public function serve($data = false) argument
31 if (!$data) {
37 $data = file_get_contents('php://input');
39 $this->message = new Message($data);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSource.php61 public $data = []; variable in SimplePie\\Source
64 public function __construct($item, $data) argument
67 $this->data = $data;
77 return md5(serialize($this->data));
82 if (isset($this->data['child'][$namespace][$tag])) {
83 return $this->data['child'][$namespace][$tag];
94 public function sanitize($data, $type, $base = '') argument
96 return $this->item->sanitize($data, $type, $base);
107 return $this->sanitize($return[0]['data'],
[all...]
H A DSanitize.php56 * Used for data cleanup and post-processing
343 public function sanitize($data, $type, $base = '') argument
345 $data = trim($data);
346 if ($data !== '' || $type & \SimplePie\SimplePie::CONSTRUCT_IRI) {
348 if (preg_match('/(&(#(x[0-9a-fA-F]+|[0-9]+)|[a-zA-Z0-9]+)|<\/[A-Za-z][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E]*' . \SimplePie\SimplePie::PCRE_HTML_ATTRIBUTE . '>)/', $data)) {
356 $data = base64_decode($data);
366 $data = $this->preprocess($data,
[all...]
H A DGzdecode.php49 * Decode 'gzip' encoded HTTP data
58 * Compressed data
62 * @see gzdecode::$data
67 * Size of compressed data
99 * Uncompressed data
105 public $data; variable in SimplePie\\Gzdecode
191 * @param string $data
193 public function __construct($data) argument
195 $this->compressed_data = $data;
196 $this->compressed_size = strlen($data);
[all...]
/dokuwiki/lib/plugins/config/core/
H A DLoader.php10 * Loads configuration meta data and settings from the various files. Honors the
39 * Read the settings meta data
41 * Reads the main file, plugins and template settings meta data
212 // read data
213 $data = [];
214 $data[$prefix . $type . '_settings_name'] = ['fieldset'];
217 $data[$prefix . $key] = $value;
220 return $data;
242 // read data
243 $data
[all...]
/dokuwiki/lib/plugins/popularity/lang/no/
H A Dintro.txt3 Dette verktøyet samler anonyme data om din wiki og sender disse tilbake til DokuWikis utviklere. Dette hjelper utviklerne til å forstå hvordan DokuWiki blir brukt, og gjør at fremtidig beslutninger om videre utvikling kan baseres på statistikk fra virkelig bruk.
7 De data som samles inn inneholder informasjon om din DokuWiki-versjon, antallet og størrelsen på sider og filer, installerte utvidelser og informasjon om hvilken versjon av PHP som er installert.
9 Rådata som blir sendt vises nedenfor. Bruk knappen "Send data" for å overføre denne informasjonen
/dokuwiki/inc/HTTP/
H A DHTTPClient.php61 // what we use as boundary on multipart/form-data posts
107 * @param array $data Associative array of parameters
113 public function dget($url, $data, $sloppy304 = false)
120 $url .= $this->postEncode($data);
130 * @param array $data Associative array of parameters
134 public function post($url, $data)
136 if (!$this->sendRequest($url, $data, 'POST')) return false;
147 * Post data should be passed as associative array. When passed as string it will be
151 * @param mixed $data - the post data eithe
121 dget($url, $data, $sloppy304 = false) global() argument
141 post($url, $data) global() argument
164 sendRequest($url, $data = '', $method = 'GET') global() argument
580 sendData($socket, $data, $message) global() argument
824 postEncode($data) global() argument
837 postMultipartEncode($data) global() argument
[all...]
/dokuwiki/lib/plugins/revert/
H A Dadmin.php94 $data = '';
99 $data = rawWiki($id, $REV);
100 if (strpos($data, (string) $filter) === false) break;
104 if ($data) {
105 saveWikiText($id, $data, 'old revision restored', false);
/dokuwiki/lib/plugins/popularity/lang/en/
H A Dsubmitted.txt3 The data has been sent succesfully.
/dokuwiki/lib/plugins/popularity/lang/cy/
H A Dsubmitted.txt3 Cafodd y data ei anfon yn llwyddiannus.
H A Dintro.txt3 Mae'r [[doku>popularity|teclyn]] hwn yn casglu data anhysbys am eich wici ac yn eich galluogi chi i'w anfon yn ôl i ddatblygwyr DokuWiki. Mae hwn yn eu helpu nhw i ddeall sut mae DokuWiki yn cael ei ddefnyddio gan ei ddefnyddwyr ac mae\'n sicrhau bod penderfyniadau datblygu yn y dyfodol yn cael eu cefnogi gan ystadegau defnydd go iawn.
5 Cewch eich annog i ailadrodd y cam hwn o dro i dro er mwyn hysbysu datblygwyr wrth i'ch wici dyfu. Caiff eich setiau data eilfydd eu hadnabod gan ID anhysbys.
7 Mae'r data sy'n cael ei gasglu yn cynnwys pethau fel fersiwn eich DokuWiki, nifer a maint eich tudalennau a'ch ffeiliau chi, ategion sydd wedi'u harsefydlu a gwybodaeth parthed eich arsefydliad PHP.
9 Caiff y data crai i'w anfon ei ddangos isod. Pwyswch fotwm "Anfon Data" i drosglwyddo'r wybodaeth.
/dokuwiki/
H A Dfeed.php74 $data = null; global() variable
82 $data = $modes[$opt['feed_mode']]($opt); global() variable
204 rss_buildItems(& $rss, & $data, $opt) global() argument
/dokuwiki/inc/Ui/
H A DSubscribe.php94 $data = ($value === $val) ? ['checked' => 'checked'] : [];
95 $form->addRadioButton('sub_target', $label)->val($val)->attrs($data);
104 $data = ($value === $val) ? ['checked' => 'checked'] : [];
105 $form->addRadioButton('sub_style', $label)->val($val)->attrs($data);
H A DIndex.php56 $data = [];
57 search($data, $conf['datadir'], 'search_index', ['ns' => $ns]);
60 . html_buildlist($data, 'idx', [$this, 'formatListItem'], [$this, 'tagListItem'])
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php94 * agent data arriving on SSH data channel destined
103 * to arrive for the agent socket on the SSH data
251 * Forward data to SSH Agent and return data reply
253 * @param string $data
257 public function forwardData($data)
260 $this->socket_buffer .= $data;
261 $this->expected_bytes -= strlen($data);
263 $agent_data_bytes = current(unpack('N', $data));
322 _forward_data($data) global() argument
[all...]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php159 * @param bool $requireGroups whether or not the returned data must include groups
160 * @return array|bool containing user data or false
164 $data = $this->selectUser($user);
165 if ($data == false) return false;
167 if (isset($data['hash'])) unset($data['hash']);
168 if (isset($data['clean'])) unset($data['clean']);
171 $data['grps'] = $this->selectUserGroups($data);
[all...]

1234567