History log of /dokuwiki/lib/plugins/config/settings/config.metadata.php (Results 76 – 100 of 138)
Revision Date Author Comments
# 7aeda574 26-Jun-2010 Andreas Gohr <andi@splitbrain.org>

added proxy exception regexp FS#1247


# f03fd957 04-Apr-2010 Andreas Gohr <andi@splitbrain.org>

new fnencode option FS#1649

This patch adds an option to choose how filenames are encoded
when saved to the file system. You can choose between urlencoding
(url), the new SafeFn method (safe) and st

new fnencode option FS#1649

This patch adds an option to choose how filenames are encoded
when saved to the file system. You can choose between urlencoding
(url), the new SafeFn method (safe) and storing real UTF-8 (utf-8).

show more ...


# 22952965 23-Mar-2010 YoBoY <yoboy.leguesh@gmail.com>

Limiting use of readdir in the idx_indexLengths function (v2).

Each searches on the wiki use this function. Scanning the index directory eachtime is time consuming with a constant series of disk acc

Limiting use of readdir in the idx_indexLengths function (v2).

Each searches on the wiki use this function. Scanning the index directory eachtime is time consuming with a constant series of disk access.
Switching a normal search to use file_exists 1 or more times, and not readdir all the directory.
Switching a wildcard search to use a lengths.idx file containing all the word lengths used in the wiki, file generated if a new configuration parameter $conf[readdircache] is not 0 and fixed to a time in second. Creation of a new function idx_listIndexLengths to do this part.

show more ...


# f3718805 27-Jan-2010 Adrian Lang <lang@cosmocode.de>

Update translations for subscription


# eee44352 12-Jan-2010 Adrian Lang <lang@cosmocode.de>

Add subscribe time to admin interface.


# 1f4a7341 08-Nov-2009 Gina Haeussge <osd@foosel.net>

Allow multiple mail addresses in $conf['notify']

Ignore-this: cb12d98437bc7bd4e3fb641a39b277c5

According to the documentation, $conf['notify'] may be a comma-separated list
of email addresses. Howe

Allow multiple mail addresses in $conf['notify']

Ignore-this: cb12d98437bc7bd4e3fb641a39b277c5

According to the documentation, $conf['notify'] may be a comma-separated list
of email addresses. However, the config admin did not allow this yet.

darcs-hash:20091108115237-2b4f5-67e43dc767bd3aa18222cbb8272efaaf0ba0f4d3.gz

show more ...


# 43ee7484 15-Oct-2009 Andreas Gohr <andi@splitbrain.org>

Support for kmd5 passcrypt method

Ignore-this: c809bd207504f78e84685612b0a668a7

