]> git.mxchange.org Git - hub.git/commitdiff
Added needed config entries for index files (not search index).
authorRoland Haeder <roland@mxchange.org>
Thu, 22 May 2014 19:09:11 +0000 (21:09 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 22 May 2014 19:09:11 +0000 (21:09 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/hub/config.php

index b0d0d157f03b17c6568ee305a2997ac21a0efb34..4e73dc58e4d9ca04cf40157b138b3beabc66851f 100644 (file)
@@ -1199,6 +1199,9 @@ $cfg->setConfigEntry('base_file_stacks_path', 'data/stacks');
 // CFG: FILE-STACKS-EXTENSION
 $cfg->setConfigEntry('file_stacks_extension', 'stack');
 
+// CFG: INDEX-EXTENSION
+$cfg->setConfigEntry('index_extension', '.idx');
+
 // CFG: HUBCONSOLE-CMD-CHAT-RESOLVER-CLASS
 $cfg->setConfigEntry('hubconsole_cmd_crawler_resolver_class', 'HubConsoleCommandResolver');
 
@@ -1268,6 +1271,18 @@ $cfg->setConfigEntry('crawler_url_rss_start_stack_class', 'FiFoFileStack');
 // CFG: CRAWLER-URL-FOUND-RSS-STACK-CLASS
 $cfg->setConfigEntry('crawler_url_found_rss_stack_class', 'FiFoFileStack');
 
+// CFG: CRAWLER-URL-LOCAL-START-FILE-STACK-INDEX-CLASS
+$cfg->setConfigEntry('crawler_url_local_start_file_stack_index_class', 'FileStackIndex');
+
+// CFG: CRAWLER-URL-UPLOADED-LIST-FILE-STACK-INDEX-CLASS
+$cfg->setConfigEntry('crawler_url_uploaded_list_file_stack_index_class', 'FileStackIndex');
+
+// CFG: CRAWLER-URL-RSS-START-FILE-STACK-INDEX-CLASS
+$cfg->setConfigEntry('crawler_url_rss_start_file_stack_index_class', 'FileStackIndex');
+
+// CFG: CRAWLER-URL-FOUND-RSS-FILE-STACK-INDEX-CLASS
+$cfg->setConfigEntry('crawler_url_found_rss_file_stack_index_class', 'FileStackIndex');
+
 // CFG: TASK-CRAWLER-NODE-COMMUNICATOR-STARTUP-DELAY
 $cfg->setConfigEntry('task_crawler_node_communicator_startup_delay', 500);