Changes between Version 2 and Version 3 of adeiService_search
- Timestamp:
- 08/28/09 16:08:07 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
adeiService_search
v2 v3 1 = = search ==1 = Search = 2 2 3 3 Service performs searches for various information in ADEI and source databases. 13 13 Everything besides search string is optional. By default if the type is not specified, the search for channel and group names is performed. 14 14 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:15 The 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: 16 16 {{{ {module_name(opt1=value1,opt=value2), another_module(...)} }}} 17 18 The 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