This is a MD5 based hashing method used in the Unclassified NewsBoard forum
software (which is used for DokuWiki's su

Support for kmd5 passcrypt method

Ignore-this: c809bd207504f78e84685612b0a668a7

This is a MD5 based hashing method used in the Unclassified NewsBoard forum
software (which is used for DokuWiki's supprt forum)

darcs-hash:20091015184330-7ad00-38680848952bdb46052dcf3597fa5e91f892ca51.gz

show more ...


# 59869a4b 25-May-2009 Anika Henke <anika@selfthinker.org>

removed purple numbers

darcs-hash:20090525194435-f7d6d-2def694a053f7e661f88f1636903283bad7c1fa8.gz


# 3ee5b583 16-May-2009 Andreas Gohr <andi@splitbrain.org>

restrict XMLRPC to configurable groups and users

Ignore-this: 1370cee84d44bb35ae7c0c988ed8f1ff

This patch adds a config option to define users or groups that may access
the XMLRPC API. ACLs are sti

restrict XMLRPC to configurable groups and users

Ignore-this: 1370cee84d44bb35ae7c0c988ed8f1ff

This patch adds a config option to define users or groups that may access
the XMLRPC API. ACLs are still checked on top of this intial access control.

darcs-hash:20090516114351-7ad00-155fb6c74c29f5f84e79544a534369eec0403ff0.gz

show more ...


# 91459163 04-May-2009 Anika Henke <anika@selfthinker.org>

Purple Numbers (granular hierarchical IDs) - set $conf['purplenumbers'] and adjust your CSS

darcs-hash:20090504222544-f7d6d-fd9e4c771c5aef32dc2927a1da4dfa4fc4f8b4f1.gz


# 3994772a 19-Jan-2009 Chris Smith <chris.eureka@jalakai.co.uk>

FS#1517, obscure passwords in config files

This patch extends the config 'password' class to support a "_code" parameter

darcs-hash:20090119164809-f07c6-c136b559772610539bccb9e9c0191f6a973216ad.gz


# cb043f52 18-Jan-2009 Chris Smith <chris.eureka@jalakai.co.uk>

Rework configuration loading to use a predefined file list or cascade

This change add the global $config_cascade which holds the list of files to be
read for each configuration setting group. Dokuw

Rework configuration loading to use a predefined file list or cascade

This change add the global $config_cascade which holds the list of files to be
read for each configuration setting group. Dokuwiki adds in its configuration
file values after preload.php, giving preload.php to set its own configuration
cascade.

One side effect of the change is "local.protected.php" is part of the default
cascade, removing the need for it to be included at the bottom of local.php.

darcs-hash:20090118181204-f07c6-fea1c406da1bbdb0a52ab40914f11b835e797728.gz

show more ...


# c69534d4 16-Jan-2009 Anika Henke <anika@selfthinker.org>

adjusted config manager for new config option 'tocminheads'

darcs-hash:20090116235051-f7d6d-8898c5f3433c701191bfd8652bdccb6d46a8ce6b.gz


# fe9ec250 19-Nov-2008 Chris Smith <chris.eureka@jalakai.co.uk>

FS#630: allow $conf['useheading'] to individually apply to content links and/or navigation links

$conf['useheading'] values are now:
- 0 : off, use page name in link text
- 'content' :

FS#630: allow $conf['useheading'] to individually apply to content links and/or navigation links

$conf['useheading'] values are now:
- 0 : off, use page name in link text
- 'content' : use first heading text for links in wiki page content
- 'navigation' : use first heading text for links in non-page content, e.g. breadcrumps, backlinks, search results, etc.
- 1 : use first heading text in all links
(for backwards compatibility, any other values are mapped to 0 or 1 by empty() function.)

$conf['useheading'] value should now be checked using the useHeading($linktype) function,
where linktype can be "content" or "navigation"

darcs-hash:20081119140758-f07c6-6e26456d50dcecc949fada31b0d4e72877fde1cc.gz

show more ...


# 5430c4be 14-Oct-2008 Andreas Gohr <andi@splitbrain.org>

small change for rememberme option

darcs-hash:20081014185611-7ad00-e575d3315c6f135059635dbf8a77be3f7020d6a0.gz


# 17f89d7e 12-Oct-2008 Michael Klier <chi@chimeric.de>

FS#564 FS#1270 new option to disable the rememberme checkbox

darcs-hash:20081012144253-23886-c904f82c559c3ad5477bf921e93cb439a212134d.gz


# 066fee30 12-Oct-2008 Andreas Gohr <andi@splitbrain.org>

Make license selectable from config FS#312

darcs-hash:20081012113150-7ad00-6408da058bdb6c923159d445e03b76f54b579362.gz


# 85313d6f 11-Oct-2008 Gina Haeussge <osd@foosel.net>

Do not allow values for $conf[start] which contain namespaces

darcs-hash:20081011121450-2b4f5-1e3139cc20cea62247be931ebc2749b8fb02c002.gz


# dc58b6f4 01-Oct-2008 Andy Webber <dokuwiki@andywebber.com>

editor_info_patch

At present, DW shows the username on the bottom left under "logged in as", and the login name for "last modified", "locked by" and under
revisions/recent changes. In a corporate en

editor_info_patch

At present, DW shows the username on the bottom left under "logged in as", and the login name for "last modified", "locked by" and under
revisions/recent changes. In a corporate environment, particularly when integrated with a Single Sign-On system, the login name may be somewhat
unfriendly. This patch makes the "logged in as" the same as the value used elsewhere and also allows an admin to decide whether it should be the
login name, username or e-mail address that is displayed. The e-mail address may also, optionally, be a mailto: link. E-mail addresses are
obfuscated according to the 'mailguard' setting. The default behaviour is to show the login name which is no change from previous behaviour for the
"last modified"/"locked by"/revisions/"recent changes", but is a change for the "logged in as".

darcs-hash:20081001152914-6ad63-9cd7174068ac55de381f1318a4401f8c51de5b0c.gz

show more ...


# f5c6743c 12-Sep-2008 Andreas Gohr <andi@splitbrain.org>

more cookie security FS#1490

This patch adds the httponly option to the PHP session cookies and DokuWiki's
auth cookie when supported by the PHP version.

It also adds a new config option 'securecoo

more cookie security FS#1490

This patch adds the httponly option to the PHP session cookies and DokuWiki's
auth cookie when supported by the PHP version.

It also adds a new config option 'securecookie' which is enabled by default.
It makes sure the browser will not sent a cookie set via HTTPS over a
non-secured connection. This option has to be disabled for wikis that only
protect the login with SSL but not the whole wiki.

darcs-hash:20080912224922-7ad00-d5275147ba9d17a9f6defa8a51ca720da74ba8a0.gz

show more ...


# a3beeb63 10-Aug-2008 Andreas Gohr <andi@splitbrain.org>

added apr1 to the config manager choices of the passcrypt option

darcs-hash:20080810192632-7ad00-96cb5ce703bf5b823f01ca696791bec8e46bea5e.gz


# 9291cf33 04-May-2008 Andreas Gohr <andi@splitbrain.org>

Allow variables for mailfrom option in config manager

darcs-hash:20080504090526-7ad00-e91dd9ba8131faa7818fc8bd5e67331488fa86a6.gz


# f7589b08 01-Apr-2008 Chris Smith <chris.eureka@jalakai.co.uk>

Update character class for template names to include dash

darcs-hash:20080401194032-f07c6-0ba243a05e6767a381dbacd67fbdc9d2437deeb5.gz


# deec6eb9 15-Mar-2008 pierre.pracht <pierre.pracht@gmail.com>

Propritary Nginx X-Accel-Redirect header

Example nginx configuration :
location /var/www/dokuwiki0/ {
internal;
alias /var/www/dokuwiki/dokuwiki0/;
}

darcs-hash:20080315155631-b0461-68c08d68660

Propritary Nginx X-Accel-Redirect header

Example nginx configuration :
location /var/www/dokuwiki0/ {
internal;
alias /var/www/dokuwiki/dokuwiki0/;
}

darcs-hash:20080315155631-b0461-68c08d68660e554c62a748c1954699791decd000.gz

show more ...


# 0ceb549d 13-Mar-2008 Chris Smith <chris.eureka@jalakai.co.uk>

Add metadata, settings class and language strings for $conf['renderer_xhtml']

darcs-hash:20080313204505-f07c6-ad0d4b9f155117f6be01925a8bfece1e35efa39f.gz


123456