Remove unnecessary files

This commit is contained in:
Kijin Sung 2025-05-31 12:15:56 +09:00
parent 7f6553fd47
commit f9d93450aa
2 changed files with 0 additions and 68 deletions

View file

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<ruleset version="1.5.0">
<customrules>
</customrules>
<fields>
<field name="ftp_host" required="true" default="127.0.0.1" />
<field name="ftp_user" required="true" />
<field name="ftp_port" required="true" filter="number" default="21" />
<field name="ftp_root_path" required="true" />
<field name="sftp" required="true" />
</fields>
</ruleset>

View file

@ -1,56 +0,0 @@
<include target="header.html" />
<form id="body" action="./" method="post" onsubmit="return doInstallFTPInfo(this);" id="ftp_form">
<include target="progress_menu.html" />
<div id="content">
<h2>{$lang->install_progress_menu['ftp']}</h2>
<div class="x_control-group">
<label for="ftphost" class="x_control-label">{$lang->ftp_host}</label>
<div class="x_controls">
<input name="ftp_host" value="{$server_ip_address}" type="text" id="ftphost" />
</div>
</div>
<div class="x_control-group">
<label for="ftpport" class="x_control-label">{$lang->ftp_port}</label>
<div class="x_controls">
<input name="ftp_port" type="text" id="ftpport" value="21" />
</div>
</div>
<div class="x_control-group">
<label for="ftpid" class="x_control-label">{$lang->user_id}</label>
<div class="x_controls">
<input name="ftp_user" type="text" id="ftpid" class="focus" value="{$server_ftp_user}" />
</div>
</div>
<div class="x_control-group">
<label for="ftppw" class="x_control-label">{$lang->password}</label>
<div class="x_controls">
<input name="ftp_password" type="password" id="ftppw" value="" />
</div>
</div>
<div class="x_control-group">
<label for="ftppath" class="x_control-label">{$lang->msg_ftp_installed_ftp_realpath}</label>
<div class="x_controls">
<input name="ftp_root_path" value="{$ftp_info->ftp_root_path}" type="text" id="ftppath" />
</div>
</div>
<p class="install_help">{$lang->msg_ftp_installed_realpath}: {\RX_BASEDIR}</p>
<p>
<button type="button" class="x_btn x_btn-small" id="task-ftp-list" onclick="getFTPList();return false;">{$lang->ftp_get_list}</button>
<button type="button" class="x_btn x_btn-small x_btn-inverse" id="task-ftp-check" onclick="doCheckFTPInfo();return false">{$lang->cmd_check_ftp_connect}</button>
</p>
<ul id="ftplist"></ul>
<p class="install_help">{$lang->install_ftp_reason}</p>
</div>
<div id="buttons">
<div class="align-left">
<a href="{getUrl('', 'act','dispInstallCheckEnv')}" class="button grey">&laquo; {$lang->cmd_back}</a>
</div>
<div class="align-right">
<button type="submit" id="task-ftp-skip" value="">{$lang->cmd_pass_step} &raquo;</button>
<button type="submit" id="task-ftp-confirm" value="">{$lang->cmd_next} &raquo;</button>
</div>
</div>
</form>
<include target="footer.html" />