Home
last modified time | relevance | path

Searched refs:data (Results 101 – 125 of 161) sorted by last modified time

1234567

/dokuwiki/lib/scripts/
H A Dmedia.js446 function (data) { argument
453 $content.html(data);
571 function (data) { argument
572 $content.html(data);
H A Dqsearch.js96 * @param data The result HTML
98 onCompletion: function (data) { argument
104 if (data === '') {
110 .html(data)
H A Dtree.js39 dw_tree = e.data;
59 show_sublist = function (data) { argument
61 if (typeof data !== 'undefined') {
62 $sublist.html(data);
86 dw_tree.load_data(function (data) { argument
88 show_sublist(data);
H A Dbehaviour.js211 * Check that access to the data directory is properly secured
237 img.src = $checkDiv.data('src') + '?t=' + Date.now();
/dokuwiki/lib/plugins/styling/
H A Daction.php44 $len = count($event->data['link']);
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();
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_admin.less65 /* data directory security check */
H A D_media_fullscreen.css413 /* file meta data edit form */
/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/Input/
H A DInput.php44 * @param string $data
47 protected function applyfilter($data)
49 if (!$this->filter) return $data;
50 return call_user_func($this->filter, $data);
137 * This avoids copying data in memory, when the parameter is not set it will be created
48 applyfilter($data) global() argument
/dokuwiki/inc/
H A DJpegMeta.php900 $data = null;
913 $data =& $this->_info['exif']['JFIFThumbnail'];
918 if (($which == 'adobe') || ($data == null)){
929 $data =& $this->_info['adobe']['ThumbnailData'];
934 if ($data != null) {
936 echo $data;
1033 return false; // ERROR: Extraneous data
1041 return false; // ERROR: Extraneous data
1050 case 0xE0: // APP0: JFIF data
1051 case 0xE1: // APP1: EXIF or XMP data
1270 _writeJPEGMarker($marker, $length, & $data, $origLength) global() argument
1742 _readIFD($data, $base, $offset, $isBigEndian, $mode) global() argument
2008 _writeIFD(& $data, $pos, $offsetBase, & $entries, $isBigEndian, $hasNext) global() argument
2514 _readIPTC(& $data, $pos = 0) global() argument
2604 _write8BIM(& $data, $pos, $type, $header, & $value) global() argument
2672 _writeIPTCEntry(& $data, $pos, $type, & $value) global() argument
3039 _getByte(& $data, $pos) global() argument
3057 _putByte(& $data, $pos, $val) global() argument
3066 _getShort(& $data, $pos, $bigEndian = true) global() argument
3081 _putShort(& $data, $pos = 0, $val = 0, $bigEndian = true) global() argument
3105 _getLong(& $data, $pos, $bigEndian = true) global() argument
3134 _putLong(& $data, $pos, $val, $bigEndian = true) global() argument
3153 _getNullString(& $data, $pos) global() argument
3173 _getFixedString(& $data, $pos, $length = 1) global() argument
3189 _putString(& $data, $pos, & $str) global() argument
3199 _hexDump(& $data, $start = 0, $length = 1) global() argument
[all...]
H A DLogger.php118 * @triggers LOGGER_DATA_FORMAT can be used to change the logged data or intercept it
127 $data = [
139 $event = new Event('LOGGER_DATA_FORMAT', $data);
141 $data['loglines'] = $this->formatLogLines($data);
147 $data['loglines'] = $this->formatLogLines($data);
150 // only log when any data available
151 if (count($data['loglines'])) {
152 return $this->writeLogLines($data['logline
165 formatLogLines($data) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php633 foreach ($this->extensionValues as $id => $data) {
634 extract($data);
1130 $data = '';
1161 $data .= $temp;
1170 return $data;
1749 $v = array_pop($v); // Always strip data type.
1935 $value = array_pop($value); // Always strip data type.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php
H A DSFTP.php57 * Reads data from a local file.
63 * Reads data from a string.
70 * Reads data from callback:
2060 * By default, \phpseclib3\Net\SFTP::put() does not read from the local filesystem. $data is dumped directly into $remote_file.
2061 * So, for example, if you set $data to 'filename.ext' and then do \phpseclib3\Net\SFTP::get(), you will get a file, twelve bytes
2068 * Setting $mode to self::SOURCE_CALLBACK will use $data as callback function, which gets only one parameter -- number
2069 * of bytes to return, and returns a string if there is some data or null if there is no more data
2071 * If $data is a resource then it'll be used as a resource instead.
2096 * @param string|resource $data
2291 put($remote_file, $data, $mode = self SOURCE_STRING, $start = 1, $local_start = 1, $progressCallback = null) global() argument
3595 _send_sftp_packet($type, $data, $request_id = 1) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php322 * @param string $data
325 private function _stream_write($data)
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
339 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($data), strlen($data));
345 $this->pos += strlen($data);
350 return strlen($data);
344 _stream_write($data) global() argument
/dokuwiki/inc/lang/id/
H A Ddraft.txt3 Proses pengeditan Anda sebelumnya tidak selesai dengan sempurna. DokuWiki secara otomatis meyimpan draft yang dapat Anda pakai untuk melanjutkan pengeditan. Dibawah ini Anda dapat melihat data yang disimpan pada sesi sebelumnya.
H A Deditrev.txt1 **Anda telah membuka dokumen versi lama!** Jika menyimpannya, berarti Anda akan membuat versi baru dari data ini.
H A Dlogin.txt3 Anda belum login! Masukkan data autentifikasi dibawah ini untuk masuk log (login). Cookies harus diaktifkan agar bisa login.
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBase.php79 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
84 * Save data to the cache
86 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
89 public function save($data); argument
92 * Retrieve the data saved to the cache
94 * @return array Data for SimplePie::$data
H A DMySQL.php49 * Caches data to a MySQL database
89 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
130 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'cache_data` (`id` TEXT CHARACTER SET utf8 NOT NULL, `items` SMALLINT NOT NULL DEFAULT 0, `data` BLOB NOT NULL, `mtime` INT UNSIGNED NOT NULL, UNIQUE (`id`(125)))');
139 $query = $this->mysql->exec('CREATE TABLE `' . $this->options['extras']['prefix'] . 'items` (`feed_id` TEXT CHARACTER SET utf8 NOT NULL, `id` TEXT CHARACTER SET utf8 NOT NULL, `data` MEDIUMBLOB NOT NULL, `posted` INT UNSIGNED NOT NULL, INDEX `feed_id` (`feed_id`(125)))');
149 * Save data to the cache
151 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
154 public function save($data) argument
170 if ($data instanceo
[all...]
H A DRedis.php51 * Caches data to redis
57 * prefixed with `simple_primary-` and data will expire after 3600 seconds
92 * @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data
129 * Save data to the cache
131 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
134 public function save($data) argument
136 if ($data instanceof \SimplePie\SimplePie) {
137 $data
[all...]
/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/vendor/simplepie/simplepie/
H A DCHANGELOG.md223 * Stop passing compressed data through `trim()`. [#455](https://github.com/simplepie/simplepie/pull/455)
248 * Serialized data is now used for hashing in `SimplePie_Item->get_id()`. [#348](https://github.com/simplepie/simplepie/pull/348)
278 * Fixed the datatype for `items.data` to be more appropriate in when using MySQL cache. [#302](https://github.com/simplepie/simplepie/pull/302)
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE124 A "library" means a collection of software functions and/or data
126 (which use some of those functions and data) to form executables.
176 table of data to be supplied by an application program that uses
259 If such an object file uses only numerical parameters, data
319 Library" must include any data and utility programs needed for
H A DReadMe.txt48 npdata.ser - Serialized data for NamePrep

1234567