Make search result hit template configurable, add chat template
[phinde.git] / data / config.php.dist
index 3c1ccea35f33e1910c01c6413ceaa5fb90bf20be..9170a9f4969940c41a372d03b5e976764034dd4e 100644 (file)
@@ -10,6 +10,9 @@ $GLOBALS['phinde'] = array(
     'blacklist' => array(
         'http://bad.example.org/'
     ),
+    //list of regexes for URLs that should not be crawled
+    'crawlBlacklist' => array(
+    ),
     //list of URLs that should be subscribed to with PubSubHubbub
     'subscriptions' => array(
         'http://www.example.org/feed',
@@ -22,5 +25,10 @@ $GLOBALS['phinde'] = array(
     //prefix for the gearman queue names, needed when multiple instances
     //are running in parallel
     'queuePrefix' => '',
+    //show the full text content in the results
+    // useful for chat logs in which every line is its own document
+    'showFullContent' => false,
+    //search result "hit" template file
+    'hitTemplate' => 'hit.htm',
 );
 ?>
\ No newline at end of file