1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!--
- HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>Search Logical Files</title>
- <style type="text/css">
- body { background-color: #white;}
- table { padding:3px; }
- .number { text-align:right; }
- .sbutton { width: 5em; font: 10pt arial , helvetica, sans-serif; }
- </style>
- <script language="JavaScript1.2">
- function format2(n)
- {
- return new String(Math.floor(n/10))+ new String(n%10);
- }
- </script>
- </head>
- <body>
- <h4>Open Logical File:</h4>
- <form action="/WsDfu/DFUInfo" method="GET">
- <table>
- <tr>
- <td>File Name:</td>
- <td>
- <input name="Name" size="25" type="text"/>
- </td>
- <td>
- <input type="submit" value="Open" class="sbutton"/>
- </td>
- </tr>
- </table>
- </form>
- <br/>
- <br/>
- <h4>Search Logical Files:</h4>
- <form action="/WsDfu/DFUQuery" method="POST"">
- <table>
- <tr>
- <td>Owner:</td>
- <td>
- <input name="Owner" size="20" type="text"/>
- </td>
- </tr>
- <tr>
- <td>File Type:</td>
- <td>
- <select id="FileType" name="FileType">
- <option value="Logicalonly">Logical Files Only</option>
- <option value="Superfileonly">Superfiles Only</option>
- <option value="Both" selected>Logical Files and Superfiles</option>
- </select>
- </td>
- </tr>
- <tr>
- <td>File Name Pattern:</td>
- <td>
- <input name="LogicalName" size="25" type="text"/>
- </td>
- </tr>
- <tr>
- <td>Example Patterns:</td>
- <td>
- <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>
- </td>
- </tr>
- <tr>
- <td>
- <input type="submit" value="Find" class="sbutton"/>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|