| 0667123f | 11-Feb-2011 |
Elan Ruusamäe <glen@pld-linux.org> |
correctly encode quoted email names |
| 52784dd8 | 10-Feb-2011 |
Andreas Gohr <gohr@cosmocode.de> |
do not (re)render metadata in backlinks
A page could have possibly hundreds of backlinks, when the cache is outdated they should not be rererendered at once |
| 7e8e923f | 10-Feb-2011 |
Andreas Gohr <gohr@cosmocode.de> |
Use Base64 encoding for long subjects FS#2169
Quoted-Printable specifies a maximum line length and some mail tools (Apple mail and Thunderbird) take this quite serious and will fail to decode subjec
Use Base64 encoding for long subjects FS#2169
Quoted-Printable specifies a maximum line length and some mail tools (Apple mail and Thunderbird) take this quite serious and will fail to decode subjects encoded with quoted-printable when the subject exceeds the length limit.
The correct fix would be to wrap the header into multiple lines. But this seems not to be possible with mails() $subject variable.
This patch switches to Base64 encoding for long subjects.
A general decision if switching completely to Base64 is the best way to go is still open. (see bugreport)
show more ...
|
| 3ec19a6a | 09-Feb-2011 |
Windy Wanderer <windy.wanderer@gmail.com> |
Russian language update |
| 95412639 | 09-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
added some spammers to the blacklist |
| 4a39d803 | 09-Feb-2011 |
Michael Hamann <michael@content-space.de> |
Fix test cases so they work with e7f59597d0b90f64f3479ebacc190717e067dc99
All linebreaks before p_close have been removed. |
| f25fcf53 | 09-Feb-2011 |
Michael Hamann <michael@content-space.de> |
Make the regex for internal links more restrictive
This fixes a PCRE backtrack error that occurred on large pages like :users on dokuwiki.org. |
| 0411c186 | 08-Feb-2011 |
Andreas Gohr <gohr@cosmocode.de> |
that smiley was far too happy |
| 714260d8 | 07-Feb-2011 |
Georgios Petsagourakis <petsagouris@gmail.com> |
Greek language update |
| 3d7ac595 | 07-Feb-2011 |
Michael Hamann <michael@content-space.de> |
Fix namespace template loading (load $data['tplfile'] instead of $data['tpl']) |
| 28ac8164 | 07-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
added one of the most important smileys |
| cca94fbc | 06-Feb-2011 |
Roland Hager <roland.hager@tu-berlin.de> |
made config cascade more flexible |
| 1a6a1c04 | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
Revert "use CRLF in quoted printable encoding FS#1755"
This research suggests that, the change does not help, but in fact breaks previoulsy working setups: https://bugs.dokuwiki.org/index.php?do=det
Revert "use CRLF in quoted printable encoding FS#1755"
This research suggests that, the change does not help, but in fact breaks previoulsy working setups: https://bugs.dokuwiki.org/index.php?do=details&task_id=1755#comment3446
I'm still at loss on how to fix this bug.
This reverts commit 2ae68f97446ff6bae5fbbe463eb00312598be840.
show more ...
|
| 4c5a5d3d | 06-Feb-2011 |
Michael Hamann <michael@content-space.de> |
JS: Add style helper and fix footnotes in non-static containers |
| 999913b8 | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
no final comma in class members or IE craps out |
| 14739a20 | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
Revert "merged branch 'danny0838:rewrite_block' and resolved conflict"
Anika's merge did not pul in the individual patches as one would expect.
Then I messed up when trying to fix this by merging w
Revert "merged branch 'danny0838:rewrite_block' and resolved conflict"
Anika's merge did not pul in the individual patches as one would expect.
Then I messed up when trying to fix this by merging with danny's repo again but used the wrong branch. So we're still missing two patches. To have them apply cleanly I have to revert Anika's merge here. Another merge for the missing two patches will follow.
This reverts commit b17e20ac9cca30b612968d02f06fa9c5df5c01f0.
show more ...
|
| c45608df | 06-Feb-2011 |
Adrian Lang <dokuwiki@adrianlang.de> |
Honor conf[pluginmanager] again (closes FS#1856) |
| b17e20ac | 06-Feb-2011 |
Anika Henke <anika@selfthinker.org> |
merged branch 'danny0838:rewrite_block' and resolved conflict |
| a8a3aa33 | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
make hierarchical breadcrumb consistent on search FS#2078
A search equivalent to a new ID so it should show up in the bread crumbs. |
| 4f0030dd | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
ignore soft-hyphens for search FS#2049
This makes it possible to find words that include soft-hyphens. However, search higlighting will not work and I have no idea how to make it work. |
| 412b5df1 | 06-Feb-2011 |
Michael Hamann <michael@content-space.de> |
Prevent infinite loop in the subscription lock
There is no reason why the subscription should wait for other calls because the lock is only for one page so once the other call has finished the work
Prevent infinite loop in the subscription lock
There is no reason why the subscription should wait for other calls because the lock is only for one page so once the other call has finished the work has already been done. This simplifies the lock mechanism so there is no more loop.
show more ...
|
| e8188911 | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
hide security check image if everything is alright |
| 7441e340 | 06-Feb-2011 |
Andreas Gohr <andi@splitbrain.org> |
apply cleanUser and cleanGroup in user manager FS#1859 |
| 9f881d09 | 06-Feb-2011 |
Michael Hamann <michael@content-space.de> |
Only remove the indexer lock when there is really a stale lock
Previously the rmdir could be executed when the lock directory had been deleted by another indexer already. This could lead to a race c
Only remove the indexer lock when there is really a stale lock
Previously the rmdir could be executed when the lock directory had been deleted by another indexer already. This could lead to a race condition when another indexer call creates the lock again between the if and the rmdir. This issue still exists for stale lock directories but they normally shouldn't exist. This also prevents the loop from becoming an endless loop when the lock directory can't be created. This change also fixes a syntax error in the indexer and prevents an endless loop when the lock directory exists but can't be deleted.
show more ...
|
| 0993d1c5 | 06-Feb-2011 |
Anika Henke <anika@selfthinker.org> |
FS#2067: fixed monospace font sizes |