summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorTom N Harris <tnharris@whoopdedo.org>2010-11-16 18:09:53 -0500
committerTom N Harris <tnharris@whoopdedo.org>2010-11-16 18:09:53 -0500
commit1c07b9e622d139fa815c955c89569f96342475fb (patch)
tree08b1d84b5d1fa7c3b1b22c89a9be6efd3e543704 /conf
parent6c528220aaf62f4ba5890483797d6661352500bb (diff)
downloadrpg-1c07b9e622d139fa815c955c89569f96342475fb.tar.gz
rpg-1c07b9e622d139fa815c955c89569f96342475fb.tar.bz2
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'
Diffstat (limited to 'conf')
-rw-r--r--conf/dokuwiki.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php
index 2405494e0..f10c70e58 100644
--- a/conf/dokuwiki.php
+++ b/conf/dokuwiki.php
@@ -133,6 +133,8 @@ $conf['broken_iua'] = 0; //Platform with broken ignore_user_abor
$conf['xsendfile'] = 0; //Use X-Sendfile (1 = lighttpd, 2 = standard)
$conf['renderer_xhtml'] = 'xhtml'; //renderer to use for main page generation
$conf['rememberme'] = 1; //Enable/disable remember me on login
+$conf['external_tokenizer'] = 0; //Use an external program to split pages into words for indexing
+$conf['tokenizer_cmd'] = '/usr/bin/mecab -O wakati';
//Set target to use when creating links - leave empty for same window
$conf['target']['wiki'] = '';