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

This commit is contained in:
zero 2007-03-30 07:11:26 +00:00
parent cfae38adb5
commit 58f4735c46
11 changed files with 97 additions and 94 deletions

View file

@ -1,3 +1,4 @@
@charset "utf-8";
.plugin_detail_info_window {
width:600px;
clear:both;

View file

@ -1,33 +1,33 @@
<!-- 플러그인의 목록 -->
<div>
<table border="1" width="100%">
<tr>
<td>{$lang->plugin_name}</td>
<td>{$lang->version}</td>
<td>{$lang->author}</td>
<td>{$lang->date}</td>
<td>{$lang->path}</td>
<td>{$lang->cmd_generate_code}</td>
<td>{$lang->plugin_info}</td>
</tr>
<!--@foreach($plugin_list as $key => $val)-->
<tr>
<td rowspan="2">
{$val->title} <br />
({$val->plugin})
</td>
<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->path}</td>
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispGenerateCode','selected_plugin',$val->plugin)}','plugin_code_generate','width=10,height=10,toolbars=no,scrollbars=no,resizable=yes,left=10,top=10');return false">{$lang->cmd_generate_code}</a></td>
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispPluginInfo','selected_plugin',$val->plugin)}','plugin_info','width=10,height=10,toolbars=no,scrollbars=no,resizable=yes,left=10,top=10');return false">{$lang->cmd_view}</a></td>
</tr>
<tr>
<td colspan="6">
{nl2br($val->author->description)}
</td>
</tr>
<!--@end-->
</table>
<table border="1" width="100%">
<tr>
<td>{$lang->plugin_name}</td>
<td>{$lang->version}</td>
<td>{$lang->author}</td>
<td>{$lang->date}</td>
<td>{$lang->path}</td>
<td>{$lang->cmd_generate_code}</td>
<td>{$lang->plugin_info}</td>
</tr>
<!--@foreach($plugin_list as $key => $val)-->
<tr>
<td rowspan="2">
{$val->title} <br />
({$val->plugin})
</td>
<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->path}</td>
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispPluginGenerateCode','selected_plugin',$val->plugin)}','plugin_code_generate','width=10,height=10,toolbars=no,scrollbars=no,resizable=yes,left=10,top=10');return false">{$lang->cmd_generate_code}</a></td>
<td><a href="#" onclick="winopen('{getUrl('','module','plugin','act','dispPluginInfo','selected_plugin',$val->plugin)}','plugin_info','width=10,height=10,toolbars=no,scrollbars=no,resizable=yes,left=10,top=10');return false">{$lang->cmd_view}</a></td>
</tr>
<tr>
<td colspan="6">
{nl2br($val->author->description)}
</td>
</tr>
<!--@end-->
</table>
</div>

View file

@ -1,7 +1,7 @@
<filter name="generate_code" module="plugin" act="procGenerateCode">
<response callback_func="completeGenerateCode">
<tag name="error" />
<tag name="message" />
<tag name="plugin_code" />
</response>
<filter name="generate_code" module="plugin" act="procPluginGenerateCode">
<response callback_func="completeGenerateCode">
<tag name="error" />
<tag name="message" />
<tag name="plugin_code" />
</response>
</filter>

View file

@ -1,7 +1,7 @@
<filter name="generate_code_in_page" module="plugin" act="procGenerateCode">
<response callback_func="completeGenerateCodeInPage">
<tag name="error" />
<tag name="message" />
<tag name="plugin_code" />
</response>
<filter name="generate_code_in_page" module="plugin" act="procPluginGenerateCode">
<response callback_func="completeGenerateCodeInPage">
<tag name="error" />
<tag name="message" />
<tag name="plugin_code" />
</response>
</filter>