Home
last modified time | relevance | path

Searched refs:clean (Results 1 – 7 of 7) sorted by path

/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt3 [[doku>wiki:dokuwiki|{{wiki:dokuwiki-128.png }}]] DokuWiki is a simple to use and highly versatile Open Source [[wp>wiki]] software that doesn't require a database. It is loved by users for its clean and readable [[wiki:syntax]]. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in [[doku>acl|access controls]] and [[doku>auth|authentication connectors]] make DokuWiki especially useful in the enterprise context and the large number of [[doku>plugins]] contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.
/dokuwiki/inc/Cache/
H A DCache.php156 * @param bool $clean true to clean line endings, false to leave line endings alone
159 public function retrieveCache($clean = true) argument
161 return io_readFile($this->cache, $clean);
H A DCacheInstructions.php22 * @param bool $clean true to clean line endings, false to leave line endings alone
25 public function retrieveCache($clean = true)
26 retrieveCache($clean = true) global() argument
/dokuwiki/inc/
H A DMailer.class.php149 * @param bool $clean remove all non-ASCII chars and line feeds?
151 public function setHeader($header, $value, $clean = true)
154 if ($clean) {
343 * Return a clean name which can be safely used in mail address
347 * @param string $name the name to clean-up
566 // clean up addresses
740 // clean up before using the headers
143 setHeader($header, $value, $clean = true) global() argument
H A Dio.php107 * be sure to set $clean to false!
111 * @param bool $clean
116 function io_readFile($file, $clean = true)
134 if ($ret !== false && $clean) {
106 io_readFile($file, $clean = true) global() argument
H A Dpageutils.php32 * @param bool $clean if true, ID is cleaned
35 function getID($param = 'id', $clean = true)
70 //clean script and request (fixes a windows problem)
106 if ($clean) $id = cleanID($id);
120 * @param string $raw_id The pageid to clean
159 //clean up
281 * @param bool $clean flag indicating that $id should be cleaned (see wikiFN as well) argument
285 function page_exists($id, $rev = '', $clean = true, $date_at = false)
295 return file_exists(wikiFN($id, $rev, $clean));
303 * @param bool $clean fla argument
31 getID($param = 'id', $clean = true) global() argument
328 wikiFN($raw_id, $rev = '', $clean = true) global() argument
450 mediaFN($id, $rev = '', $clean = true) global() argument
504 resolve_id($ns, $id, $clean = true) global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php898 * Retrieve & clean user data from the form
900 * @param bool $clean whether the cleanUser method of the authentication backend is applied
903 protected function retrieveUser($clean = true)
910 $user[0] = ($clean) ? $auth->cleanUser($INPUT->str('userid')) : $INPUT->str('userid');
918 if ($clean) {
1084 $error = ''; // clean out any errors from the previous line
1096 $clean = $this->cleanImportUser($raw, $error);
1097 if ($clean && $this->importUser($clean, $error)) {
1098 $sent = $this->notifyUser($clean[
911 retrieveUser($clean = true) global() argument
[all...]