searchfile.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!--
  2. HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  14. <head>
  15. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  16. <title>Search Logical Files</title>
  17. <style type="text/css">
  18. body { background-color: #white;}
  19. table { padding:3px; }
  20. .number { text-align:right; }
  21. .sbutton { width: 5em; font: 10pt arial , helvetica, sans-serif; }
  22. </style>
  23. <script language="JavaScript1.2">
  24. function format2(n)
  25. {
  26. return new String(Math.floor(n/10))+ new String(n%10);
  27. }
  28. </script>
  29. </head>
  30. <body>
  31. <h4>Open Logical File:</h4>
  32. <form action="/WsDfu/DFUInfo" method="GET">
  33. <table>
  34. <tr>
  35. <td>File Name:</td>
  36. <td>
  37. <input name="Name" size="25" type="text"/>
  38. </td>
  39. <td>
  40. <input type="submit" value="Open" class="sbutton"/>
  41. </td>
  42. </tr>
  43. </table>
  44. </form>
  45. <br/>
  46. <br/>
  47. <h4>Search Logical Files:</h4>
  48. <form action="/WsDfu/DFUQuery" method="POST"">
  49. <table>
  50. <tr>
  51. <td>Owner:</td>
  52. <td>
  53. <input name="Owner" size="20" type="text"/>
  54. </td>
  55. </tr>
  56. <tr>
  57. <td>File Type:</td>
  58. <td>
  59. <select id="FileType" name="FileType">
  60. <option value="Logicalonly">Logical Files Only</option>
  61. <option value="Superfileonly">Superfiles Only</option>
  62. <option value="Both" selected>Logical Files and Superfiles</option>
  63. </select>
  64. </td>
  65. </tr>
  66. <tr>
  67. <td>File Name Pattern:</td>
  68. <td>
  69. <input name="LogicalName" size="25" type="text"/>
  70. </td>
  71. </tr>
  72. <tr>
  73. <td>Example Patterns:</td>
  74. <td>
  75. <UI><LI>All files - leave it blank or *<LI>Files beginning with "thor::key" - thor::key*<LI>Files containing "key::" - *key::*<LI> Files ending with "header" - *header <LI>Files matching "thor::key::header" exactly - thor::key::header</UL>
  76. </td>
  77. </tr>
  78. <tr>
  79. <td>
  80. <input type="submit" value="Find" class="sbutton"/>
  81. </td>
  82. </tr>
  83. </table>
  84. </form>
  85. </body>
  86. </html>