Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | removed deprecated old test framework | Tobias Sarnowski | 2012-04-18 |
| | |||
* | 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. | ||
* | removed outdated timing tests | Andreas Gohr | 2010-10-03 |
| | |||
* | 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. |