summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* updated year in copyrightAndreas Gohr2013-01-25
|
* fixed files being unselectable after upload (FS#2591)Anika Henke2013-01-24
|
* fix custom editor loadingAndreas Gohr2013-01-24
| | | | | | Custom editors can also be loaded when not a section is given. For example this happens on a preview click where the page is already separated into pre, suf and text.
* fixed test caseAndreas Gohr2013-01-23
|
* Revert "handle bzip1 as well"Andreas Gohr2013-01-23
| | | | | | | This reverts commit f2cb3ec76dec3fe2b40f25765ef842223c7132fe. Turns out I was too fast merging this. I can't get PHP's bzip handler to handle a bzip1 compressed file.
* Merge pull request #162 from glensc/bz-bz2Andreas Gohr2013-01-23
|\ | | | | handle bz (bzip not bzip2) better
| * handle bzip1 as wellElan Ruusamäe2013-01-23
| | | | | | | | | | in fact .tbz is tar.bz (bzip1) and .tbz2 is what tar.bz2 is used commonly.
* | Merge pull request #161 from glensc/tarlibAndreas Gohr2013-01-23
|\ \ | |/ |/| fixes from bee9f377bc547c99fe99b4e38199cb92cf668554 commit notes
| * fixes from bee9f377bc547c99fe99b4e38199cb92cf668554 commit notesElan Ruusamäe2013-01-23
|/
* Merge pull request #160 from gturri/addedUTestsAndreas Gohr2013-01-23
|\ | | | | Added unit tests
| * Merge remote-tracking branch 'origin/master' into addedUTestsGuillaume Turri2013-01-21
| |\ | | | | | | | | | Hurray, tests pass!
| * | Added test for search_allpagesGuillaume Turri2013-01-21
| | | | | | | | | | | | | | | Currently both the 2nd and the third assertions fail (the first one is just for upcoming non-regression)
* | | fixed sample handling in toolbar FS#2691Kazutaka Miyasaka2013-01-22
| | |
* | | Merge pull request #157 from gturri/permsMichael Hamann2013-01-21
|\ \ \ | |_|/ |/| | wiki.getAttachments returns 'perms' according to documentation
| * | Increment DOKU_API_VERSIONGuillaume Turri2013-01-21
| | | | | | | | | Because wiki.getAttachments now returns 'perms' instead of 'perm'
| * | wiki.getAttachments returns 'perms' according to documentationGuillaume Turri2013-01-19
| | |
* | | Merge pull request #154 from gturri/searchDepthAndreas Gohr2013-01-20
|\ \ \ | | | | | | | | Check search limit depth with an inequality
| * | | If depth option is set to 0, we should recurse foreverGuillaume Turri2013-01-10
| | | | | | | | | | | | | | | | At least if we want to be consistent with search_universal
| * | | Check search limit depth with an inequalityGuillaume Turri2013-01-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Otherwise, when we check for equality, the test fails if the search start beneath the max depth. Eg: if I have the page ns1:ns2:mypage in my wiki, and launch the xmlrpc query getPagelist("ns1", "depth => 1"), without this patch, it retrieves mypage
* | | | Merge pull request #155 from gturri/fixPageVersionsAndreas Gohr2013-01-20
|\ \ \ \ | |_|_|/ |/| | | Don't remove page version from result if uneeded
| * | | Don't remove page version from result if uneededGuillaume Turri2013-01-10
| |/ / | | | | | | | | | It may happen when the page has few versions
* | / Correct PHPDoc comment of DokuWiki_Plugin::locale_xhtml()Michael Hamann2013-01-19
| |/ |/|
* | Turkish language updateErdem2013-01-18
| |
* | Catalan language updateDaniel López Prat2013-01-18
| |
* | grayscaled some interwiki iconsAndreas Gohr2013-01-13
| |
* | Fix content of pages with incorrect metadata in list feedsMichael Hamann2013-01-11
| | | | | | | | | | | | | | | | | | Before this change the last modification time was taken from metadata and then the revision that was specified there was loaded from the attic. Now revisions from attic are only loaded when the page has been modified more recently and the date is normally the last modification time of the page source. This was a problem when the most recent change was an external edit, then an older revision was shown in the feed.
* | show filesize of local file links in tooltipRobin Getz2013-01-09
| |
* | Traditional Chinese language update日向小郎2013-01-09
| |
* | allow template unit testsDominik Eckelmann2013-01-08
| |
* | Merge pull request #148 from michitux/indexerMichael Hamann2013-01-06
|\ \ | | | | | | Indexer: Add the PID to INDEXER_PAGE_ADD and add getPID/getPageFromPID functions
| * | Remove superfluous requires and variables from bin/indexer.phpMichael Hamann2012-12-20
| | |
| * | Remove global $Indexer, clear index in the testing system insteadMichael Hamann2012-12-20
| | |
| * | Add clear function to the indexer that deletes the whole indexMichael Hamann2012-12-20
| | |
| * | Indexer: Make $Indexer in idx_get_indexer() global instead of staticMichael Hamann2012-12-04
| | | | | | | | | | | | | | | | | | | | | 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.
| * | Indexer: Add cache for getPID()Michael Hamann2012-12-04
| | | | | | | | | | | | | | | | | | 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.
| * | Indexer: Add test case for the PID functionsMichael Hamann2012-12-04
| | |
| * | Indexer: add getPID/getPageFromPID functions and PID to INDEXER_PAGE_ADDMichael Hamann2012-12-03
| | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #153 from gturri/xmlrpcPermsAndreas Gohr2013-01-06
|\ \ \ | | | | | | | | Made auth_aclcheck always return int
| * | | Made auth_aclcheck always return intGuillaume Turri2013-01-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The returned type is important in particular when we deal with xmlrpc. Indeed, this value is directly returned to the client eg when the wiki.getAllPages method is queried. Currently the 'perms' attribute may be either an int or a string, and its up to the xmlrpc client to resolve it (although Dokuwiki's documentation only tells it can be an int). This patch makes sure we'll always return perms as int.
* | | | Arabic language updateOsama Al-Kofahi2013-01-06
| | | |
* | | | Merge pull request #151 from gturri/masterDominik Eckelmann2013-01-06
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| xmlrpc putPage and appendPage should return bool
| * | Fixed declared returned typeGuillaume Turri2013-01-06
| | |
| * | Made xmlrpc putPage and appendPage consistent with documentationGuillaume Turri2013-01-06
|/ / | | | | | | | | According to dokuwiki's documentation (https://www.dokuwiki.org/devel:xmlrpc#wikiputpage), those methods should return booleans, not int.
* | fixed broken @author link in farm codeAnika Henke2012-12-19
| |
* | added to version info if version is unknownAnika Henke2012-12-19
| |
* | Merge pull request #149 from splitbrain/installerAndreas Gohr2012-12-16
|\ \ | | | | | | added option to enable automatic popularity data in installer
| * | changed popularity linkAndreas Gohr2012-12-16
| | |
| * | added option to enable automatic popularity data in installerAndreas Gohr2012-12-07
| |/
* | Merge pull request #150 from lupo49/masterDominik Eckelmann2012-12-12
|\ \ | |/ |/| de/de-informal: language updates / added "sidebar"
| * de/de-informal: language updates / added "sidebar"lupo492012-12-12
|/