summaryrefslogtreecommitdiff
path: root/inc
Commit message (Collapse)AuthorAge
* Estonian language updateRivo Zängov2011-06-05
|
* Hungarian language updateSzabó Dávid2011-06-04
|
* Persian language updateSoroush Falahati2011-05-30
|
* Norwegian language updateRune Rasmussen2011-05-30
|
* Merge branch 'jquery'Michael Hamann2011-05-29
|\ | | | | | | | | | | | | | | Conflicts: lib/scripts/edit.js lib/scripts/locktimer.js Some whitespace (at end of line) cleanup
| * Merge branch 'master' of git://github.com/splitbrain/dokuwikiMichal Rezler2011-04-08
| |\
| * \ Merge branch 'master' of git://github.com/splitbrain/dokuwikiMichal Rezler2011-03-30
| |\ \
| * \ \ jQuery rewrite branch merged into master branch of whole projectMichal Rezler2011-03-23
| |\ \ \
| * | | | added a TODOPierre Spring2010-10-10
| | | | |
* | | | | Slovak language updateMartin Michalek2011-05-25
| | | | |
* | | | | Persian language updateOmid Mottaghi2011-05-25
| | | | |
* | | | | Arabic language updateUsama Akkad2011-05-25
| | | | |
* | | | | Check permissions + security token in lock + draft modification FS#2265Michael Hamann2011-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Use login cookie for LDAP re-auth (closes FS#2260)Michael Hamann2011-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | Since the password is no longer stored in the session, we need to use the login cookie instead.
* | | | | Fix variable name typo in indexerAdrian Lang2011-05-23
| | | | |
* | | | | Hopefully finally fixed the subscription user regexMichael Hamann2011-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Correct the subscription user regex FS#2250Michael Hamann2011-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | made favicon always use direct link if used with ml()Anika Henke2011-05-08
| | | | |
* | | | | Merge pull request #44 from lupo49/masterAndreas Gohr2011-05-08
|\ \ \ \ \ | | | | | | | | | | | | Cosmetic changes in tpl_getFavicon()
| * | | | | Cosmetic changes in tpl_getFavicon()lupo492011-05-08
| | | | | |
* | | | | | Add more render/cache logic to the metadata codeMichael Hamann2011-05-08
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Change when metadata is rendered - only when really neededMichael Hamann2011-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | fixed some missing config_cascade occurrences (FS#2235)Anika Henke2011-05-07
| | | | |
* | | | | Spanish language updateMarcelo Zunino2011-05-03
| | | | |
* | | | | Fix the wording of the search index check messagesMichael Hamann2011-05-02
| | | | |
* | | | | Add a test to do=check that should detect search index corruptionMichael Hamann2011-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this test it should be possible to detect if the search index has been corrupted by using Rincewind RC or a git version of the weeks before the RC release.
* | | | | Add a force option to idx_addPage()Michael Hamann2011-05-02
| | | | |
* | | | | Add line endings at the end of the fileMichael Hamann2011-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug that is fixed here may have corrupted your search index in a way that it produces wrong or missing results and won't be fixed automatically. This occurs when you have deleted the last occurrence of a word that has been on the last line of one of the word indexes. A functionality for checking for a broken search index will be added. The index can be fixed by deleting it completely (remove all .idx files in data/index/) and recreating it using bin/indexer.php -c. The searchindex plugin will be updated to be able to do the same, soon.
* | | | | change indexer webbug dimension FS#2237Andreas Gohr2011-05-02
| | | | |
* | | | | execute edit action when draft was specified but no draft exists FS#2240Andreas Gohr2011-05-02
| | | | |
* | | | | Brazilian Portuguese language updateFrederico Goncalves Guimaraes2011-05-02
| | | | |
* | | | | Fix a warning in the indexer when words exist without corresponding index ↵Michael Hamann2011-05-02
| | | | | | | | | | | | | | | | | | | | FS#2242
* | | | | Chinese language updateChoicky Chou2011-05-01
| | | | |
* | | | | fixed typo in PassHash classAndreas Gohr2011-05-01
| | | | | | | | | | | | | | | | | | | | The pure PHP implementation for smd5 failed.
* | | | | Czech language updateVojta Beran2011-04-27
| | | | |
* | | | | Korean language updateErial Krale2011-04-27
| | | | |
* | | | | Bulgarian language updateKiril Velikov2011-04-27
| | | | |
* | | | | Merged pull request #41 from lupo49/master.Andreas Gohr2011-04-27
|\ \ \ \ \ | | | | | | | | | | | | de/eu - language updates / tpl_getfavicon()
| * | | | | eu: language updatesMatthias Schulte2011-04-27
| | | | | |
| * | | | | Merge remote branch 'upstream/master'Matthias Schulte2011-04-27
| |\ \ \ \ \
| * | | | | | allow tpl_getFavicon() returning the absolute path to the icon filelupo492011-04-26
| | | | | | |
* | | | | | | Remove deprecated call-time pass-by-reference in inc/common.phpMichael Hamann2011-04-27
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | The value is still passed by reference as the parameter of the called function is declared as reference.
* | | | | | Fix p_get_first_heading for when the search index is emptyMichael Hamann2011-04-26
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | When the search index is empty, there was a warning and no headings were displayed. Now the headings are displayed and there is no warning anymore.
* | | | | Make the page lookup by title case insensitive againMichael Hamann2011-04-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The page lookup by title has been case insensitive before the indexer rewrite, since then it has been case sensitive, this makes it case insensitive again.
* | | | | Make ft_pageLookup respect the namespace restriction againMichael Hamann2011-04-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change all pages of the given namespace have been included in the result, now the search is restricted to the namespace again as it was before the new indexer has been implemented.
* | | | | Portuguese language updateJosé Carlos Campos2011-04-20
| | | | |
* | | | | Enable metadata rendering in the indexerMichael Hamann2011-04-20
| | | | | | | | | | | | | | | | | | | | Metadata is rendered now in the indexer when it's cache is invalid.
* | | | | Hungarian language updateTihanyi Sándor2011-04-19
| | | | |
* | | | | Latvian language updateAivars Miska2011-04-19
| | | | |
* | | | | Merge remote-tracking branch 'upstream/master'Kate Arzamastseva2011-04-18
|\ \ \ \ \