| d48e3de5 | 06-Oct-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed auth related tests |
| 0c313f78 | 01-Oct-2012 |
Michael Hamann <michael@content-space.de> |
Always load the parser in the test environment
This fixes the problem that $PARSER_MODES was sometimes unset by PHPUnit between test functions that called p_get_parsermodes() as PHPUnit tried to res
Always load the parser in the test environment
This fixes the problem that $PARSER_MODES was sometimes unset by PHPUnit between test functions that called p_get_parsermodes() as PHPUnit tried to restore the global environment. I couldn't reproduce this when I executed all tests but just when I executed a single plugin test.
show more ...
|
| 1c6c1c6c | 01-Oct-2012 |
Michael Hamann <michael@content-space.de> |
Escape filename in regex in search_index()
This problem was reported in https://forum.dokuwiki.org/thread/8143. Apart from warnings you could notice that when you have namespaces "foo" and "f.o" and
Escape filename in regex in search_index()
This problem was reported in https://forum.dokuwiki.org/thread/8143. Apart from warnings you could notice that when you have namespaces "foo" and "f.o" and you open the sitemap for "foo" that "f.o" is opened, too.
show more ...
|
| 89a539f2 | 30-Sep-2012 |
Nick Reilingh <nick@magnumopusgames.com> |
Changed XHTML validator icon to HTML5 (FS#2619) |
| cab75975 | 26-Sep-2012 |
Anika Henke <anika@selfthinker.org> |
fixed wrong apple-touch-icon extension (FS#2627) |
| 86ca1526 | 26-Sep-2012 |
Anika Henke <anika@selfthinker.org> |
Revert "removed html dependency from media query detection JS in new template"
... because it made the solution less transparent, more error prone and even more like a hack than it already was
This
Revert "removed html dependency from media query detection JS in new template"
... because it made the solution less transparent, more error prone and even more like a hack than it already was
This reverts commit 20391a36885910a616110df30f3ce30f8d23639d.
show more ...
|
| 20391a36 | 25-Sep-2012 |
Anika Henke <anika@selfthinker.org> |
removed html dependency from media query detection JS in new template |
| 07834a7c | 25-Sep-2012 |
Anika Henke <anika@selfthinker.org> |
de-couple mobile JS from widths to actual media query equivalent (fixes FS#2623) |
| 89fd993f | 21-Sep-2012 |
Robert Bogenschneider <robog@gmx.de> |
Esperanto language update |
| 93877985 | 21-Sep-2012 |
Martin Michalek <michalek.dev@gmail.com> |
Slovak language update |
| a27f1c2b | 21-Sep-2012 |
lainme <lainme993@gmail.com> |
Simplified Chinese language update |
| b9eadad0 | 21-Sep-2012 |
Edmondo Di Tucci <snarchio@gmail.com> |
Italian language update |
| 8e41425c | 21-Sep-2012 |
Rudolf Mayerhofer <rudolf.mayerhofer@hs-regensburg.de> |
make use of adLDAP 4.0.4 in AD backend
The new version of adLDAP improves the speed in handling recursive group memberships dramatically |
| 2ed38036 | 21-Sep-2012 |
Andreas Gohr <andi@splitbrain.org> |
consolidate more notification code in subscription class
This is untested and probably broken currently |
| 3899c2ec | 18-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Start output buffering in lib/exe/css.php only when the CSS is generated
This prevents buffering of the cache file output. |
| c5c68de9 | 18-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Load rtl userstyle as it is still supported (did it ever work?) |
| dbf794bf | 18-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Set default userstyle only once as screen userstyle |
| 14977bd2 | 18-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Fix CSS cache handling and CSS output
This fixes several problems: - the CSS cache was only updated when either the CSS files for all media types or one of the global files was modified - when onl
Fix CSS cache handling and CSS output
This fixes several problems: - the CSS cache was only updated when either the CSS files for all media types or one of the global files was modified - when only the screen CSS was changed, the screen CSS was regenerated but then the cache was printed which either caused duplicated screen CSS output when gzip output was disabled or invalid output with gzip enabled as first the plain text screen CSS and then the gzip-compressed cache file was printed
Now first all CSS files are collected, then the cache is checked once and only after this the CSS content is collected.
show more ...
|
| bd4e4c94 | 18-Sep-2012 |
Andreas Gohr <andi@splitbrain.org> |
add linebreaks and escaping in digest HTML mails FS#2606
this is a temporary and somewhat ugly fix. digest subscriptions should make use of the inline format just as the 'every' subscriptions do. Bu
add linebreaks and escaping in digest HTML mails FS#2606
this is a temporary and somewhat ugly fix. digest subscriptions should make use of the inline format just as the 'every' subscriptions do. But it makes sense to implement it correctly in the subscription branch instead and not introduce new code in the RC.
show more ...
|
| e7ebc158 | 18-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Remove diff link from French notify mail FS#2602
The link doesn't exist in the English version and it doesn't work anymore because appending a parameter to a link doesn't work when the link is not j
Remove diff link from French notify mail FS#2602
The link doesn't exist in the English version and it doesn't work anymore because appending a parameter to a link doesn't work when the link is not just a URL but an HTML link
show more ...
|
| ce7fb7d7 | 17-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Only complain about invalid plugin names when plugins are loaded FS#2595
This fixes error messages about invalid plugin names for directories in the plugin directory which didn't contain any plugin.
Only complain about invalid plugin names when plugins are loaded FS#2595
This fixes error messages about invalid plugin names for directories in the plugin directory which didn't contain any plugin. Now the message is only displayed for plugins which couldn't be loaded because of the invalid name.
show more ...
|
| 19e77bae | 17-Sep-2012 |
Anika Henke <anika@selfthinker.org> |
fixed checkboxes missing border in Opera (FS#2603) |
| e71b260a | 17-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Simplify js_compress() for regular expressions FS#2593
This simplifies a while loop in the js_compress() code. The functionality of the new code is completely identical to the old code but it uses l
Simplify js_compress() for regular expressions FS#2593
This simplifies a while loop in the js_compress() code. The functionality of the new code is completely identical to the old code but it uses less comparisons and according to FS#2593 it is thus a lot faster.
show more ...
|
| 9aa38483 | 17-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Fix link names of start pages in sitemap/index FS#2605 |
| ff5a286c | 17-Sep-2012 |
Michael Hamann <michael@content-space.de> |
Fix revisions title for pages without title with useheading on FS#2597 |