1. 게시물 관리에서 이동 복사시 분유없음 추가 및 bugfix

2. 에디터 모드 쿠키 기억
3. 비밀글 기능 옵션으로 (게시물 댓글)
4. 에디터 컴포넌트 사용하지 않을때 도움말 없앰
5. 첨부시 용량 제한 표기 오류 fix

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5091 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2008-12-16 06:21:06 +00:00
parent 91f8519086
commit 769ee33f57
19 changed files with 92 additions and 23 deletions

View file

@ -20,7 +20,7 @@
</td>
</tr>
<!--@if($module_info->is_default!='Y')-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->is_default}</div></th>
<td>
<input type="checkbox" name="is_default" value="Y" <!--@if($module_info->is_default=='Y')-->checked="checked"<!--@end--> id="fld_for_default" class="checkbox" />
@ -43,7 +43,7 @@
</tr>
<!--@if(!$module_srls)-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->browser_title}</div></th>
<td>
<input type="text" name="browser_title" value="{htmlspecialchars($module_info->browser_title)}" class="inputTypeText w400" />
@ -64,7 +64,7 @@
<p>{$lang->about_layout}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->skin}</div></th>
<td>
<select name="skin">
@ -82,7 +82,7 @@
<label for="fld_for_category">{$lang->about_use_category}</label>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->order_target}</div></th>
<td>
<select name="order_target">
@ -102,7 +102,7 @@
</select>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->list_count}</div></th>
<td>
<input type="text" name="list_count" value="{$module_info->list_count?$module_info->list_count:20}" class="inputTypeText" />
@ -116,7 +116,7 @@
<p>{$lang->about_search_list_count}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->page_count}</div></th>
<td>
<input type="text" name="page_count" value="{$module_info->page_count?$module_info->page_count:10}" class="inputTypeText" />
@ -130,13 +130,20 @@
<p>{$lang->about_except_notice}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->consultation}</div></th>
<td>
<input type="checkbox" name="consultation" value="Y" <!--@if($module_info->consultation=='Y')-->checked="checked"<!--@end--> />
<p>{nl2br($lang->about_consultation)}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->secret}</div></th>
<td>
<input type="checkbox" name="secret" value="Y" <!--@if($module_info->secret=='Y')-->checked="checked"<!--@end--> />
<p>{nl2br($lang->about_secret)}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->admin_mail}</div></th>
<td>
@ -144,7 +151,7 @@
<p>{$lang->about_admin_mail}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->description}</div></th>
<td>
<textarea name="description" class="inputTypeTextArea fixWidth">{htmlspecialchars($module_info->description)}</textarea>
@ -158,7 +165,7 @@
<p>{$lang->about_header_text}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->footer_text}</div></th>
<td>
<textarea name="footer_text" class="inputTypeTextArea fixWidth">{htmlspecialchars($module_info->footer_text)}</textarea>
@ -172,7 +179,7 @@
<p>{$lang->about_admin_id}</p>
</td>
</tr>
<tr class="row2">
<tr>
<td colspan="2" class="center">
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
<span class="button"><input type="button" value="{$lang->cmd_back}" onclick="history.back(); return false;" /></span>
@ -198,7 +205,7 @@
<!--@end-->
<table cellspacing="0" class="adminTable ">
<caption>{$lang->extra_vars} {$i}</caption>
<tr class="row2">
<tr>
<th><div>{$lang->column_name}</div></th>
<td class="wide"><input type="text" name="extra_vars_{$i}_name" value="{$extra_vars_name}" class="inputTypeText w200" /> </td>
</tr>
@ -214,7 +221,7 @@
</select>
</td>
</tr>
<tr class="row2">
<tr>
<th><div>{$lang->is_required}</div></th>
<td><input type="checkbox" name="extra_vars_{$i}_is_required" value="Y" <!--@if($extra_vars_is_required=='Y')-->checked="checked"<!--@end--> /></td>
</tr>
@ -222,7 +229,7 @@
<th><div>{$lang->default_value}</div></th>
<td><input type="text" name="extra_vars_{$i}_default" value="{$extra_vars_default_value}" class="inputTypeText w400" /><p>{$lang->about_extra_vars_default_value}</p></td>
</tr>
<tr class="row2">
<tr>
<th><div>{$lang->description}</div></th>
<td><input type="text" name="extra_vars_{$i}_desc" value="{$extra_vars_desc}" class="inputTypeText w400" /></td>
</tr>
@ -230,7 +237,7 @@
<th><div>{$lang->cmd_search}</div></th>
<td><input type="checkbox" name="extra_vars_{$i}_search" value="Y" <!--@if($extra_vars_search=='Y')-->checked="checked"<!--@end--> /></td>
</tr>
<tr class="row2">
<tr>
<td colspan="2" class="right"><span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span></div></th>
</tr>
</table>
@ -239,3 +246,6 @@
</form>
<script type="text/javascript">//<![CDATA[
jQuery(function(){ jQuery("table.adminTable tr:nth-child(even)").attr('class','row2');});
//]]></script>