| 1c56be7b | 07-Jun-2011 |
Michael Hamann <michael@content-space.de> |
Add missing return value to p_set_metadata |
| d54ac877 | 06-Jun-2011 |
Adrian Lang <lang@cosmocode.de> |
Use autoloading for plugin classes |
| ddcd5ab6 | 06-Jun-2011 |
Kazutaka Miyasaka <kazmiya@gmail.com> |
fixed email subject encoding bug ($enc_subj typo) |
| 0739a638 | 05-Jun-2011 |
Kate Arzamastseva <pshns@ukr.net> |
type of recent changes selection fix |
| 8d40b4b6 | 05-Jun-2011 |
Kate Arzamastseva <pshns@ukr.net> |
type of recent changes selection |
| 61f1aad8 | 05-Jun-2011 |
Kate Arzamastseva <pshns@ukr.net> |
media version saving fixes |
| 66c880ee | 05-Jun-2011 |
Rivo Zängov <eraser@eraser.ee> |
Estonian language update |
| 29778747 | 04-Jun-2011 |
Kate Arzamastseva <pshns@ukr.net> |
media revisions in recent changes |
| cbe26ad6 | 04-Jun-2011 |
Kate Arzamastseva <pshns@ukr.net> |
media version saving fix |
| 0f80b0bc | 03-Jun-2011 |
Szabó Dávid <szabo.david@gyumolcstarhely.hu> |
Hungarian language update |
| 56815381 | 30-May-2011 |
Soroush Falahati <s_falahati@hotmail.com> |
Persian language update |
| 7800517d | 30-May-2011 |
Rune Rasmussen <rra@vannavalen.no> |
Norwegian language update |
| e4f389ef | 26-May-2011 |
Kate Arzamastseva <pshns@ukr.net> |
media version saving |
| 5db16396 | 25-May-2011 |
Martin Michalek <michalek.dev@gmail.com> |
Slovak language update |
| 52b88d6b | 25-May-2011 |
Omid Mottaghi <omidmr@gmail.com> |
Persian language update |
| 66f6026a | 25-May-2011 |
Usama Akkad <uahello@gmail.com> |
Arabic language update |
| 31bc8f11 | 24-May-2011 |
Michael Hamann <michael@content-space.de> |
Check permissions + security token in lock + draft modification FS#2265
This disables lock and draft creation for pages the user can't edit. It additionally adds a security token to the draft creati
Check permissions + security token in lock + draft modification FS#2265
This disables lock and draft creation for pages the user can't edit. It additionally adds a security token to the draft creation and deletion request so - at least for logged in users - drafts can't be created, modified or deleted so easily anymore.
show more ...
|
| 76388d5c | 24-May-2011 |
Michael Hamann <michael@content-space.de> |
Use login cookie for LDAP re-auth (closes FS#2260)
Since the password is no longer stored in the session, we need to use the login cookie instead. |
| dbb771bb | 23-May-2011 |
Adrian Lang <lang@cosmocode.de> |
Fix variable name typo in indexer |
| ded89ef6 | 23-May-2011 |
Michael Hamann <michael@content-space.de> |
Hopefully finally fixed the subscription user regex
Users with names like foo.bar still didn't receive the mail when user foo edited the page. Now the two possibilities (space and end of line) are t
Hopefully finally fixed the subscription user regex
Users with names like foo.bar still didn't receive the mail when user foo edited the page. Now the two possibilities (space and end of line) are tested instead of just a word boundary.
show more ...
|
| 6c30366e | 22-May-2011 |
Michael Hamann <michael@content-space.de> |
Correct the subscription user regex FS#2250
This fixes the subscription user regex to really only not to match the author of the change but to still match users who have that username as substring i
Correct the subscription user regex FS#2250
This fixes the subscription user regex to really only not to match the author of the change but to still match users who have that username as substring in their username.
show more ...
|
| 1f13e33d | 08-May-2011 |
Anika Henke <anika@selfthinker.org> |
made favicon always use direct link if used with ml() |
| 0f747863 | 08-May-2011 |
lupo49 <post@lupo49.de> |
Cosmetic changes in tpl_getFavicon() |
| 65aa8490 | 08-May-2011 |
Michael Hamann <michael@content-space.de> |
Add more render/cache logic to the metadata code
This adds a new rendering limit of currently 5 pages to the p_get_metadata function. This means that in one request not more than 3 pages will be par
Add more render/cache logic to the metadata code
This adds a new rendering limit of currently 5 pages to the p_get_metadata function. This means that in one request not more than 3 pages will be parsed/rendered. Pages for which the cache can be used aren't counted. This should make the new cache modes safe to use and should provide backwards compatibility while keeping the advantage of rendering metadata on demand (i.e. imagine one included page out of 10 is updated, then the metadata for that page can be rendered, but when you request a purge of the cache not 10 pages are rendered).
In this commit most of the changes to the p_get_first_heading function are reverted and the title index is no longer used. This makes the first heading functionality no longer depends on the search index of DokuWiki. Maybe it can be added again later when the indexer provides a proper API for getting metadata values for all or selected pages. The performance of the p_get_first_heading function should be almost back to the performance in Anteater as the simple cache of p_get_metadata is used and also the limit of p_get_metadata is of course applied.
show more ...
|
| 67c15ece | 07-May-2011 |
Michael Hamann <michael@content-space.de> |
Change when metadata is rendered - only when really needed
This changes the cache logic for metadata. It introduces a new mode that tries to avoid rendering the page again for simple requests but st
Change when metadata is rendered - only when really needed
This changes the cache logic for metadata. It introduces a new mode that tries to avoid rendering the page again for simple requests but still updates the metadata when the page has been changed (but not when the cache timeout has been reached or purge is used). It simply compares the time of the last rendering with the last modified time of the page.
The old boolean $render parameter has been changed into an int with three possible values. Compatibility for the old parameter is provided using a check with is_numeric using the following mapping: - false is still don't render (0 is the new value for that) - true is using that new render logic which means that many plugins will still work unchanged even if they request a lot of data using $render=true (1 is the new value for that providing full compatibility in the case 1 has been used instead of true)
The default value for p_get_first_heading is now that new simple cache logic, the default value for getting metadata is the cache logic which should be used with care but is the only way to request (rendered) metadata that can change because of plugin installations or upgrades.
show more ...
|