Explorar el Código

Fix gh-795 Remove extra file: useradd.html

This file is only used by EE code. LN gh-156 has added it
into EE folder. This fix removes it from HPCC-Platform.

Signed-off-by: Kevin Wang <kevin.wang@lexisnexis.com>
Kevin Wang hace 13 años
padre
commit
b54ba9019b
Se han modificado 2 ficheros con 0 adiciones y 56 borrados
  1. 0 1
      esp/files/CMakeLists.txt
  2. 0 55
      esp/files/useradd.html

+ 0 - 1
esp/files/CMakeLists.txt

@@ -49,7 +49,6 @@ FOREACH( iFILES
     ${CMAKE_CURRENT_SOURCE_DIR}/submitNavForm.html
     ${CMAKE_CURRENT_SOURCE_DIR}/tabularForm.xslt
     ${CMAKE_CURRENT_SOURCE_DIR}/transformDlg.html
-    ${CMAKE_CURRENT_SOURCE_DIR}/useradd.html
     ${CMAKE_CURRENT_SOURCE_DIR}/esp_app_tree.html
     ${CMAKE_CURRENT_SOURCE_DIR}/esp_app.html
 )

+ 0 - 55
esp/files/useradd.html

@@ -1,55 +0,0 @@
-<!--
-##############################################################################
-#    Copyright (C) 2011 HPCC Systems.
-#
-#    All rights reserved. This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero General Public License as
-#    published by the Free Software Foundation, either version 3 of the
-#    License, or (at your option) any later version.
-#
-#    This program is distributed in the hope that it will be useful,
-#    but WITHOUT ANY WARRANTY; without even the implied warranty of
-#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-##############################################################################
--->
-
-<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" xml:lang="en" lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-<title>Add User</title>
-            <script language="JavaScript1.2">
-                function checkfields(f)
-                {
-                    if(f.username.value != '' && f.password1.value != '' && f.password2.value != '')
-                    {
-                        f.S1.disabled=false;
-                    }
-                    else
-                    {
-                            f.S1.disabled=true;
-                    }
-                }
-            </script>
-</head>
-<body><form xmlns="" method="POST" action="/ws_access/AddUser"/>
-<table xmlns="" name="table1">
-<tr>
-<th colspan="2">
-<h3>Add User</h3>
-</th>
-</tr>
-        <tr><td><b>User ID: </b></td><td><input type="text" name="username" size="20" onKeyPress="checkfields(this.form)"/></td></tr>
-        <tr><td><b>First Name: </b></td><td><input type="text" name="firstname" size="20" value="" onKeyPress="checkfields(this.form)" onChange="checkfields(this.form)"/></td></tr>
-        <tr><td><b>Last Name: </b></td><td><input type="text" name="lastname" size="20" value="" onKeyPress="checkfields(this.form)"/></td></tr>
-        <tr><td><b>Password: </b></td><td><input type="password" name="password1" size="20" value="" onKeyPress="checkfields(this.form)" onChange="checkfields(this.form)"/></td></tr>
-        <tr><td><b>Retype password: </b></td><td><input type="password" name="password2" size="20" value="" onKeyPress="checkfields(this.form)" onChange="checkfields(this.form)"/></td></tr>
-        <tr><td></td><td><input type="submit" value="Submit" disabled="form.username.value=''" name="S1" /> &nbsp; <input type="reset" value="Clear"  onClick="S1.disabled='true'"/> </td>  
-</TABLE>
-</form>
-
-</body>
-</html>