Changes between Version 2 and Version 3 of adeiService_search

Show
Ignore:
Author:
csa (IP: 141.52.232.84)
Timestamp:
08/28/09 16:08:07 (15 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • adeiService_search

    v2 v3  
    1 == search =
     1= Search
    22 
    33 Service performs searches for various information in ADEI and source databases. 
    1313Everything besides search string is optional. By default if the type is not specified, the search for channel and group names is performed. 
    1414 
    15 The search type is specified in the beginning of the search string. The search module available in the ''classes/search'' should be indicated (name of the class should be specified). Optional options for the class constructor could be indicated as well. The foolowing format is expected: 
     15The search type is specified in the curly brackets in the beginning of the search string. The search module available in the ''classes/search'' should be indicated (name of the class should be specified). Optional options for the class constructor could be indicated as well. If multiple modules are specified, the multiple searches are performed sequentially. The following format is expected: 
    1616  {{{ {module_name(opt1=value1,opt=value2), another_module(...)} }}} 
     17 
     18The global options are going next to the search type and specified in the square brackets. This options then passed to the search modules with the search string and handled by the module code. The following options are supported: 
     19 * ''='' - Exact match, default behavior is to match  
     20 * ''w'' - Word match 
     21 * ''~'' - Fuzzy match 
     22 
     23