| #
e5fc893f |
| 21-Jan-2010 |
Andreas Gohr <andi@splitbrain.org> |
initialize array in linesToHash FS#1845
|
| #
5b75cd1f |
| 05-Jan-2010 |
Adrian Lang <lang@cosmocode.de> |
New mail subscription with digest
|
| #
49eb6e38 |
| 15-Jan-2010 |
Andreas Gohr <andi@splitbrain.org> |
some more coding standard compliance updates
|
| #
88b173d7 |
| 29-Sep-2009 |
Andreas Gohr <andi@splitbrain.org> |
fixed missing bracket
Ignore-this: 2891bb5aff5f63a2f71f0364e2a7cadc
darcs-hash:20090929190137-7ad00-090aa37de15cd6ef0ab0ee8f48fffd0445f42167.gz
|
| #
27bf7924 |
| 25-Sep-2009 |
Tom N Harris <tnharris@whoopdedo.org> |
Use all available icons for file links (FS#1759)
All PNG and GIF images in the lib/images/fileicons directory will be used for media file links. The conf/mime.conf file continues to restrict which f
Use all available icons for file links (FS#1759)
All PNG and GIF images in the lib/images/fileicons directory will be used for media file links. The conf/mime.conf file continues to restrict which file types may be uploaded. File types not in the configuration list are download-only.
darcs-hash:20090925231746-6942e-299a52772f67e265a8702bda3686f495e4337a8f.gz
show more ...
|
| #
edcb01e5 |
| 28-Feb-2009 |
Gina Haeussge <osd@foosel.net> |
Split confToHash into confToHash and linesToHash
New function linesToHash (which now is used by existing function confToHash) allows for parsing of given strings into a config hash.
darcs-hash:2009
Split confToHash into confToHash and linesToHash
New function linesToHash (which now is used by existing function confToHash) allows for parsing of given strings into a config hash.
darcs-hash:20090228130423-2b4f5-e4f08c80350d83d3d93a4652aa8db1aae96e3a13.gz
show more ...
|
| #
4c6a5ecc |
| 27-Jan-2009 |
Andreas Gohr <andi@splitbrain.org> |
fixed interwiki links with uppercase letters in the shortcut FS#1577
Ignore-this: 6f2e5648f5822cae5b038c1bc50ce9ad
darcs-hash:20090127161035-7ad00-1d8a1f022ca8933d05fd7befbbe7054508d9d84e.gz
|
| #
f8121585 |
| 22-Jan-2009 |
Chris Smith <chris.eureka@jalakai.co.uk> |
further updates to config_cascade patch
- add mediameta and license config files into the cascade - update the cache validity code in cache.php, css.php & js.php to use config_cascade - redo inclusi
further updates to config_cascade patch
- add mediameta and license config files into the cascade - update the cache validity code in cache.php, css.php & js.php to use config_cascade - redo inclusion of main config files to avoid suppression of errors in config files - add getConfigFiles($type) function - minor updates elsewhere to use config_cascade rather than hardcoded config file names
darcs-hash:20090122114457-f07c6-98ad5627fd5df93edf8dd03289b9cf6d81962afe.gz
show more ...
|
| #
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
|
| #
b303b92c |
| 19-Jan-2009 |
Chris Smith <chris.eureka@jalakai.co.uk> |
Update for config cascade patch, fixes a couple of issues
darcs-hash:20090119050218-f07c6-8cb3615ee51fe81ef90b1e54675c359d84a2e57c.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 ...
|
| #
fa8adffe |
| 13-Dec-2008 |
Andreas Gohr <andi@splitbrain.org> |
removed some illogical path setups
darcs-hash:20081213090400-7ad00-4e21cd75978bb07513f32f5d750658e8d777c59e.gz
|
| #
ecebf3a8 |
| 02-Dec-2008 |
Andreas Gohr <andi@splitbrain.org> |
Make content-disposition configurable in mime.conf FS#1541
With this patch it is possible to define if a file should be served as download or be displayed inside the browser (if supported) by config
Make content-disposition configurable in mime.conf FS#1541
With this patch it is possible to define if a file should be served as download or be displayed inside the browser (if supported) by configuring it in conf/mime.conf
Mimetypes that should be served with a "Content-Disposition: attachment" header need to be prefixed with a exclamation mark. All others will be served inline.
This will also fix a Problem with Flash 10.
darcs-hash:20081202210322-7ad00-6e7ef30aff9322cd135311be77809187da121f3b.gz
show more ...
|
| #
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 ...
|
| #
36f2d7c1 |
| 12-Oct-2008 |
Gina Haeussge <osd@foosel.net> |
Make recognized URL schemes customizable via conf/scheme.conf (FS#797)
darcs-hash:20081012155022-2b4f5-177571b9b176bb822015623b62b4d35b98a93d7b.gz
|
| #
8c286148 |
| 05-May-2008 |
Michael Klier <chi@chimeric.de> |
actionOK() should honour
darcs-hash:20080505142356-23886-9d3b1f1512a94acc241a01af0d3a9f9053783f3c.gz
|
| #
03ff8795 |
| 18-Dec-2007 |
Andreas Gohr <andi@splitbrain.org> |
make hashs escapable in configfile #1282
If a hash is needed in config files (parsed by confToHash) it can be escaped as \# (backslash hash) to avoid having it treated as comment start
darcs-hash:2
make hashs escapable in configfile #1282
If a hash is needed in config files (parsed by confToHash) it can be escaped as \# (backslash hash) to avoid having it treated as comment start
darcs-hash:20071218141030-7ad00-4c0c7317f2f049537d8ed02b47c6c2a18627ee86.gz
show more ...
|
| #
00976812 |
| 30-Sep-2007 |
Andreas Gohr <andi@splitbrain.org> |
don't use realpath() anymore (FS#1261 and others)
The use of realpath() to clean up relative file names caused some trouble in certain setups relying on symlinks or having restricitve file structure
don't use realpath() anymore (FS#1261 and others)
The use of realpath() to clean up relative file names caused some trouble in certain setups relying on symlinks or having restricitve file structure setups.
This patch replaces all realpath() calls with a PHP only replacement which should solve those problems.
darcs-hash:20070930184250-7ad00-512ff04c95f57fc9eaf104f80372237a3c94286f.gz
show more ...
|
| #
409d7af7 |
| 02-Jul-2006 |
Andreas Gohr <andi@splitbrain.org> |
disableactions support
This patch adds a config option to disable certain internal action commands of DokuWiki's main dispatcher.
The options resendpasswd and openregister were removed because they
disableactions support
This patch adds a config option to disable certain internal action commands of DokuWiki's main dispatcher.
The options resendpasswd and openregister were removed because they can now set through this new option.
The config plugin needs to be adjusted.
darcs-hash:20060702121622-7ad00-1e80e77bcfb0ae561fe7abd79cfbe1bb158be720.gz
show more ...
|
| #
98c86858 |
| 17-Feb-2006 |
Andreas Gohr <andi@splitbrain.org> |
file cleanups
This patch cleans up the source code to satisfy the coding guidelines (see http://wiki.splitbrain.org/wiki:development#coding_style)
It converts files to UNIX lineendings and removes
file cleanups
This patch cleans up the source code to satisfy the coding guidelines (see http://wiki.splitbrain.org/wiki:development#coding_style)
It converts files to UNIX lineendings and removes tabs and trailing whitespace. Not all files were cleaned yet.
darcs-hash:20060217222040-7ad00-bba3d2bee3b5aa7cbb5184258abd50805cd071bf.gz
show more ...
|
| #
b9ac8716 |
| 22-Jan-2006 |
chris <chris@jalakai.co.uk> |
adds support for wordblock.local.conf
darcs-hash:20060122011249-9b6ab-fdd9188322e1dc4441562a905ac481f66b703db2.gz
|
| #
e8dfb129 |
| 13-Dec-2005 |
chris <chris@jalakai.co.uk> |
confutils fix to allow '#' when immediately preceeded by'&' (# is a comment indicator otherwise)
darcs-hash:20051213175633-9b6ab-1103b79a9d956d72e20b3df6ba4e5e6b55443c78.gz
|
| #
e7cb32dc |
| 29-Jul-2005 |
Andreas Gohr <andi@splitbrain.org> |
DOKU_CONF define for config directory #479
darcs-hash:20050729155457-7ad00-94554865259e4cbd6a1c75bb62a93f37304adbf0.gz
|
| #
4a9a52be |
| 23-Jul-2005 |
Andreas Gohr <andi@splitbrain.org> |
Local configuration files #349
Local configs can now be added to the following files to make updating simpler:
acronyms.local.conf mime.local.conf smileys.local.conf entities.local.conf interwiki.l
Local configuration files #349
Local configs can now be added to the following files to make updating simpler:
acronyms.local.conf mime.local.conf smileys.local.conf entities.local.conf interwiki.local.conf
darcs-hash:20050723204824-7ad00-18b8e238f41bce4d3ac25c89bff5b9abf33620f4.gz
show more ...
|
| #
d2ee49ce |
| 28-Jun-2005 |
Steven Danz <steven-danz@kc.rr.com> |
local_acronyms.patch
Add the option of using a local.acronyms.conf file to specify local acronyms without having to edit the default set
darcs-hash:20050628023628-3ed6d-2740b411efc124671f235ff9ebfc
local_acronyms.patch
Add the option of using a local.acronyms.conf file to specify local acronyms without having to edit the default set
darcs-hash:20050628023628-3ed6d-2740b411efc124671f235ff9ebfc292c7d331709.gz
show more ...
|