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.

175 lines
5.2 KiB

  1. <HTML>
  2. <!--
  3. This is the formatting page for query results. This file defines
  4. how the result page header, rows, and footer will appear.
  5. -->
  6. <HEAD>
  7. <TITLE>Unfiltered documents</TITLE>
  8. </HEAD>
  9. <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#000066" VLINK="#808080" ALINK="#FF0000" TOPMARGIN=0>
  10. <TABLE>
  11. <TR>
  12. <TD><IMG SRC ="/srchadm/book08.jpg" ALIGN=Middle></TD>
  13. <TD VALIGN=MIDDLE><H1>Index Server</H1><br><center><h2>Search Results</h2></center></TD>
  14. </TR>
  15. </TABLE>
  16. <!-- Print a header that lists the query and the number of hits -->
  17. <H5>
  18. <%if CiMatchedRecordCount eq 0%>
  19. All documents have been successfully filtered.
  20. <%else%>
  21. Documents in this list failed to filter. Possible causes include document corruption,
  22. property set corruption and password protection.
  23. <%endif%>
  24. </H5>
  25. <!--
  26. This table has a link to a new query page, a previous button, and
  27. a next page button. The buttons are only displayed when appropriate.
  28. -->
  29. <TABLE WIDTH=80%>
  30. <!-- Define a "previous" button if this isn't the first page -->
  31. <%if CiContainsFirstRecord eq 0%>
  32. <TD ALIGN=LEFT>
  33. <FORM ACTION="/scripts/srchadm/unfilt.idq" METHOD="GET">
  34. <INPUT TYPE="HIDDEN"
  35. NAME="CiBookMark" VALUE="<%CiBookMark%>" >
  36. <INPUT TYPE="HIDDEN"
  37. NAME="CiBookmarkSkipCount" VALUE="-<%EscapeRAW CiMaxRecordsPerPage%>" >
  38. <INPUT TYPE="SUBMIT"
  39. VALUE="Previous <%CiMaxRecordsPerPage%> documents">
  40. </FORM>
  41. </TD>
  42. <%endif%>
  43. <!-- Define a "next" button if this isn't the last page -->
  44. <%if CiContainsLastRecord eq 0%>
  45. <TD ALIGN=RIGHT>
  46. <FORM ACTION="/scripts/srchadm/unfilt.idq" METHOD="GET">
  47. <INPUT TYPE="HIDDEN"
  48. NAME="CiBookMark" VALUE="<%CiBookMark%>" >
  49. <INPUT TYPE="HIDDEN"
  50. NAME="CiBookmarkSkipCount" VALUE="<%EscapeRAW CiMaxRecordsPerPage%>" >
  51. <INPUT TYPE="SUBMIT"
  52. VALUE="Next <%CiRecordsNextPage%> documents">
  53. </FORM>
  54. </TD>
  55. <%endif%>
  56. </TABLE>
  57. <HR>
  58. <!--
  59. The begindetail/enddetail section describes how each row of output
  60. is be formatted. The sample below prints:
  61. - record number
  62. - document title (if one exists) or virtual path of the file
  63. - the abstract for the file
  64. - the url for the file
  65. - the file's size and last write time
  66. -->
  67. <table>
  68. <tr>
  69. <th width=147 align="left">Virtual Path</th>
  70. <th width=147 align="left">Physical Path</th>
  71. <th width=147 align="left">Last Written</th>
  72. </tr>
  73. <%begindetail%>
  74. <tr>
  75. <td><a href="<%EscapeURL vpath%>"><%vpath%></a></td>
  76. <td><%path%></td>
  77. <td><%if write ne ""%><%write%> GMT<%endif%></td>
  78. </tr>
  79. <%enddetail%>
  80. </table>
  81. <P>
  82. <!-- Only display a line if there were any hits that matched the query -->
  83. <%if CiMatchedRecordCount ne 0%>
  84. <HR>
  85. <%endif%>
  86. <TABLE WIDTH=80%>
  87. <TD> <A HREF="/srchadm/admin.htm">Administration Main Menu</A> </TD>
  88. <!-- Define a "previous" button if this isn't the first page -->
  89. <%if CiContainsFirstRecord eq 0%>
  90. <TD ALIGN=LEFT>
  91. <FORM ACTION="/scripts/srchadm/unfilt.idq" METHOD="GET">
  92. <INPUT TYPE="HIDDEN"
  93. NAME="CiBookMark" VALUE="<%CiBookMark%>" >
  94. <INPUT TYPE="HIDDEN"
  95. NAME="CiBookmarkSkipCount" VALUE="-<%EscapeRAW CiMaxRecordsPerPage%>" >
  96. <INPUT TYPE="HIDDEN"
  97. NAME="CiRestriction" VALUE="<%CiRestriction%>" >
  98. <INPUT TYPE="HIDDEN"
  99. NAME="CiMaxRecordsPerPage" VALUE="<%CiMaxRecordsPerPage%>" >
  100. <INPUT TYPE="SUBMIT"
  101. VALUE="Previous <%CiMaxRecordsPerPage%> documents">
  102. </FORM>
  103. </TD>
  104. <%endif%>
  105. <!-- Define a "next" button if this isn't the last page -->
  106. <%if CiContainsLastRecord eq 0%>
  107. <TD ALIGN=RIGHT>
  108. <FORM ACTION="/scripts/srchadm/unfilt.idq" METHOD="GET">
  109. <INPUT TYPE="HIDDEN"
  110. NAME="CiBookMark" VALUE="<%CiBookMark%>" >
  111. <INPUT TYPE="HIDDEN"
  112. NAME="CiBookmarkSkipCount" VALUE="<%EscapeRAW CiMaxRecordsPerPage%>" >
  113. <INPUT TYPE="HIDDEN"
  114. NAME="CiRestriction" VALUE="<%CiRestriction%>" >
  115. <INPUT TYPE="HIDDEN"
  116. NAME="CiMaxRecordsPerPage" VALUE="<%CiMaxRecordsPerPage%>" >
  117. <INPUT TYPE="SUBMIT"
  118. VALUE="Next <%CiRecordsNextPage%> documents">
  119. </FORM>
  120. </TD>
  121. <%endif%>
  122. </TABLE>
  123. <P><BR>
  124. <!--
  125. If the index is out of date (for example, if it's still being created
  126. or updated after changes to files in an indexed directory) let the
  127. user know.
  128. -->
  129. <%if CiOutOfDate ne 0%>
  130. <P><BR>
  131. <I><B>The index is out of date.</B></I>
  132. <%endif%>
  133. <!--
  134. If the query was not executed because it needed to enumerate to
  135. resolve the query instead of using the index, but CiForceUseCi
  136. was TRUE, let the user know
  137. -->
  138. <%if CiQueryIncomplete eq 1%>
  139. <P><BR>
  140. <I><B>The query is too expensive to complete.</B></I>
  141. <%endif%>
  142. </HTML>