Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fix HTML in DifferenceEngine tests | Adrian Lang | 2011-04-21 |
| | |||
* | Support the empty link [[]] | Adrian Lang | 2011-04-14 |
| | |||
* | Fix page ID test cases & make them more robust | Adrian Lang | 2011-04-09 |
| | |||
* | Check if link exists and set right caption | Izidor Matušov | 2011-04-08 |
| | |||
* | Added configuration variables for empty link testcases and added testcases ↵ | Izidor Matušov | 2011-04-07 |
| | | | | for resolve_pageid | ||
* | Unit test cases for FS 2178 | Izidor Matušov | 2011-04-07 |
| | |||
* | Merge branch 'master' of git@github.com:splitbrain/dokuwiki | Christopher Smith | 2011-04-02 |
|\ | |||
| * | Fix test cases so they work with e7f59597d0b90f64f3479ebacc190717e067dc99 | Michael Hamann | 2011-02-09 |
| | | | | | | | | All linebreaks before p_close have been removed. | ||
* | | FS#2122 alter SafeFN safe and post indicator characters. | Christopher Smith | 2011-04-02 |
|/ | | | | | | Note, any filenames encoded with the previous SafeFN scheme will need to be converted to the new scheme. Users of the old SafeFN scheme should not use this new scheme until after converting their filenames. | ||
* | Fix whitespace handling in inline diff (closes FS#2161) | Adrian Lang | 2011-02-06 |
| | |||
* | fixed email test case since we allow local addresses | Andreas Gohr | 2011-02-06 |
| | |||
* | Accept IPv6 addresses in email addresses | Andreas Gohr | 2011-02-06 |
| | |||
* | Allow p_set_metadata during rendering, test cases included. FS#1827 | Michael Hamann | 2011-02-06 |
| | |||
* | fixed the IPv6 tests, bracket links are parsed by InternalLinks | Andreas Gohr | 2011-02-06 |
| | |||
* | added a bunch of IPv6 test cases FS#2137 | Andreas Gohr | 2011-02-06 |
| | |||
* | use a bigger range of characters for password salts | Andreas Gohr | 2011-01-23 |
| | |||
* | django pass hashes have no leading $ | Andreas Gohr | 2011-01-23 |
| | |||
* | refactored passowrd hashing functions to a class | Andreas Gohr | 2011-01-22 |
| | | | | | | | | | | | | this splits the long auth_cryptPassword() function into many member functions of a new class PassHash which should make it more maintainable and reusable for other projects. This also adds two new methods djangomd5 and djangosha1 as used by the popular python framework Django. Maybe the auth_cryptPassword() and auth_verifyPassword() functions should be deprecated in favor of using the class directly? | ||
* | Fix getBaseURL for literal IPv6 addresses in URLs (RFC 2732) + test case | Michael Hamann | 2011-01-16 |
| | |||
* | Added support for Wordpress' password hashing FS#2134 | Andreas Gohr | 2011-01-15 |
| | |||
* | added unit test for kmd5 password hashing | Andreas Gohr | 2011-01-15 |
| | |||
* | Fixed css_loadfile and removed unneeded complexity, added testcases | Michael Hamann | 2011-01-09 |
| | |||
* | removed obsolete references to 'JSnocheck' class | Anika Henke | 2011-01-03 |
| | |||
* | Fix handling of case in auth_isMember; add and fix test cases | Adrian Lang | 2010-12-21 |
| | |||
* | added auth_isMember() | Andreas Gohr | 2010-12-08 |
| | | | | | | | | | | | | | | This function abstracts checking a given user and her groups against a given member list (as used in the superuser and manager options). It is also used in auth_isManager() and auth_isAdmin(), unlike the previous function, this one skips the nameencode step as it should be unnessary here (all input is given decoded). The test cases where extended by some non-ID user and group names. People with non-plain auth backends should check that their administrator and manager setups still work as expected | ||
* | Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3 | Michael Hamann | 2010-11-29 |
| | | | | | | As of VIM 7.3 it is no longer possible to specify the encoding in the modeline. This gives an error message whenever such a file is opened, thus this commit removes the enc setting from the modeline. | ||
* | Fix SafeFN-encoded file names | Adrian Lang | 2010-10-26 |
| | | | | SafeFN encoding now always end the encoding block by appending a dot at the end of the file name. This is necessary since the file name may get an extension which is not encoded. | ||
* | Correctly handle non-default sepchars in page templates (FS#2057) | Adrian Lang | 2010-10-11 |
| | |||
* | removed outdated timing tests | Andreas Gohr | 2010-10-03 |
| | |||
* | fixed new calls in test cases according to PHP5 conventions | Guy Brand | 2010-09-23 |
| | |||
* | Remove odd .htaccess | Adrian Lang | 2010-09-20 |
| | | | | Neither I nor Andi has any idea what this file is for and why it explicitly //grants// permission and why its documentation is wrong. | ||
* | More emphasis test cases from bug reports | Adrian Lang | 2010-08-31 |
| | |||
* | Fix table tests according to 6606d6fc9f9 | Adrian Lang | 2010-08-31 |
| | |||
* | XML-RPC fix for untyped string values FS#1993 | Andreas Gohr | 2010-07-01 |
| | | | | includes unit tests. Extensions welcome. | ||
* | Make XMLRPC date parsing more flexible FS#1966 | Andreas Gohr | 2010-06-09 |
| | | | | | | | | Since the specs aren't 100% clear, dates might be passed in different formats by various XMLRPC clients. This patch makes date parsing a bit more flexible. Unit tests included. | ||
* | SafeFN test cases | Christopher Smith | 2010-04-04 |
| | |||
* | Limiting use of readdir in the idx_indexLengths function (v2). | YoBoY | 2010-03-24 |
| | | | | | | Each searches on the wiki use this function. Scanning the index directory eachtime is time consuming with a constant series of disk access. Switching a normal search to use file_exists 1 or more times, and not readdir all the directory. Switching a wildcard search to use a lengths.idx file containing all the word lengths used in the wiki, file generated if a new configuration parameter $conf[readdircache] is not 0 and fixed to a time in second. Creation of a new function idx_listIndexLengths to do this part. | ||
* | Make tests PHP 5.3 compatible | Adrian Lang | 2010-03-23 |
| | |||
* | New testcase for getID() with data from FS#1838 | Michael Hamann | 2010-03-02 |
| | |||
* | Fixed testcase and getID - FS#1908 FS#1831 FS#1838 | Michael Hamann | 2010-03-02 |
| | | | | | | | | | $_SERVER['PATH_INFO'] is used now to determine the page id when using internal rewriting, in all testcases I've seen so far this variable was set correctly. There are also a couple of fallbacks if the variable doesn't exist, $_SERVER['SCRIPT_NAME'] is now preferred instead of custom path extraction which fails when doku.php is outside the document root. | ||
* | Added new testcase for getID with Apache/CGI | Michael Hamann | 2010-02-28 |
| | |||
* | Rewrite section edit handling according to #1860 | Adrian Lang | 2010-02-04 |
| | |||
* | Add tests for em from old bug reports (failing) | Adrian Lang | 2010-02-01 |
| | |||
* | Fix auth_ismanager calls in test cases | Adrian Lang | 2010-02-01 |
| | |||
* | table: Remove redundant parser data, update tests | Adrian Lang | 2010-01-29 |
| | |||
* | fix footnote tests (includes hack to counter #1652, #1699 fix) | Chris Smith | 2009-12-01 |
| | | | | | | Ignore-this: c5a934d8bce1c2b5953632bedd0c4f64 darcs-hash:20091201205426-f07c6-e21cbc5f84a8702f074069eae3cab1aa4bdb50ea.gz | ||
* | more test fixes | Andreas Gohr | 2009-12-01 |
| | | | | | | Ignore-this: 49e3a74cd437da3f65d66e1bf56b8ec darcs-hash:20091201192449-7ad00-d0327043c4eee729003f101f53b836f4564539a0.gz | ||
* | fixed some test cases | Andreas Gohr | 2009-12-01 |
| | | | | | | Ignore-this: d14f492efbb4ef316895ef402308176e darcs-hash:20091201191622-7ad00-19deabc9820a59b447e891b7576c19641d554487.gz | ||
* | Fix js_compress regexp detection | Pierre Paysant-Le Roux | 2009-11-05 |
| | | | | | | Ignore-this: ffb20375a09483502d61241d76877a8d darcs-hash:20091105213452-533a7-f09aca121cf24a8b6ad2d3448d058a846cb52182.gz | ||
* | rowspan with ::: implemented in parser/handler | hakan.sandell | 2009-11-03 |
| | | | | darcs-hash:20091103161002-9a5f4-2114938a7e62a924b9fe424b63584a4747286563.gz |