#495 XML 포맷 정비

* skin.xml 정비
  * 모듈간 HTML 출력 통일

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4393 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-07-20 07:42:25 +00:00
parent 195240bb6e
commit 493cad88df
108 changed files with 2799 additions and 2167 deletions

View file

@ -34,7 +34,7 @@
<th scope="row">{$lang->module_license}</th>
<td>
{nl2br(trim($module_info->license))}
<!--@if($addon_info->license_link)-->
<!--@if($module_info->license_link)-->
<p><a href="{$module_info->license_link}" onclick="window.close(); return false;">{$module_info->license_link}</a></p>
<!--@end-->
</td>
@ -73,7 +73,13 @@
<!--@endif-->
<!--@if($history->logs)-->
<ul>
<!--@foreach($history->logs as $log)--><li>{$log}</li><!--@endforeach-->
<!--@foreach($history->logs as $log)-->
<!--@if($log->link)-->
<li><a href="{$log->text}" onclick="window.open(this.href);return false;">{$log->text}</a></li>
<!--@else-->
<li>{$log->text}</li>
<!--@endif-->
<!--@endforeach-->
</ul>
<!--@endif-->
</td>