| 740da4c2 | 12-Dec-2012 |
lupo49 <dokuwiki@lupo49.de> |
de/de-informal: language updates / added "sidebar" |
| 3a0852d9 | 07-Dec-2012 |
Andreas Gohr <andi@splitbrain.org> |
added option to enable automatic popularity data in installer |
| b34cf753 | 07-Dec-2012 |
Andreas Gohr <andi@splitbrain.org> |
some reformatting |
| e13e01da | 07-Dec-2012 |
Andreas Gohr <andi@splitbrain.org> |
added compatibility function |
| 1421e548 | 04-Dec-2012 |
Michael Hamann <michael@content-space.de> |
Indexer: Make $Indexer in idx_get_indexer() global instead of static
This avoids problems with test cases that use the indexer and the PID cache - the index is cleaned between test cases but the PID
Indexer: Make $Indexer in idx_get_indexer() global instead of static
This avoids problems with test cases that use the indexer and the PID cache - the index is cleaned between test cases but the PID cache wasn't cleaned. Now PHPUnit can unset the global $Indexer between test cases.
show more ...
|
| 3d2ce006 | 04-Dec-2012 |
Michael Hamann <michael@content-space.de> |
Indexer: Add cache for getPID()
This avoids re-reading of the page index file for every getPID()-call by using a simple FIFO cache, limited to 10 items. In idx_addPage() and the functions that it ca
Indexer: Add cache for getPID()
This avoids re-reading of the page index file for every getPID()-call by using a simple FIFO cache, limited to 10 items. In idx_addPage() and the functions that it calls getPID() is called 3 times for the same PID.
show more ...
|
| 03aafe1c | 02-Dec-2012 |
Michael Hamann <michael@content-space.de> |
Indexer: add getPID/getPageFromPID functions and PID to INDEXER_PAGE_ADD
This allows plugins to get the PID for a page and also to get the page for a certain PID. That way plugins can build their ow
Indexer: add getPID/getPageFromPID functions and PID to INDEXER_PAGE_ADD
This allows plugins to get the PID for a page and also to get the page for a certain PID. That way plugins can build their own index that uses numeric ids.
show more ...
|
| 48a1417e | 02-Dec-2012 |
Michael Hamann <michael@content-space.de> |
Correct parameter documentation of DokuWiki_Plugin::loadHelper() |
| b04a190d | 02-Dec-2012 |
Michael Hamann <michael@content-space.de> |
XHTML renderer: bind section id counter to the renderer instance
This changes the previously static lastsecid into an instance variable, this leads to consistent section edit ids when the xhtml rend
XHTML renderer: bind section id counter to the renderer instance
This changes the previously static lastsecid into an instance variable, this leads to consistent section edit ids when the xhtml renderer is used more than once in a request. This makes it possible for test cases to know the exact section edit id for an instruction array.
show more ...
|
| 8740865b | 02-Dec-2012 |
Hakan Sandell <sandell.hakan@gmail.com> |
Fixed missing %s in Swedish translation |
| 2e41a025 | 02-Dec-2012 |
Hakan Sandell <sandell.hakan@gmail.com> |
Re-phrased "no license" installer text |
| 790b7720 | 30-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
moved registration notification to subscription class |
| 10b5c32d | 30-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed merge error in inc/auth.php
merged the wrong change here |
| eb3ce0d5 | 25-Nov-2012 |
Kazutaka Miyasaka <kazmiya@gmail.com> |
Fix case-insensitive match in ACL checking
ACL checking of DokuWiki is currently always case-sensitive regardless of auth backend setting ($auth->isCaseSensitive). This commit enables case-insensiti
Fix case-insensitive match in ACL checking
ACL checking of DokuWiki is currently always case-sensitive regardless of auth backend setting ($auth->isCaseSensitive). This commit enables case-insensitive match in the same way of auth_isMember().
show more ...
|
| b7183bb5 | 24-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
GeSHi update to 1.0.8.11 |
| 91effd8d | 23-Nov-2012 |
Dominik Eckelmann <deckelmann@gmail.com> |
ignore empty header on mail sending |
| 1f61f312 | 23-Nov-2012 |
Dominik Eckelmann <deckelmann@gmail.com> |
remove empty BCC/CC mail headers
Empty BCC/CC headers may cause errors on IIS. |
| 78f0e832 | 23-Nov-2012 |
Leandro Regueiro <leandro.regueiro@gmail.com> |
Galician language update |
| 3755fc25 | 15-Mar-2011 |
Tom N Harris <tnharris@whoopdedo.org> |
Combine subsequent calls to strtr into a single transformation |
| 2c2ee174 | 18-Nov-2012 |
Anika Henke <anika@selfthinker.org> |
changed semicolon to colon in link to welcome page to make it less confusing |
| c786a1b6 | 18-Nov-2012 |
Anika Henke <anika@selfthinker.org> |
fixed wrong sidebar showing in namespaces when sidebar is disabled |
| de78e4ef | 12-Nov-2012 |
Anael Mobilia <anael@anael.eu> |
French language update |
| 649ee76f | 12-Nov-2012 |
Jakub <j@kub.cz> |
Czech language update |
| 3161005d | 12-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
check for unicode preg capabilities in UTF-8 lib FS#2636
We now have two defines for checking for UTF-8 and Unicode property support in PREG and use them to work around FS#2636 on older systems. |
| 2657e468 | 09-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
authmysql fixes
* use proper plugin config * code/PHP5 cleanup |