Ignore:
Timestamp:
2000-08-03T14:49:41+12:00 (24 years ago)
Author:
johnmcp
Message:

Relatively stable z39.50 implementation now, merged with the mgpp source.
(Still needs a decent interface and query language though...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/z3950-branch/gsdl/src/recpt/querytools.cpp

    r759 r1342  
    2222 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2323 *
    24  * $Id$
    25  *
    2624 *********************************************************************/
    27 
    28 /*
    29    $Log$
    30    Revision 1.8  1999/11/01 21:56:12  sjboddie
    31    changes for cross-collection searching - still needs work
    32 
    33    Revision 1.7  1999/09/21 11:32:42  sjboddie
    34    added Maxdocs queryfilter option which may be -1 for 'all'
    35 
    36    Revision 1.6  1999/09/07 04:56:58  sjboddie
    37    added GPL notice
    38 
    39    Revision 1.5  1999/08/25 04:47:55  sjboddie
    40    added advanced search option - other minor changes
    41 
    42    Revision 1.4  1999/07/19 00:16:58  sjboddie
    43    no longer display documents that don't match all phrases in query string
    44 
    45    Revision 1.3  1999/07/16 00:19:02  sjboddie
    46    some changes to the way quoted queries are handled
    47 
    48    Revision 1.2  1999/07/07 06:12:21  rjmcnab
    49    Added ability to combine two independant queries.
    50 
    51    Revision 1.1  1999/06/15 02:24:06  sjboddie
    52    moved do_query from queryaction to new querytools module (as do_action
    53    is also called from documentaction when highlighting text)
    54 
    55  */
    56 
    5725
    5826#include "querytools.h"
     
    9967    option.name = "Language";
    10068    option.value = args["n"];
     69    request.filterOptions.push_back (option);
     70  }
     71 
     72  if (!args["g"].empty()) { // granularity for mgpp
     73    option.name = "Level";
     74    option.value = args["g"];
    10175    request.filterOptions.push_back (option);
    10276  }
     
    163137  option.value = arg_m;
    164138  request.filterOptions.push_back (option);
    165  
     139
    166140  //  option.name = "StartResults";
    167141  //  option.value = args["r"];
     
    238212  }
    239213}
    240 
Note: See TracChangeset for help on using the changeset viewer.