| e6cecb08 | 26-Dec-2010 |
Michael Hamann <michael@content-space.de> |
Language files can now be customized in the conf/ directory
As suggested by Robin Getz locale .txt files can now be duplicated and changed in the conf/lang/ directory and conf/plugin_lang/$plugin/ d
Language files can now be customized in the conf/ directory
As suggested by Robin Getz locale .txt files can now be duplicated and changed in the conf/lang/ directory and conf/plugin_lang/$plugin/ directory for plugins.
show more ...
|
| 9b41be24 | 29-Dec-2010 |
Tom N Harris <tnharris@whoopdedo.org> |
Indexer v3 Rewrite part two, update uses of indexer |
| 650ebc14 | 28-Dec-2010 |
lupo49 <post@lupo49.de> |
de/de-informal: language optimizing |
| c40c98f3 | 28-Dec-2010 |
Matthias Schulte <post@lupo49.de> |
added de/de-informal translation strings |
| ab2d4a05 | 26-Dec-2010 |
Matthias Schulte <post@lupo49.de> |
fixed typo in link (FS#2129) |
| 7cb3c08f | 23-Dec-2010 |
Ben Fifield <bfifield@live.olivet.edu> |
Spanish language update |
| f2cfd2ce | 21-Dec-2010 |
Gregor Skumavc <grega.skumavc@gmail.com> |
Slovak language update |
| 5827ba0b | 18-Dec-2010 |
Guillaume Turri <guillaume.turri@gmail.com> |
Popularity plugin displays the last time the data was sent |
| 8596046d | 10-Dec-2010 |
Andreas Gohr <andi@splitbrain.org> |
added missing files for popularity plugin |
| fb7b7723 | 09-Dec-2010 |
Andreas Gohr <andi@splitbrain.org> |
some language improvements(?) for the popularity plugin |
| 98be6429 | 09-Dec-2010 |
Guillaume Turri <guillaume.turri@gmail.com> |
Add support for autosubmitting popularity data FS#2025 |
| 6a7df0a2 | 06-Dec-2010 |
Anika Henke <anika@selfthinker.org> |
added security warning to fullpath config option (FS#2113) |
| 68a53590 | 30-Nov-2010 |
Michael Hamann <michael@content-space.de> |
Allow spaces in numeric configuration values |
| 359fab8b | 30-Nov-2010 |
Michael Hamann <michael@content-space.de> |
Revert "Fix for $conf['breadcrumbs'] < 0, FS#2107", new fix
This reverts commit 4871414204799044c31aa2764c4b4ca020e2331d. Additionally there is a new fix for FS#2107 that doesn't introduce a lot of
Revert "Fix for $conf['breadcrumbs'] < 0, FS#2107", new fix
This reverts commit 4871414204799044c31aa2764c4b4ca020e2331d. Additionally there is a new fix for FS#2107 that doesn't introduce a lot of checks but instead ensures that the configuration option can't be set to negative values when the configuration manager is used.
show more ...
|
| 38dc5fa6 | 30-Nov-2010 |
Michael Hamann <michael@content-space.de> |
Added min and max options for configuration metadata |
| e3776c06 | 29-Nov-2010 |
Michael Hamann <michael@content-space.de> |
Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3
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 o
Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3
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.
show more ...
|
| 48714142 | 26-Nov-2010 |
Michael Hamann <michael@content-space.de> |
Fix for $conf['breadcrumbs'] < 0, FS#2107
This fixes an infinite loop in breadcrumbs() and makes the behaviors in all places where breadcrumbs are used consistent so that non-numeric values, values
Fix for $conf['breadcrumbs'] < 0, FS#2107
This fixes an infinite loop in breadcrumbs() and makes the behaviors in all places where breadcrumbs are used consistent so that non-numeric values, values < 0 and 0 are treated the same way.
show more ...
|
| 98214867 | 22-Nov-2010 |
Michael Hamann <michael@content-space.de> |
Render metadata when needed
This changes fundamentally when metadata is rendered. This commit introduces a new cache file for every page that just contains a timestamp and is updated whenever the me
Render metadata when needed
This changes fundamentally when metadata is rendered. This commit introduces a new cache file for every page that just contains a timestamp and is updated whenever the metadata of that page is rendered.
Metadata is rendered when p_get_metadata is called and the last rendering has been before a page, metadata, configuration or renderer update or purge is set like in the xhtml renderer cache.
Metadata is no longer automatically rendered when the xhtml renderer cache isn't used but will still be rendered when needed as p_get_metadata is called in the cache.
Metadata is also no longer rendered in the indexer script when missing as that is already done by pageinfo() before anything else is done so the indexer script won't be called when there is no metadata file.
show more ...
|
| ba6984cf | 20-Nov-2010 |
Caleb Maclennan <caleb@alerque.com> |
Turkish language update |
| 11d7187b | 18-Nov-2010 |
YooS C <dryoo@live.com> |
Korean language update |
| 7ae265d3 | 18-Nov-2010 |
Zbyněk Švec <Zbynek.Svec@septim.cz> |
Czech language update |
| 7c2ef4e8 | 17-Nov-2010 |
Tom N Harris <tnharris@whoopdedo.org> |
Use a different indexer version when external tokenizer is enabled |
| 1c07b9e6 | 16-Nov-2010 |
Tom N Harris <tnharris@whoopdedo.org> |
Use external program to split pages into words
An external tokenizer inserts extra spaces to mark words in the input text. The text is sent through STDIN and STDOUT file handles.
A good choice for
Use external program to split pages into words
An external tokenizer inserts extra spaces to mark words in the input text. The text is sent through STDIN and STDOUT file handles.
A good choice for Chinese and Japanese is MeCab. http://sourceforge.net/projects/mecab/ With the command line 'mecab -O wakati'
show more ...
|
| ee0891d8 | 14-Nov-2010 |
Tom N Harris <tnharris@whoopdedo.org> |
Do not assume that index files will be backward compatible |
| 1172f8dc | 13-Nov-2010 |
Adrian Lang <dokuwiki@adrianlang.de> |
Introduce metadata write wrapper p_save_metadata
p_purge_metadata now updates the metadata cache and the INFO array like the other metadata writing functions |