|
Extension definitions are supplied to the core search engine through XML files found in the plugin_cfg sub-folder. The values specified are:
displayname
|
Display name for the extension.
|
uniquename
|
Globally unique name for the extension.
|
progid
|
COM Prog Id for the extension.
|
filetypes
|
Comma separated list of file types that the extension handles.
|
interpretertype
|
Type of the interpreter: compositefile, textconverter, or textinterpreter.
|
active
|
Flag indicating if the default setting of the extension is set to active.
|
safemode
|
Flag indicating if the default setting of the extension is to run in a separate process from the search process.
|
useisfilter
|
Flag indicating if the default setting of the extension is to test for the availability of a registered IFilter instead of the extension (if one is available).
|
Example:
<?xml version="1.0"?>
<InterpreterConfig xmlns="http://www.mythicsoft.com/FileLocator">
<displayname>ZIP</displayname>
<uniquename>http://www.mythicsoft.com/zipinterpreter</uniquename>
<progid>Extensions.ZIPInterpreter</progid>
<filetypes>zip</filetypes>
<interpretertype>compositefile</interpretertype>
<active>no</active>
<safemode>no</safemode>
<useisfilter>no</useisfilter>
</InterpreterConfig>
|