Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
5.0 KiB

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