Home
last modified time | relevance | path

Searched +full:read -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 141) sorted by relevance

123456

/dokuwiki/lib/plugins/config/core/
H A DLoader.php39 * Read the settings meta data
77 * Read the default values
156 * Read the local settings
167 * Read the protected settings
178 * Read the config values from the given files
193 * Read settings file from an extension
195 * This is used to read the settings.php files of plugins and templates
197 * @param string $file php file to read
212 // read data
224 * Read
[all...]
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php93 * Chunk size zero let read whole file at once
95 * @param int $chunk_size maximum block size read from file
106 * If file larger than $chunk_size, only chunk is read that could contain $rev.
131 // read whole file
137 // read by chunk
176 * Read chunk and return array with lines of given chunk.
182 * @return array lines read from chunk
229 * - $lines: changelog lines of read chunk
238 //read forward
243 //read backwar
[all...]
H A DChangeLog.php25 * @param int $chunk_size maximum block size read from file
130 * containing the requested changelog line is read.
165 //read lines from changelog
189 * A negative $first let read the current revision too.
192 * calls to getRevisionInfo. Large changelog files are read
228 // read whole file
234 // read chunks backwards
255 // read chunk
277 } else { // already read all the lines
310 * reference revision $rev is read an
[all...]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchiveIOException.php6 * Read/Write Errors
H A DTar.php78 * Read the contents of a TAR archive
101 * Read the contents of a TAR archive and return each entry using yield
112 throw new ArchiveIOException('Can not read from a closed archive');
115 while ($read = $this->readbytes(512)) {
116 $header = $this->parseHeader($read);
158 throw new ArchiveIOException('Can not read from a closed archive');
169 // read the file header
287 $read = 0;
294 $read += strlen($data);
306 if ($read !
[all...]
H A DArchive.php34 * Read the contents of an archive
102 * read access no reading is allowed anymore
/dokuwiki/conf/
H A Dacronyms.conf52 RTFM Read The Fine Manual
55 TL;DR Too long; didn't read
H A Dacl.auth.php.dist15 # read 1
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dracket.php147 'current-prompt-read', 'current-pseudo-random-generator',
148 'current-read-interaction', 'current-reader-guard',
188 'exn:fail:read-srclocs', 'exn:fail:read:eof?',
189 'exn:fail:read:non-char?', 'exn:fail:read?',
263 'make-exn:fail:read', 'make-exn:fail:read:eof',
264 'make-exn:fail:read:non-char', 'make-exn:fail:syntax',
327 'port-provides-progress-evts?', 'port-read
[all...]
H A Dalgol68.php195 22 => array('put possible', 'putpossible', 'get possible', 'getpossible', 'bin possible', 'binpossible', 'set possible', 'setpossible', 'reset possible', 'resetpossible', 'reidf possible', 'reidfpossible', 'draw possible', 'drawpossible', 'compressible', 'on logical file end', 'onlogicalfileend', 'on physical file end', 'onphysicalfileend', 'on line end', 'onlineend', 'on page end', 'onpageend', 'on format end', 'onformatend', 'on value error', 'onvalueerror', 'on open error', 'onopenerror', 'on transput error', 'ontransputerror', 'on format error', 'onformaterror', 'open', 'establish', 'create', 'associate', 'close', 'lock', 'scratch', 'space', 'new line', 'newline', 'print', 'write f', 'writef', 'print f', 'printf', 'write bin', 'writebin', 'print bin', 'printbin', 'read f', 'readf', 'read bin', 'readbin', 'put f', 'putf', 'get f', 'getf', 'make term', 'maketerm', 'make device', 'makedevice', 'idf', 'term', 'read int', 'readint', 'read long int', 'readlongint', 'read long long int', 'readlonglongint', 'read real', 'readreal', 'read long real', 'readlongreal', 'read long long real', 'readlonglongreal', 'read complex', 'readcomplex', 'read lon
[all...]
H A Dnewlisp.php86 'quote?','rand','random','randomize','read-buffer','read-char',
87 'read-expr','read-file','read-key','read-line','read-utf8',
H A Dcadlisp.php72 'quit','quote','read','read-char','read-line','redraw','regapp','rem','repeat',
96 'vlax-property-available-p','vlax-put-property','vlax-read-enabled-p',
117 'vl-registry-descendents','vl-registry-read','vl-registry-write',
H A Drsplus.php162 'rawShift', 'rawToBits', 'rawToChar', 'rbind', 'rbind.data.frame', 'rcond', 'Re', 'read.dcf', 'read.table.url',
350 'qunif', 'qweibull', 'qwilcox', 'r2dtable', 'rbeta', 'rbinom', 'rcauchy', 'rchisq', 'read.ftable',
380 'promptPackage', 'rc.getOption', 'rc.options', 'rc.settings', 'rc.status', 'read.csv', 'read.csv2', 'read.delim',
381 'read.delim2', 'read.DIF', 'read.fortran', 'read
[all...]
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js50 function read(s, converter) { function
76 // Read
92 result = read(cookie, value);
97 if (!key && (cookie = read(cookie)) !== undefined) {
/dokuwiki/inc/HTTP/
H A DHTTPClient.php25 public $timeout = 15; // read timeout (seconds)
37 // don't set these, read on error
41 // read these after a successful request
310 // read headers from socket
391 //read body (with chunked encoding if needed)
406 // read chunksize until \r
424 $this->readData($socket, 2, 'chunk'); // read trailing \r\n
436 // read up to the content-length or max_bodysize
437 // for keep alive we need to read the whole message to clean up the socket for the next read
[all...]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DException.php21 const E_ARG_READ = 5; //Could not read argv
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt72 echo $output; // This will read: xn--nrgler-wxa.com
88 echo utf8_decode($output); // This will read: andre@börse.knörz.info
91 3. The input is read from a UCS-4 coded file and encoded line by line. By
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt5 Read the [[doku>manual|DokuWiki Manual]] to unleash the full power of DokuWiki.
12 ===== Read More =====
H A Dwelcome.txt14 You might also want to use a sidebar. To create it, just edit the [[:sidebar]] page. Everything in that page will be shown in a margin column on the side. Read our [[doku>faq:sidebar|FAQ on sidebars]] to learn more.
/dokuwiki/lib/styles/
H A Dfeed.css33 content: "This data file is meant to be read in a XML feed reader. See document source."
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md9 jsstrip is a open-source library to remove whitespace and comments from a javascript file. You might want to do this to optimize size and performance, or to make a file harder to read. It typically makes 30-40% savings in file size.
/dokuwiki/inc/Action/
H A DSitemap.php66 throw new FatalException('Could not read the sitemap file - bad permissions?');
/dokuwiki/inc/Ui/
H A DEditor.php53 // intro locale text (edit, rditrev, or read)
62 $intro = 'read';
156 // print intro locale text (edit, rditrev, or read.txt)
/dokuwiki/inc/
H A Dconfutils.php276 * Read a json config file into an array
300 * @param string $type the configuration settings to be read, must correspond to a key/array in $config_cascade
303 * @param callback $combine the function used to combine arrays of values read from different configuration files;
305 * $combined - the already read & merged configuration values
336 * @param string $type the configuration settings to be read, must correspond to a key/array in $config_cascade
/dokuwiki/lib/scripts/
H A Dcookie.js4 * Only a single cookie is written and read. You may only save

123456