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.

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