설치된 파일과 설치된 버전의 공식 패키지의 파일을 비교하는 tool추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4374 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-07-16 09:57:29 +00:00
parent e3ec34e1aa
commit f1a891558e
7 changed files with 259 additions and 1 deletions

View file

@ -0,0 +1,92 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="Generator" content="XE" />
<title>XE Cache Cleaner</title>
<link rel="stylesheet" href="./style.css" type="text/css" charset="UTF-8" media="all" />
</head>
<body>
<h1>XE File Validator</h1>
<hr />
<!--@if($msg)-->
<blockquote>{$msg}</blockquote>
<!--@end-->
<!--@if($source_cnt && $target_cnt)-->
<div class="back">[<a href="./">{$lang->cmd_back}</a>]</div>
<table>
<thead>
<tr>
<th>&nbsp;</th>
<th>{$lang->source_files}</th>
<th>{$lang->target_files}</th>
</tr>
</thead>
<tbody>
<tr>
<th>{$lang->current_version}</th>
<td colspan="2">{__ZBXE_VERSION__}</td>
</tr>
<tr>
<th>{$lang->released_version}</th>
<td colspan="2"><a href="{$download_link}" onclick="window.open(this.href);return false;">{$released_version}</a></td>
</tr>
<tr>
<th>{$lang->current_path}</th>
<td colspan="2">{_XE_PATH_}</td>
</tr>
<tr>
<th>{$lang->files_count}</th>
<td>{$source_cnt}</td>
<td>{$target_cnt}</td>
</tr>
<tr>
<th>{$lang->leaveout_files} ({count($leaveouts)})</th>
<td>
<!--@foreach($leaveouts as $val)-->
{$val}<br />
<!--@end-->
</td>
<td></td>
</tr>
<tr>
<th>{$lang->modified_files} ({count($modified)})</th>
<td>&nbsp;</td>
<td>
<!--@foreach($modified as $val)-->
{$val}<br />
<!--@end-->
</td>
</tr>
<tr>
<th>{$lang->additional_files} ({count($added)})</th>
<td>&nbsp;</td>
<td>
<!--@foreach($added as $val)-->
{$val}<br />
<!--@end-->
</td>
</tr>
</tbody>
</table>
<!--@else-->
<form action="./index.php" method="post">
<code>
<label for="db_id">{$lang->db_userid}</label>
<input type="text" id="db_id" name="id" />
</code>
<code>
<label for="db_pw">{$lang->db_password}</label>
<input type="password" id="db_pw" name="pw" />
</code>
<input type="submit" value="validate" class="submit"/>
</form>
<!--@end-->
</body>
</html>