home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / FAQ / cgi-bin / discus4_00 / source / indxerr.tmpl < prev    next >
Text File  |  2009-11-06  |  3KB  |  87 lines

  1. # FILE: indxerr.tmpl
  2. # DESCRIPTION: Indexing error (duplicate files)
  3. # Copyright (c) 2002, DiscusWare, LLC, all rights reserved
  4. # -------------------------------------------------------------------------------------------
  5.  
  6. <!--BEGIN-->
  7. <html>
  8. <head>
  9. <title>Indexing Error - Duplicate Files Detected</title>
  10. <style>
  11. body { font: 10pt verdana,arial,helvetica }
  12. p { margin-left: 2pt; }
  13. p.note { font: 14pt Verdana,Arial,Helvetica; text-align: center; margin-bottom: 0pt; }
  14. p.head { font: bold 10pt Verdana,Arial,Helvetica; border-bottom: thin #0000aa solid; margin-right: 20pt;}
  15. p.drop { font: bold 10pt Verdana,Arial,Helvetica; margin-left: 2pt; margin-top: 1pt;}
  16. p.blbar {margin-left: 0pt; font: 11pt verdana,arial,helvetica; color: #ffff00; background-color: #000000; width: 100% }
  17. .surround {border: thin black inset; width: 100%; font: 10pt verdana,arial,helvetica }
  18. p.rdbar {margin-left: 0pt; font: 11pt verdana,arial,helvetica; color: #000000; background-color: #ffcccc; width: 100% }
  19. .rdsurround {border: thin red inset; width: 100%; font: 10pt verdana,arial,helvetica }
  20. .normal {font: 10pt verdana,arial,helvetica}
  21. .comment {font: 9pt verdana,arial,helvetica; margin-left: 20pt; }
  22. td.bb {font: bold 9pt verdana,arial,helvetica; }
  23. td.nb {font: 9pt verdana,arial,helvetica; }
  24. </style>
  25. </head>
  26.  
  27. <body bgcolor="#ffffff" text="#000000" link="#0000FF" vlink="#0000FF">
  28.  
  29. <p class="note">Duplicate Files Detected</p>
  30.  
  31. <p>
  32. Indexing has detected that there
  33. <#if $general->{count} == 1#>
  34.     is 1 occurrence
  35. <#else#>
  36.     are $general->{count} occurrences
  37. <#endif#>
  38. of duplicated page numbers on your board.
  39. </p>
  40.  
  41. <ul>
  42. <#foreach $file (@list)#>
  43.     <li>$file->{filename}</li>
  44. <#endloop#>
  45. </ul>
  46.  
  47. <p>
  48. If you are currently in the process of upgrading or performing data recovery, you
  49. may continue without fixing this problem.  When you have finished the upgrade, you
  50. should go to Data Recovery, click the "Pages" tab, and run the "Page Rebuild and Cleanup"
  51. utility to fix this problem.
  52. </p>
  53.  
  54. <p>
  55. If you are reindexing your board manually, you should first fix this problem and then
  56. reindex your board.
  57. </p>
  58.  
  59. <table>
  60. <tr>
  61.  
  62. <td valign=top align=center>
  63. <form action="$cgiurl" method="post">
  64. <input type=hidden name="action" value="dr_pgr">
  65. <input type=hidden name="username" value="$arg->{username}">
  66. <input type=hidden name="maint" value="1">
  67. <input type=hidden name="spot" value="0">
  68. <input type=submit value="Fix Now (Recommended)" style="font-weight: bold">
  69. </form>
  70. </td>
  71.  
  72. <td valign=top align=center>
  73. <form action="$cgiurl" method="post">
  74. <input type=hidden name="menu" value="$arg->{menuaction}">
  75. <input type=hidden name="action" value="dr_indexing">
  76. <input type=hidden name="username" value="$arg->{username}">
  77. <input type=hidden name="tempfile" value="$arg->{tempfile}">
  78. <input type=submit value="Ignore (Fix Later)">
  79. </form>
  80. </td>
  81.  
  82.  
  83. </tr>
  84. </table>
  85. </body></html>
  86. <!--END-->
  87.