| 045b6b7a | 23-Feb-2008 |
Chris Smith <chris@jalakai.co.uk> |
Test cases for 'phpok' & 'htmlok' config settings
darcs-hash:20080223062428-d26fc-59a5f3a4c230c953db1488a829c814f2901180e4.gz |
| cbaf4259 | 23-Feb-2008 |
Chris Smith <chris@jalakai.co.uk> |
Fix for FS#1334, see also FS#1090
FS#1090 ensured DW would never rebuild instructions in the same run by forcing subsequent instruction requests to use the version cached on the first request. That
Fix for FS#1334, see also FS#1090
FS#1090 ensured DW would never rebuild instructions in the same run by forcing subsequent instruction requests to use the version cached on the first request. That introduced problems when the caching of the instructions failed (FS#1334). This patch allows subsequent rebuilds when cache storage failed.
darcs-hash:20080223025539-d26fc-26202a049a6969816553d950a2bb8f71a02ae76e.gz
show more ...
|
| 85d03f68 | 26-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
fix usage of is_admin in auth_aclcheck
There were a few problems with name encoding for groups and users introduced in the recent aclcheck change
darcs-hash:20080226172257-7ad00-d591f0d2f2219a2b23f
fix usage of is_admin in auth_aclcheck
There were a few problems with name encoding for groups and users introduced in the recent aclcheck change
darcs-hash:20080226172257-7ad00-d591f0d2f2219a2b23f93060c65b8fb5f46bd1d7.gz
show more ...
|
| 09742313 | 26-Feb-2008 |
Tom N Harris <tnharris@whoopdedo.org> |
Don't depend on plugin for Zip/TarLib
darcs-hash:20080226005222-6942e-20808aa2678aec95a22c93fce81c1f822975493d.gz |
| 33a148e0 | 26-Feb-2008 |
Tom N Harris <tnharris@whoopdedo.org> |
INDEXER_TASKS_RUN event for index-time hooks
The event INDEXER_TASKS_RUN is fired by lib/exe/indexer.php when a page is viewed. Plugins should only hook BEFORE the event if it is important for the t
INDEXER_TASKS_RUN event for index-time hooks
The event INDEXER_TASKS_RUN is fired by lib/exe/indexer.php when a page is viewed. Plugins should only hook BEFORE the event if it is important for the task to be run as often as possible. Otherwise, hook AFTER the even to be run only when other tasks have completed.
Plugin authors must call stopPropagation() and preventDefault() if any work is done. If your plugin does nothing, then you must allow the event to continue. Not following these rules may cause DokuWiki to exceed the PHP execution time limit.
darcs-hash:20080226011940-6942e-09291b73bab84a2c4445b1d1c4de8b3bba743243.gz
show more ...
|
| a05e297a | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
use fulltext index to search for used media files FS#1336 FS#1275
This changes how DokuWiki looks for reference toa media file which is about to deleted. Instead of doing a full grep through all pag
use fulltext index to search for used media files FS#1336 FS#1275
This changes how DokuWiki looks for reference toa media file which is about to deleted. Instead of doing a full grep through all pages it now uses the fulltext index first, then does an exact match on the found pages.
This speeds up the search significantly on larger wikis. However the fulltext search limits now apply: images with names shorter than 3 charcters may not be found.
This needs extensive testing!
darcs-hash:20080223205254-7ad00-486de0a4125d51b4e7999827f710d1d9de8bc60d.gz
show more ...
|
| b5742ced | 23-Feb-2008 |
Pierre Spring <pierre.spring@liip.ch> |
Table Row And Col Classes
This patch adds classes to the table rows and cells (td and th). This can be of usage when templating and within syntax plugins.
darcs-hash:20080223175808-c3d3e-7338488459
Table Row And Col Classes
This patch adds classes to the table rows and cells (td and th). This can be of usage when templating and within syntax plugins.
darcs-hash:20080223175808-c3d3e-73384884597c56deac774a8a52cd20b639b3039b.gz
show more ...
|
| ace46cb1 | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
cope with non-RFC-conform webservers in HTTPClient FS#1340
This fixes problems in the HTTP client for web servers which separate their response headers with Unix linfeeds only (instead of CRLFs as s
cope with non-RFC-conform webservers in HTTPClient FS#1340
This fixes problems in the HTTP client for web servers which separate their response headers with Unix linfeeds only (instead of CRLFs as stated in RFC 2616).
darcs-hash:20080223183639-7ad00-057b05a1134cbe2b8edb2d38d5a74912360cd071.gz
show more ...
|
| 73038c47 | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
Check memory settings on ?do
This should help with diagnosing memory related problems
darcs-hash:20080223180701-7ad00-1308829c3d7432b1d0c23c3f1acc8228c0a41e1e.gz |
| 7b3f8b16 | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
correct diff display when dealing with deleted or newly created pages
darcs-hash:20080223143711-7ad00-2dceefca4ce2efcfee5a3b04cfc6f1107c630c02.gz |
| bce3726d | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
wl(): don't include empty id parameter FS#1138
darcs-hash:20080223133200-7ad00-409ee76b0bb36a1dff7b6f09181692e0742a86fd.gz |
| 9e54d51a | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
mysql auth backend: check DB query result correctly FS#1039
darcs-hash:20080223130827-7ad00-3c9ba32b002a34548df1696a26bd92616e763ccc.gz |
| 1ed56560 | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
alway initialize an empty toolbar first FS#1337
darcs-hash:20080223125855-7ad00-c8e1a3d81bc1cd71d7bdb4b70ffe588aa11fec04.gz |
| e656dcd4 | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
use strftime() instead of date() FS#1335 :!:
This patch replaces the use of the date() function with the strftime() function. The latter will respect a set locale and will use localized strings for
use strftime() instead of date() FS#1335 :!:
This patch replaces the use of the date() function with the strftime() function. The latter will respect a set locale and will use localized strings for things like month names.
Because the format options for strftime differ from the ones used in date, DokuWiki will rest the value of $conf['dformat'] if it contains an old date format string (detected by missing % characters).
Plugins or templates using the $conf['dformat'] need to be updated.
darcs-hash:20080223124045-7ad00-6afb2b839afc58781463e25577e06adb675fff79.gz
show more ...
|
| 8acb3108 | 23-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
renamed justlink option to linkonly
darcs-hash:20080223101426-7ad00-ceacdc83e829f1da7aa272eb597277a8c78113be.gz |
| b739ff0f | 21-Feb-2008 |
Pierre Spring <pierre.spring@liip.ch> |
media_justlink
darcs-hash:20080221160833-c3d3e-1afe0835f9ba1af27712bd34e8b0b65e6165284f.gz |
| 0deaa5d8 | 20-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
popularity plugin: record PCRE infos
darcs-hash:20080220213222-7ad00-b573be21ba534bbd1a2d0616112d0d622338eaf8.gz |
| ae763810 | 20-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
updated year in copyright notice
darcs-hash:20080220201711-7ad00-d3bff6b0b5f1913d25bef562eda0eb8733eb5fbc.gz |
| 6a78ea3b | 19-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
add gidnumber to LDAP auth userdata FS#1338
darcs-hash:20080219165659-7ad00-e957772a651073b3e3af19c5300a6c6880c4876c.gz |
| 5faeb1e6 | 19-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
popularity plugin added
This new default plugin allows to send feedback to the DokuWiki developers. An introduction is available at http://www.splitbrain.org/blog/2008-02/17-gathering_dokuwiki_usage
popularity plugin added
This new default plugin allows to send feedback to the DokuWiki developers. An introduction is available at http://www.splitbrain.org/blog/2008-02/17-gathering_dokuwiki_usage_data
darcs-hash:20080219165223-7ad00-95a242a0c58cdb754be83c90e919a91aa0da3699.gz
show more ...
|
| 6faaead8 | 17-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
Finnish language update
darcs-hash:20080217172914-7ad00-400fed6d7ca8844ef214081724cd5c280344f0e5.gz |
| 0117e0e5 | 15-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
fix for plugin manager breaking multibyte chars
darcs-hash:20080215214857-7ad00-066c28dc5cdb3551673a63cb9536507f5e4bd8c1.gz |
| 1db218e9 | 15-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
do case insensitive search word highlighting in page FS#1297
darcs-hash:20080215180239-7ad00-2b9e1d5cff75f581a549bc3881a18cfffc53efb5.gz |
| f93b3b50 | 15-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
fix highlighting of search engine referer keywords for recent highlight change
darcs-hash:20080215175816-7ad00-f12f54210dceacf4b3580e78b2f86a21a23b4315.gz |
| 60c15d7d | 15-Feb-2008 |
Andreas Gohr <andi@splitbrain.org> |
better highlighting for phrase searches FS#1193
This patch makes the highlighting of phrases in search snippets and on the pages itself much better.
Now a regexp gets passed to the ?s
darcs-hash:2
better highlighting for phrase searches FS#1193
This patch makes the highlighting of phrases in search snippets and on the pages itself much better.
Now a regexp gets passed to the ?s
darcs-hash:20080215174653-7ad00-cd2d6f7d408db7b7dd3cb9974c3eb27f3a9baeac.gz
show more ...
|