위젯 검출 정규 표현식을 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-01 10:28:42 +00:00
parent f9896fe51a
commit 90aa62a6ac
993 changed files with 9190 additions and 10457 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<module version="0.1">
<module version="0.1" category="manager">
<title xml:lang="ko">레이아웃</title>
<title xml:lang="zh-CN">布局</title>
<title xml:lang="jp">レイアウト</title>

View file

@ -1,7 +1,14 @@
<!--#include("header.html")-->
<!-- 레이아웃의 목록 -->
<table cellspacing="0" class="tableType1">
<table cellspacing="0" class="adminTable">
<col />
<col width="50"/>
<col width="120"/>
<col width="60"/>
<col width="70"/>
<col width="140"/>
<col width="80"/>
<thead>
<tr>
<th scope="col">{$lang->layout_name}</th>
@ -32,7 +39,7 @@
</tr>
<tr>
<td colspan="6" class="left">
{nl2br($val->author->description)}
{nl2br(trim($val->author->description))}
</td>
</tr>
<!-- 레이아웃 정보 파일(conf/info.xml)이 없는 경우 -->

View file

@ -8,7 +8,14 @@
</form>
<!-- 목록 -->
<table cellspacing="0" class="tableType1">
<table cellspacing="0" class="adminTable">
<col width="50" />
<col width="100" />
<col />
<col width="70" />
<col width="110" />
<col width="110" />
<col width="50" />
<thead>
<tr>
<th scope="col">{$lang->no}</th>

View file

@ -4,7 +4,7 @@
<form action="./" method="get" onsubmit="return procFilter(this, insert_layout)">
<table cellspacing="0" class="tableType2 gap1">
<table cellspacing="0" class="adminTable">
<col width="150" />
<col />
<tr>
@ -20,14 +20,15 @@
<tr>
<th scope="row">{$lang->title}</th>
<td>
<input type="text" name="title" value="{$info->title}" class="inputTypeText w100" />
<input type="text" name="title" value="{$info->title}" class="inputTypeText w400" />
<p>{$lang->about_title}</p>
</td>
</tr>
<tr>
<th scope="row" colspan="2" class="button">
<span class="button"><input type="submit" value="{$lang->cmd_next}" accesskey="s" /></span>
</th>
</tr>
</table>
<div class="tRight gap1">
<span class="button"><input type="submit" value="{$lang->cmd_next}" accesskey="s" /></span>
</div>
</form>

View file

@ -3,7 +3,7 @@
</div>
<div id="popBody">
<table cellspacing="0" class="tableType5">
<table cellspacing="0" class="adminTable">
<col width="100" />
<col />
<tr>
@ -24,7 +24,7 @@
</tr>
<tr>
<th scope="row">{$lang->description}</th>
<td>{nl2br($layout_info->author->description)}</td>
<td>{nl2br(trim($layout_info->author->description))}</td>
</tr>
</table>
</div>

View file

@ -3,29 +3,21 @@
<!--#include("header.html")-->
<table cellspacing="0" class="tableType3 gap1">
<thead>
<tr>
<th scope="col">{$selected_layout->title} ver {$selected_layout->version} ({$selected_layout->layout})</th>
</tr>
</thead>
<table cellspacing="0" class="adminTable">
<caption>{$selected_layout->title} ver {$selected_layout->version} ({$selected_layout->layout})</caption>
<tbody>
<tr>
<td class="left blue">{nl2br($lang->about_layout_code)}</td>
<td>{nl2br($lang->about_layout_code)}</td>
</tr>
</tbody>
</table>
<table cellspacing="0" class="widgetBox gap1">
<col width="80" />
<col />
<table cellspacing="0" class="adminTable">
<caption>{$lang->widget}</caption>
<tr>
<th>{$lang->widget}</th>
<td>
<!--@foreach($widget_list as $widget)-->
<div class="fl gap1">
<a href="{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$widget->widget,'module_srl',$module_srl)}" onclick="popopen(this.href,'GenerateCodeInPage');return false;" class="button"><span>{$widget->title}</span></a>
</div>
<a href="{getUrl('','module','widget','act','dispWidgetGenerateCode','selected_widget',$widget->widget,'module_srl',$module_srl)}" onclick="popopen(this.href,'GenerateCodeInPage');return false;" class="button"><span>{$widget->title}</span></a>
<!--@end-->
</td>
</tr>

View file

@ -2,7 +2,7 @@
<!--#include("header.html")-->
<table cellspacing="0" class="tableType2 gap1">
<table cellspacing="0" class="adminTable">
<col width="150" />
<col />
<tr>
@ -22,7 +22,7 @@
<!--@if($selected_layout->author->description)-->
<tr>
<th scope="row">{$lang->description}</th>
<td>{nl2br($selected_layout->author->description)}</td>
<td>{nl2br(trim($selected_layout->author->description))}</td>
</tr>
<!--@end-->
</table>
@ -34,13 +34,13 @@
<input type="hidden" name="layout_srl" value="{$layout_srl}" />
<input type="hidden" name="layout" value="{$selected_layout->layout}" />
<table cellspacing="0" class="tableType3 gap1">
<table cellspacing="0" class="adminTable">
<col width="150" />
<col width="*" />
<tr>
<th scope="row">{$lang->title}</th>
<td class="left">
<input type="text" name="title" value="{htmlspecialchars($selected_layout->layout_title)}" class="inputTypeText w100" />
<input type="text" name="title" value="{htmlspecialchars($selected_layout->layout_title)}" class="inputTypeText w400" />
<p>{$lang->about_title}</p>
</td>
</tr>
@ -50,10 +50,10 @@
<td class="left">
<!--@if($var->type == "text")-->
<input type="text" name="{$name}" value="{htmlspecialchars($var->value)}" class="inputTypeText w100"/>
<input type="text" name="{$name}" value="{htmlspecialchars($var->value)}" class="inputTypeText w400"/>
<!--@elseif($var->type == "textarea")-->
<textarea name="{$name}" class="inputTypeTextArea w100">{htmlspecialchars($var->value)}</textarea>
<textarea name="{$name}" class="inputTypeTextArea w400">{htmlspecialchars($var->value)}</textarea>
<!--@elseif($var->type=="image")-->