home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / Search.idq < prev    next >
Text File  |  1997-11-01  |  4KB  |  123 lines

  1. #
  2. # This is the query file for the search.asp query form.
  3. #
  4.  
  5. [Query]
  6.  
  7. # The CiCatalog variable must point to where the catalog (index) files
  8. # are stored on your system.  You will probably have to change this
  9. # value.  If this value is not specified, a default value is read from
  10. # the registry from:
  11. # HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ContentIndex\IsapiDefaultCatalogDirectory
  12.  
  13. # CiCatalog=c:\index     <= COMMENTED OUT - default registry value used
  14.  
  15.  
  16. # These are the columns that are referenced in the .htx files
  17. # when formatting output for each hit.
  18.  
  19. CiColumns=filename,size,rank,characterization,vpath,DocTitle,write
  20.  
  21. # Do a recursive search (ie all directories under CiScope).
  22. # The opposite is SHALLOW
  23.  
  24. CiFlags=DEEP
  25.  
  26. # The CiRestriction is the query.  Here, it's just pass in from the
  27. # form in the .htm file.
  28.  
  29. CiRestriction=%CiRestriction%
  30.  
  31. # Don't allow more than 300 total hits in the result set.  It can be
  32. # expensive for the server to allow this value to get too large.
  33.  
  34. CiMaxRecordsInResultSet=300
  35.  
  36. # Display CiMaxRecordsPerPage hits on each page of output
  37.  
  38. CiMaxRecordsPerPage=%CiMaxRecordsPerPage%
  39.  
  40. # CiScope is the directory (virtual or real) under which results are
  41. # returned.  If a file matches the query but is not in a directory beneath
  42. # CiScope, it is not returned in the result set.
  43. # A scope of / means all hits matching the query are returned.
  44.  
  45. CiScope=%CiScope%
  46.  
  47. # This is the .htx file to use for formatting the results of the query.
  48.  
  49. CiTemplate=/iissamples/ExAir/Search/%TemplateName%.htx
  50.  
  51. # This is the list of property names to use in sorting the results.
  52. # Append [a] or [d] to the property name to specify ascending or
  53. # descending.  Separate keys in multi-key sorts with commas.
  54. # For example, to sort on file write date ascending, then file size
  55. # descending, use CiSort=write[a],filesize[d]
  56.  
  57. CiSort=%CiSort%
  58.  
  59. # Setting CiForceUseCi to true means that the index is assumed to be
  60. # up to date, so queries that might otherwise force a walk of the
  61. # directory structure (find files older than X), will instead use
  62. # the index and run more quickly.  Of course, that means that the results
  63. # might miss files that match the query.
  64.  
  65. CiForceUseCi=false
  66.  
  67.  
  68. #
  69. # Setting CiLocale allows the web master to override the locale sent from
  70. # the browser.  Supported locals include (from ISO 639:1988 language codes
  71. # and ISO 3166 country codes):
  72. #
  73. #   BG        Bulgarian
  74. #   ZH        Chinese
  75. #   ZH-CN     Chinese/china
  76. #   ZH-TW     Chinese/taiwan
  77. #   HR        Croatian
  78. #   CS        Czech
  79. #   DA        Danish
  80. #   NL        Dutch
  81. #   EN        English
  82. #   EN-GB     English-United kingdom
  83. #   EN-US     English-United States
  84. #   FI        Finnish
  85. #   FR        French
  86. #   FR-CA     French-Canadian
  87. #   FR-FR     French-France
  88. #   DE        German
  89. #   EL        Greek
  90. #   IS        Icelandic
  91. #   IT        Italian
  92. #   JA        Japanese
  93. #   KO        Korean
  94. #   NO        Norwegian
  95. #   PL        Polish
  96. #   PT        Portuguese
  97. #   PT-BR     Portuguese-Brazil
  98. #   RO        Romanian
  99. #   RU        Russian
  100. #   SK        Slovak
  101. #   SL        Slovenian
  102. #   ES        Spanish
  103. #   ES-ES     Spanish-Spain
  104. #   SV        Swedish
  105. #   TR        Turkish
  106. #
  107. # The locale effects the formatting of dates, times, and numbers.  Currency
  108. # is formatted according to the locale of the web server.  Locale is also
  109. # used to select the word breaker, and the stop word list.
  110. #
  111. # The web master may want to allow the browser to send the locale when
  112. # attempting to query for text in variety of languages.  For example,
  113. # given a single HTML page, one query couold be for German text (CiLocale=De)
  114. # and another could be for Spanish text (CiLocale=Es). If CiLocale is
  115. # not found in the IDQ file the locale send by the web browser is used.  If
  116. # no locale is send from the browser, the locale of the web server is used.
  117. #
  118. # The web browser sends its locale via the HTTP_ACCEPT_LANGUAGE parameter
  119. #
  120. #CiLocale=En-US         <== specified by the web master
  121. #CiLocale=%CiLocale%    <== send from the HTML page
  122. #CiLocale=              <== value used from the web browser
  123.