git-svn-id: http://xe-core.googlecode.com/svn/trunk@258 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-06 00:32:01 +00:00
parent 95a7a0650f
commit e764f5947a
5 changed files with 9 additions and 49 deletions

View file

@ -20,7 +20,15 @@
<td>{$val->version}</td>
<td><a href="#" onclick="window.open('{$val->author->homepage}')">{$val->author->name}</a></td>
<td>{$val->author->date}</td>
<td>{$val->created_table_count}/{$val->table_count}</td>
<td>
<!--@if($val->created_table_count != $val->table_count)-->
<span style="color:red">
<!--@else-->
<span>
<!--@end-->
{$val->created_table_count}/{$val->table_count}
</span>
</td>
<td>{$val->path}</td>
</tr>
<tr>

View file

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<module version="0.1">
<title xml:lang="ko">로그</title>
<title xml:lang="en">log</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="en">zero</name>
<description xml:lang="ko">로그 관리 모듈</description>
<description xml:lang="en">log</description>
</author>
</module>

View file

@ -1,11 +0,0 @@
<?php
/**
* @class log
* @author zero (zero@nzeo.com)
* @brief log 모듈의 high class
**/
class log extends ModuleObject {
}
?>

View file

@ -1,18 +0,0 @@
<?php
/**
* @class logController
* @author zero (zero@nzeo.com)
* @brief log 모듈의 controller class
* @todo 미구현
**/
class logController extends log {
/**
* @brief 초기화
**/
function init() {
}
}
?>

View file

@ -1,8 +0,0 @@
<table name="log">
<column name="log_srl" type="number" size="11" notnull="notnull" primary_key="primary_key" />
<column name="mid" type="varchar" size="100" notnull="notnull" index="idx_mid" />
<column name="act" type="varchar" size="100" notnull="notnull" index="idx_act" />
<column name="srl" type="number" size="11" notnull="notnull" default="0" />
<column name="ipaddress" type="varchar" size="128" notnull="notnull" />
<column name="regdate" type="date" notnull="notnull" />
</table>