Beoard XE Default Skin - List 1

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4705 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2008-10-28 02:48:37 +00:00
parent 95649deccd
commit a6d427e857
37 changed files with 1336 additions and 948 deletions

View file

@ -87,7 +87,7 @@ ul.localNavigation li a:hover { color:#000000; }
ul.localNavigation li.on { background-position:left top; top:0; height:25px; } ul.localNavigation li.on { background-position:left top; top:0; height:25px; }
ul.localNavigation li.on a { background-position:right top; padding:8px 15px 5px 10px; height:25px; color:#222227; font-weight:bold; } ul.localNavigation li.on a { background-position:right top; padding:8px 15px 5px 10px; height:25px; color:#222227; font-weight:bold; }
#popHeadder, #popHistoryHeadder { background:url("../images/n_title_bg.gif") repeat-x left top; padding:10px; } #popHeadder, #popHistoryHeadder { margin-bottom:10px;}
#popHeadder h1, #popHistoryHeadder h1 { background:url("../images/top_head_title_bg.gif") repeat-x left top; font-size:1em; border:1px solid #E3E3E2; padding:9px; color:#555555; margin:0; } #popHeadder h1, #popHistoryHeadder h1 { background:url("../images/top_head_title_bg.gif") repeat-x left top; font-size:1em; border:1px solid #E3E3E2; padding:9px; color:#555555; margin:0; }
#popBody, #popHistoryBody { width:600px; padding:10px; background:#ffffff;} #popBody, #popHistoryBody { width:600px; padding:10px; background:#ffffff;}
#popHistoryBody { height: 200px; overflow: auto; padding-right:0; } #popHistoryBody { height: 200px; overflow: auto; padding-right:0; }

View file

@ -0,0 +1,3 @@
<!-- 하단 텍스트 출력 -->
{$module_info->footer_text}
</div>

View file

@ -0,0 +1,122 @@
<!--// JS 파일 로드 -->
<!--%import("js/board.js")-->
<!--// 컬러셋 체크 -->
<!--@if(!$module_info->colorset)-->
{@$module_info->colorset = "white"}
<!--@end-->
<!--// CSS 파일 로드 (컬러셋에 따라서) -->
<!--%unload("../../../../common/css/default.css")-->
<!--%import("css/boardTemplate.css",optimized=false)-->
<!--%import("css/paginationTemplate.css",optimized=false)-->
<!--@if($module_info->colorset == "black")--> <!--%import("css/black.css",optimized=false)-->
<!--@else--> <!--%import("css/white.css",optimized=false)-->
<!--@end-->
<!--// 스킨 설정중 새글의 시간 설정 값이 없으면 임의로 지정 -->
<!--@if(!$module_info->duration_new = (int)$module_info->duration_new)-->
{@ $module_info->duration_new = 12 }
<!--@end-->
<!--// 스킨 설정중 썸네일 관련 항목을 지정 -->
<!--@if(!$module_info->thumbnail_type)-->{@ $module_info->thumbnail_type = 'crop'; }<!--@end-->
<!--@if(!$module_info->thumbnail_width)-->{@ $module_info->thumbnail_width = 100; }<!--@end-->
<!--@if(!$module_info->thumbnail_height)-->{@ $module_info->thumbnail_height = 100; }<!--@end-->
<!--// 정렬에 따른 아이콘 미리 지정 -->
<!--@if($order_type == "desc")-->
{@ $order_icon = "buttonDescending.gif" }
{@ $order_type = "asc"; }
<!--@else-->
{@ $order_icon = "buttonAscending.gif" }
{@ $order_type = "desc"; }
<!--@end-->
<!--// 사용자가 선택한 게시판 형태에 따른 설정(포럼형은 적용 안됨) -->
<!--@if($module_info->default_style != 'forum' && $module_info->default_style != 'blog')-->
<!--@if($listStyle=='gallery')-->
{@ $module_info->default_style = 'gallery'}
<!--@elseif($listStyle=='webzine')-->
{@ $module_info->default_style = 'webzine'}
<!--@elseif($listStyle=='list')-->
{@ $module_info->default_style = 'list'}
<!--@end-->
<!--@end-->
<!--// 상단 텍스트 출력 -->
{$module_info->header_text}
<div class="board">
<div class="boardHeader">
<!-- 스킨의 제목/간단한 설명 출력 -->
<!--@if($module_info->title)-->
<div class="boardTitle">
<h3 class="boardTitleText"><a href="{getUrl('','mid',$mid,'listStyle',$listStyle)}">{$module_info->title}<!--@if($module_info->sub_title)--> : <em>{$module_info->sub_title}</em><!--@end--></a></h3>
</div>
<!--@end-->
<!-- 스킨의 상세 설명 -->
<!--@if($module_info->comment)-->
<p class="boardDescription">{$module_info->comment}
<span class="roundCorner topLeft"></span><span class="roundCorner topLeft"></span>
</p>
<!--@end-->
</div>
<!-- 게시판 정보 -->
<!--@if($module_info->display_login_info != 'N' || $module_info->display_setup_button != 'N')-->
<div class="boardInformation">
<!-- 게시물 수 -->
<!--@if($total_count && $module_info->default_style != 'blog')-->
<div class="infoLeft">{$lang->document_count} <strong>{number_format($total_count)}</strong></div>
<!--@end-->
<div class="infoRight">
<!-- 로그인 정보 -->
<ul>
<!--// 로그인 되어 있을 경우 -->
<!--@if($is_logged)-->
<!--// 관리자이면 설정 버튼 출력 -->
<!--@if($grant->is_admin && $module_info->display_setup_button != 'N')-->
<li class="setup"><a href="{getUrl('act','dispBoardAdminBoardInfo')}">{$lang->cmd_setup}</a></li>
<!--@end-->
<!--// 최고관리자이면 관리자 페이지 버튼 출력 -->
<!--@if($logged_info->is_admin == 'Y' && $module_info->display_setup_button != 'N')-->
<li class="admin"><a href="{getUrl('','module','admin','act','dispBoardAdminContent')}" onclick="window.open(this.href); return false;">{$lang->cmd_management}</a></li>
<!--@end-->
<!--// 회원정보 버튼 출력 -->
<!--@if($module_info->display_login_info != 'N')-->
<li class="myInfo"><a href="{getUrl('act','dispMemberInfo')}">{$lang->cmd_view_member_info}</a></li>
<li class="loginAndLogout"><a href="{getUrl('act','dispMemberLogout')}">{$lang->cmd_logout}</a></li>
<!--@end-->
<!--// 로그인 되어 있지 않고 회원정보 버튼 출력하도록 되어있으면 -->
<!--@elseif(!$is_logged && $module_info->display_login_info != 'N')-->
<li class="join"><a href="{getUrl('act','dispMemberSignUpForm')}">{$lang->cmd_signup}</a></li>
<li class="loginAndLogout"><a href="{getUrl('act','dispMemberLoginForm')}">{$lang->cmd_login}</a></li>
<!--@end-->
<!--@if($rss_url)-->
<li class="rss icon"><a href="{$rss_url}" title="RSS"><span>RSS</span></a></li>
<!--@end-->
<li class="tag_info icon"><a href="{getUrl('act','dispBoardTagList')}" title="Tag List"><span>Tag List</span></a></li>
<!--// 목록형태 (포럼형/ 블로그형이 기본으로 되어 있을 경우 다른 형태를 지정 못하게 함) -->
<!--@if($module_info->default_style != 'forum' && $module_info->default_style != 'blog')-->
<li class="listTypeClassic icon"><a href="{getUrl('listStyle','list','act','','document_srl','')}" title="Classic Board"><span>Classic Board</span></a></li>
<li class="listTypeZine icon"><a href="{getUrl('listStyle','webzine','act','','document_srl','')}" title="Web Zine"><span>Web Zine</span></a></li>
<li class="listTypeGallery icon"><a href="{getUrl('listStyle','gallery','act','','document_srl','')}" title="Gallery"><span>Gallery</span></a></li>
<!--@end-->
<li class="contributors icon"><a href="{getUrl('','module','module','act','dispModuleSkinInfo','selected_module',$module_info->module, 'skin', $module_info->skin)}" onclick="popopen(this.href,'skinInfo'); return false;" title="Contributors"><span>Contributors</span></a></li>
</ul>
</div>
</div>
<!--@end-->

View file

@ -1,66 +1,66 @@
<!--#include("header.html")--> <!--#include("_header.html")-->
<!--// 만약 댓글의 답을 다는 것이라면 원문 보여줌 --> <!--// 만약 댓글의 답을 다는 것이라면 원문 보여줌 -->
<!--@if($oSourceComment->isExists())--> <!--@if($oSourceComment->isExists())-->
<div class="replyBox"> <div class="replyBox">
<div class="replyItem"> <div class="replyItem">
<div class="author"><div class="member_{$oSourceComment->getMemberSrl()}">{$oSourceComment->getNickName()}</div></div> <div class="author"><div class="member_{$oSourceComment->getMemberSrl()}">{$oSourceComment->getNickName()}</div></div>
<div class="date"> <div class="date">
{$oSourceComment->getRegdate("Y.m.d H:i")} {$oSourceComment->getRegdate("Y.m.d H:i")}
<!--@if($grant->is_admin)--> <!--@if($grant->is_admin)-->
({$oSourceComment->get('ipaddress')}) ({$oSourceComment->get('ipaddress')})
<!--@end--> <!--@end-->
</div> </div>
<div class="clear"></div> <div class="clear"></div>
<div class="replyContent gap1"> <div class="replyContent gap1">
{$oSourceComment->getContent(false)} {$oSourceComment->getContent(false)}
</div> </div>
</div> </div>
</div> </div>
<!--@end--> <!--@end-->
<!-- 글쓰기 폼 --> <!-- 글쓰기 폼 -->
<!--%import("filter/insert_comment.xml")--> <!--%import("filter/insert_comment.xml")-->
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" > <form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="boardEditor" >
<input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" /> <input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" />
<input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" /> <input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" />
<input type="hidden" name="content" value="{htmlspecialchars($oComment->get('content'))}" /> <input type="hidden" name="content" value="{htmlspecialchars($oComment->get('content'))}" />
<input type="hidden" name="parent_srl" value="{$oComment->get('parent_srl')}" /> <input type="hidden" name="parent_srl" value="{$oComment->get('parent_srl')}" />
<div class="boardWrite commentEditor"> <div class="boardWrite commentEditor">
<div class="userNameAndPw"> <div class="userNameAndPw">
<!--@if(!$is_logged)--> <!--@if(!$is_logged)-->
<label for="userName">{$lang->writer}</label> <label for="userName">{$lang->writer}</label>
<input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/> <input type="text" name="nick_name" value="{$oComment->get('nick_name')}" class="userName inputTypeText" id="userName"/>
<label for="userPw">{$lang->password}</label> <label for="userPw">{$lang->password}</label>
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" /> <input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
<label for="emailAddress">{$lang->email_address}</label> <label for="emailAddress">{$lang->email_address}</label>
<input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/> <input type="text" name="email_address" value="{htmlspecialchars($oComment->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
<label for="homePage">{$lang->homepage}</label> <label for="homePage">{$lang->homepage}</label>
<input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/> <input type="text" name="homepage" value="{htmlspecialchars($oComment->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
<!--@else--> <!--@else-->
<input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" /> <input type="checkbox" name="notify_message" value="Y" <!--@if($oComment->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
<label for="notify_message">{$lang->notify}</label> <label for="notify_message">{$lang->notify}</label>
<!--@end--> <!--@end-->
<input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" /> <input type="checkbox" name="is_secret" value="Y" <!--@if($oComment->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
<label for="is_secret">{$lang->secret}</label> <label for="is_secret">{$lang->secret}</label>
</div> </div>
<div class="editor">{$oComment->getEditor()}</div> <div class="editor">{$oComment->getEditor()}</div>
</div> </div>
<div class="commentButton tRight"> <div class="commentButton tRight">
<span class="button"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'"/></span> <span class="button"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'"/></span>
<span class="button"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span> <span class="button"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
</div> </div>
</form> </form>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

View file

@ -0,0 +1,196 @@
@charset "utf-8";
/* NHN > UIT Center > Open UI Platform Team > Jeong Chan Myeong(dece24@nhncorp.com) */
body{ background:#fff;}
.displayNone{ display:none;}
/* Board Reset */
.board{ font-family:"나눔고딕", NanumGothic, "맑은 고딕", MalgunGothic, AppleGothic, "돋움", Dotum, "굴림", Gulim, Tahoma, Sans-serif; font-size:.8em;}
.board *{ font-size:1em;}
.board img{ border:0;}
/* Board Header */
.boardHeader{}
.boardHeader *{ margin:0; padding:0;}
.boardHeader .boardTitle{ font-size:1.5em; letter-spacing:-.1em; margin-bottom:10px; border-bottom:3px solid #ddd; *zoom:1; background:url(../images/white/iconBoardHeading.gif) no-repeat left center;}
.boardHeader .boardTitle:after{ content:""; display:block; clear:both;}
.boardHeader .boardTitleText{ float:left; clear:both; margin-bottom:-3px; padding:5px 15px 5px 22px; border-bottom:3px solid #666; background:url(../images/white/lineVr11.gif) no-repeat right bottom;}
.boardHeader .boardTitleText a{ color:#000; text-decoration:none;}
.boardHeader .boardTitleText em{ font-style:normal; font-weight:normal; color:#666;}
.boardHeader .boardDescription{ position:relative; padding:7px 15px; -moz-border-radius:3px; -webkit-border-radius:3px; background:#f8f8f8; }
/* Board Information */
.boardInformation{ position:relative; width:100%; padding:10px 0; font-size:.85em; line-height:normal; *zoom:1;}
.boardInformation *{ margin:0; padding:0;}
.boardInformation:after{ content:""; display:block; float:none; clear:both;}
.boardInformation ul{ position:relative; overflow:hidden;}
.boardInformation li{ list-style:none; position:relative; left:-1px; display:block; float:left; padding:0 7px; background:url(../images/white/lineVr11.gif) no-repeat left center;}
.boardInformation em,
.boardInformation strong{ color:#ff6600;}
.boardInformation strong{ font:bold 11px Tahoma;}
.boardInformation a{ text-decoration:none; color:#000;}
.boardInformation a:hover,
.boardInformation a:active,
.boardInformation a:focus{ text-decoration:underline;}
.boardInformation .infoLeft{ padding-left:18px; float:left; background:url(../images/white/iconArticle.gif) no-repeat left center;}
.boardInformation .infoRight{ float:right;}
.boardInformation .infoRight li.icon{ background:none; padding:0; margin-right:3px;}
.boardInformation .infoRight li.icon a{ display:block; float:left; width:12px; height:12px; overflow:hidden;}
.boardInformation .infoRight li.icon a span{ display:block; width:12px; height:12px; position:relative; z-index:-1; visibility:hidden;}
.boardInformation .infoRight li.rss a{ background:url(../images/white/iconRss.gif) no-repeat;}
.boardInformation .infoRight li.tag_info a{ background:url(../images/white/iconTags.gif) no-repeat;}
.boardInformation .infoRight li.listTypeClassic a{ background:url(../images/white/listTypeClassic.gif) no-repeat;}
.boardInformation .infoRight li.listTypeZine a{ background:url(../images/white/listTypeZine.gif) no-repeat;}
.boardInformation .infoRight li.listTypeGallery a{ background:url(../images/white/listTypeGallery.gif) no-repeat;}
.boardInformation .infoRight li.contributors a{ background:url(../images/white/iconContributors.gif) no-repeat;}
/* Board List Form */
.boardListForm{ margin:0; line-height:normal;}
.boardListForm *{ margin:0; padding:0;}
.boardListForm fieldset{ border:0; position:relative; clear:both;}
.boardListForm fieldset:after{ content:""; display:block; float:none; clear:both;}
.boardListForm legend{ position:absolute; width:0; height:0; overflow:hidden; font:0/0 Sans-serif; visibility:hidden;}
.boardListForm em,
.boardListForm strong{ font-style:normal; color:#ff6600;}
.boardListForm a{ text-decoration:none; color:#000;}
.boardListForm a:hover,
.boardListForm a:active,
.boardListForm a:focus{ text-decoration:underline;}
/* Board List */
.boardList{ border:0; border-top:1px solid #ddd; border-bottom:1px solid #ddd; width:100%;}
.boardList .inputCheck{ width:13px; height:13px;}
.boardList .jumpTo{ float:left;}
.boardList .jumpTo *{ vertical-align:middle; *vertical-align:top;}
.boardList .jumpTo select{ font-size:12px; *margin-right:5px;}
.boardList .jumpTo button{ border:0; padding:0; margin:0; width:22px; height:20px; text-align:center; background:url(../images/white/buttonBg2byte.gif) no-repeat; font-size:11px; letter-spacing:-1px; cursor:pointer; line-height:20px;}
.boardList tr.notice{ background:#f8f8f8;}
.boardList tr.bg1{ background:#fff;}
.boardList tr.bg2{ background:#fbfbfb;}
.boardList th{ border:0; border-bottom:1px solid #fff; padding:7px; white-space:nowrap; text-align:center; color:#333; background:#fff url(../images/white/bgThDefault.gif) repeat-x left bottom; line-height:normal;}
.boardList th a{ color:#1978AD;}
.boardList th a .sort{ vertical-align:middle; margin:0 5px;}
.boardList td{ border:0; border-top:1px solid #eee; padding:6px; white-space:nowrap; text-align:center; color:#666; line-height:normal;}
.boardList td.num{ font:11px Tahoma;}
.boardList td.check{ font:11px Tahoma;}
.boardList td .category{ color:#000;}
.boardList td.title{ width:100%; white-space:normal; text-align:left;}
.boardList td.title .replyNum{ font:11px Tahoma; color:#ccc;}
.boardList td.title .replyNum sup{ font:10px Tahoma; color:#999;}
.boardList td.author{}
.boardList td.vCount{ text-align:right; font:11px Tahoma;}
.boardList td.rCount{ text-align:right; font:11px Tahoma;}
.boardList td.date{ font:11px Tahoma;}
#popup_menu_area{ position:absolute;}
.boardNavigation{ position:relative; padding:10px 0; *zoom:1; text-align:center;}
.boardNavigation:after{ content:""; display:block; float:none; clear:both;}
.boardNavigation .pagination{ padding:5px 0;}
.boardNavigation .buttonLeft{ float:left; text-align:left;}
.boardNavigation .buttonRight{ float:right; text-align:right;}
.boardSearchForm{ margin:0; font-size:.75em; line-height:normal;}
.boardSearchForm *{ margin:0; padding:0;}
.boardSearchForm fieldset{ border:0; position:relative; clear:both; text-align:center;}
.boardSearchForm fieldset:after{ content:""; display:block; float:none; clear:both;}
.boardSearchForm fieldset *{ vertical-align:middle;}
.boardSearchForm legend{ position:absolute; width:0; height:0; overflow:hidden; font:0/0 Sans-serif; visibility:hidden;}
.boardSearchForm select{ font-size:12px; height:23px;}
.boardSearchForm .inputText{ border:1px solid #ccc; width:140px; height:15px; padding:4px 4px 2px 4px; font-size:12px; *margin:-1px 0;}
.boardRead{}
.boardReadHeader{ margin-bottom:5px; *zoom:1;}
.boardReadHeader:after{ content:""; display:block; float:none; clear:both;}
.boardReadHeader *{ margin:0; padding:0;}
.boardReadHeader .title{ float:left;}
.boardReadHeader em{ float:right; font-style:normal; font-weight:bold; font-size:1em;}
.boardReadHeader a{ text-decoration:none; color:#000; font-weight:bold; font-size:1em;}
.boardReadHeader a:hover,
.boardReadHeader a:active,
.boardReadHeader a:focus{ text-decoration:underline;}
.boardReadBody{ padding:15px 0; border-top:1px solid #ddd; border-bottom:1px solid #ddd; font-size:.75em; line-height:1.5em;}
.boardReadFooter{ padding:10px 0; *zoom:1; color:#666; line-height:1em; font:11px Tahoma;}
.boardReadFooter:after{ content:""; display:block; float:none; clear:both;}
.boardReadFooter *{ margin:0; padding:0;}
.boardReadFooter a{ color:#666;}
.boardReadFooter .footerLeft{ float:left;}
.boardReadFooter .footerRight{ float:right;}
.boardReadFooter dl{ clear:both; white-space:nowrap;}
.boardReadFooter dt{ display:inline; font-weight:bold;}
.boardReadFooter dd{ display:inline;}
.boardReadFooter .footerRight dl{ float:right;}
.boardReadFooter .footerRight dl.noBr{ position:relative; left:5px; float:right; clear:both; overflow:hidden; white-space:nowrap;}
.boardReadFooter .footerRight dl.noBr dt{ position:relative; left:-1px; padding-left:10px; background:url(../images/white/lineVr11.gif) no-repeat left center;}
.boardReadFooter .footerRight dl.noBr dd{ margin-right:5px;}
.boardRead .boardNavigation{ border-top:1px solid #ddd;}
.feedbackList{ position:relative; overflow:hidden; font-size:.75em; padding-top:15px; margin-bottom:10px; color:#666;}
.feedbackList *{ margin:0; padding:0;}
.feedbackList .title{ position:relative; font-weight:bold; font-size:1.5em; color:#000; margin-bottom:10px;}
.feedbackList .title strong{ color:#ff6600;}
.feedbackList dl{ position:relative; padding-top:10px; margin-bottom:10px; border-top:1px dashed #ddd;}
.feedbackList dt{ font-weight:bold; font-size:1.25em; margin-bottom:5px; color:#333;}
.feedbackList dd{ line-height:1.5em;}
.feedbackList dd.trackbackTitle{ font-weight:bold;}
.feedbackList dd.text{}
.feedbackList dd.time{ position:absolute; top:15px; right:0; font:11px Tahoma;}
.feedbackList dd a.delete{ font-weight:bold; color:#ff6600;}
.feedbackList a{ text-decoration:none;}
.feedbackList a:hover,
.feedbackList a:active,
.feedbackList a:focus{ text-decoration:underline;}
.replyForm{ padding:10px 20px 15px 20px; font-size:.75em; color:#666; margin-bottom:20px; background:#f4f4f4; -moz-border-radius:10px; -webkit-border-radius:10px;}
.replyForm *{ margin:0; padding:0;}
.replyForm fieldset{ border:0; position:relative;}
.replyForm fieldset:after{ content:""; display:block; float:none; clear:both;}
.replyForm legend{ position:absolute; width:0; height:0; overflow:hidden; font:0/0 Sans-serif; visibility:hidden;}
.replyForm .title{ font-weight:bold; font-size:1.5em; color:#000; margin-bottom:10px;}
.replyForm textarea{ position:relative; width:95%; height:150px; border:1px solid #ccc; font-size:1em; overflow:auto; padding:10px; margin-bottom:10px;}
.replyForm .inputText{ border:1px solid #ccc; padding:2px 4px 4px 4px; width:190px; height:15px; vertical-align:middle; *margin:-1px 0;}
.replyForm dl{ margin-bottom:10px;}
.replyForm dt{ width:80px; float:left; padding-top:6px; font-weight:bold;}
.replyForm dd{ margin-bottom:5px;}
.boardWrite{ font-size:.75em;}
.boardWrite *{ margin:0; padding:0;}
.boardWrite li{ list-style:none;}
.boardWrite fieldset{ border:0; position:relative;}
.boardWrite legend{ position:absolute; width:0; height:0; overflow:hidden; font:0/0 Sans-serif; visibility:hidden;}
.boardWrite dl:after{ content:""; display:block; float:none; clear:both;}
.boardWrite dt{ float:left; width:50px; margin-right:-50px; font-weight:bold; clear:left; padding-top:6px;}
.boardWrite dd{ margin-left:50px; clear:right;}
.boardWrite .boardWriteHeader .inputText{ width:96%; border:1px solid #ccc; padding:2px 4px 4px 4px; height:15px; *margin:-1px 0;}
.boardWrite .boardWriteHeader{ margin-bottom:10px;}
.boardWrite .boardWriteBody{ margin-bottom:10px;}
.boardWrite .boardWriteBody dt{ padding-top:30px;}
.boardWrite .boardWriteBody dd{ _zoom:1;}
.boardWrite .boardWriteBody .styleText,
.boardWrite .boardWriteBody .plainText,
.boardWrite .boardWriteBody .htmlText{ display:none;}
.boardWrite .boardWriteBody iframe,
.boardWrite .boardWriteBody textarea{ width:95%; height:300px; border:1px solid #ccc; padding:10px; overflow:auto; font-size:1em; margin-bottom:10px;}
.boardWrite .boardWriteBody .plainText textarea{ *margin:-1px 0;}
.boardWrite .boardWriteBody .active{ display:block;}
.boardWrite .boardWriteBody ul{ float:right; position:relative; right:4%;}
.boardWrite .boardWriteBody li{ float:left; background:#eee; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; -webkit-border-radius-topleft:5px; -webkit-border-radius-topright:5px; margin-left:5px;}
.boardWrite .boardWriteBody li a{ display:block; float:left; text-decoration:none; color:#000; height:20px; padding:7px 15px 0 15px; letter-spacing:-1px;}
.boardWrite .boardWriteBody li.active a{ font-weight:bold;}
.boardWrite .boardWriteFooter .inputFile{ width:97%; border:1px solid #ccc; padding:2px 4px 4px 4px; height:23px;}
.boardWrite .boardNavigation{ padding:10px 0; clear:both;}
/* Layer */
#waitingforserverresponse { border:2px solid #444444; font-weight:bold; color:#444444; padding: 7px 5px 5px 25px; background:#FFFFFF url("../tpl/images/loading.gif") no-repeat 5px 5px; top:40px; left:40px; position:absolute; z-index:100; visibility:hidden; }
#popup_menu_area{ position:absolute; background:#fff; border:2px solid #eee; -moz-border-radius:5px; -webkit-border-radius:5px; margin:0; padding:0;}
#popup_menu_area *{ margin:0; padding:0; list-style:none; font-size:12px; line-height:normal;}
#popup_menu_area ul{ border:1px solid #ddd; -moz-border-radius:5px; -webkit-border-radius:5px; padding:10px;}
#popup_menu_area li{ padding-left:20px; background-repeat:no-repeat; background-position:left center; margin-bottom:3px; *margin-bottom:-2px;}
#popup_menu_area li a{ text-decoration:none; color:#000;}
#popup_menu_area li a:hover,
#popup_menu_area li a:active,
#popup_menu_area li a:focus{ font-weight:bold; letter-spacing:-1px;}

View file

@ -0,0 +1,69 @@
@charset "utf-8";
/* NHN > UIT Center > Open UI Platform Team > Jeong Chan Myeong(dece24@nhncorp.com) */
/* Pagination Reset */
.pagination{ padding:15px 0; margin:0; text-align:center;}
.pagination *{ margin:0; padding:0;}
.pagination img{ border:0;}
.pagination a,
.pagination strong{ position:relative; display:inline-block; text-decoration:none; line-height:normal; color:#333; font-family:Tahoma, Sans-serif; vertical-align:middle;}
.pagination a:hover,
.pagination a:active,
.pagination a:focus{ background-color:#f4f4f4 !important; }
.pagination strong{ color:#ff6600 !important;}
.pagination a.prev,
.pagination a.prevEnd,
.pagination a.next,
.pagination a.nextEnd{ font-weight:normal !important; border:none !important; margin:0 !important; white-space:nowrap; }
/* Pagination A1 */
.pagination.a1 a,
.pagination.a1 strong{ margin:0 -4px; padding:1px 10px 1px 8px; border:none; border-left:1px solid #ccc; border-right:1px solid #ddd; font-weight:bold; font-size:12px; background:#fff;}
.pagination.a1 a.prev{ padding-left:10px; background:#fff url(../images/white/arrowPrevA1.gif) no-repeat left center; }
.pagination.a1 a.prevEnd{ padding-left:15px; background:#fff url(../images/white/arrowPrevEndA1.gif) no-repeat left center; }
.pagination.a1 a.next{ padding-right:10px; background:#fff url(../images/white/arrowNextA1.gif) no-repeat right center; }
.pagination.a1 a.nextEnd{ padding-right:15px; background:#fff url(../images/white/arrowNextEndA1.gif) no-repeat right center; }
/* Pagination A2 */
.pagination.a2 a,
.pagination.a2 strong{ margin:0 -4px; padding:0 10px 0 8px; font-weight:bold; font-size:11px; border:none; border-left:1px solid #ddd; border-right:1px solid #ccc; background:#fff; }
.pagination.a2 a.prev{ padding-left:10px; background:#fff url(../images/white/arrowPrevA1.gif) no-repeat left center; }
.pagination.a2 a.prevEnd{ padding-left:15px; background:#fff url(../images/white/arrowPrevEndA1.gif) no-repeat left center; }
.pagination.a2 a.next{ padding-right:10px; background:#fff url(../images/white/arrowNextA1.gif) no-repeat right center; }
.pagination.a2 a.nextEnd{ padding-right:15px; background:#fff url(../images/white/arrowNextEndA1.gif) no-repeat right center; }
/* Pagination B1 */
.pagination.b1 a,
.pagination.b1 strong{ margin:0 -2px; padding:2px 8px; font-weight:bold; font-size:12px;}
.pagination.b1 a.prev{ padding-left:16px; background:url(../images/white/arrowPrevB1.gif) no-repeat left center; }
.pagination.b1 a.next{ padding-right:16px; background:url(../images/white/arrowNextB1.gif) no-repeat right center; }
/* Pagination B2 */
.pagination.b2 a,
.pagination.b2 strong{ margin:0 -2px; padding:2px 6px; font-size:11px;}
.pagination.b2 a.prev{ padding-left:12px; background:url(../images/white/arrowPrevB1.gif) no-repeat left center; }
.pagination.b2 a.next{ padding-right:12px; background:url(../images/white/arrowNextB1.gif) no-repeat right center; }
/* Pagination C1 */
.pagination.c1 a,
.pagination.c1 strong{ margin:0 -2px; padding:2px 4px; font-size:12px;}
.pagination.c1 a.prev,
.pagination.c1 a.next{ display:inline-block; width:13px; height:14px; padding:3px 4px; margin:0;}
.pagination.c1 a.prev{ background:url(../images/white/arrowPrevC1.gif) no-repeat center;}
.pagination.c1 a.next{ background:url(../images/white/arrowNextC1.gif) no-repeat center;}
.pagination.c1 a.prev span,
.pagination.c1 a.next span{ position:absolute; width:0; height:0; overflow:hidden; visibility:hidden;}
/* Pagination C2 */
.pagination.c2 a,
.pagination.c2 strong{ margin:0 -2px; padding:2px 4px; font-size:11px;}
.pagination.c2 a.prev,
.pagination.c2 a.next{ display:inline-block; width:13px; height:14px; padding:3px 4px; margin:0;}
.pagination.c2 a.prev{ background:url(../images/white/arrowPrevC1.gif) no-repeat center;}
.pagination.c2 a.next{ background:url(../images/white/arrowNextC1.gif) no-repeat center;}
.pagination.c2 a.prev span,
.pagination.c2 a.next span{ position:absolute; width:0; height:0; overflow:hidden; visibility:hidden;}

View file

@ -1,24 +1,24 @@
<!--%import("filter/delete_comment.xml")--> <!--%import("filter/delete_comment.xml")-->
<!--#include("header.html")--> <!--#include("_header.html")-->
<div class="smallBox w268"> <div class="smallBox w268">
<div class="header"> <div class="header">
<h3>{$lang->confirm_delete}</h3> <h3>{$lang->confirm_delete}</h3>
</div> </div>
<form action="./" method="get" onsubmit="return procFilter(this, delete_comment)"> <form action="./" method="get" onsubmit="return procFilter(this, delete_comment)">
<input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" /> <input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" />
<input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" /> <input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" />
<div class="inputPassword tCenter"> <div class="inputPassword tCenter">
<span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span> <span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span>
<a href="{getUrl('act','','comment_srl','')}" class="button"><span>{$lang->cmd_cancel}</span></a> <a href="{getUrl('act','','comment_srl','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
</div> </div>
</form> </form>
</div> </div>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

View file

@ -1,23 +1,23 @@
<!--%import("filter/delete_document.xml")--> <!--%import("filter/delete_document.xml")-->
<!--#include("header.html")--> <!--#include("_header.html")-->
<div class="smallBox w268"> <div class="smallBox w268">
<div class="header"> <div class="header">
<h3>{$lang->confirm_delete}</h3> <h3>{$lang->confirm_delete}</h3>
</div> </div>
<form action="./" method="get" onsubmit="return procFilter(this, delete_document)"> <form action="./" method="get" onsubmit="return procFilter(this, delete_document)">
<input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="document_srl" value="{$document_srl}" /> <input type="hidden" name="document_srl" value="{$document_srl}" />
<div class="inputPassword tCenter"> <div class="inputPassword tCenter">
<span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span> <span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span>
<a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a> <a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
</div> </div>
</form> </form>
</div> </div>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

View file

@ -1,25 +1,25 @@
<!--%import("filter/delete_trackback.xml")--> <!--%import("filter/delete_trackback.xml")-->
<!--#include("header.html")--> <!--#include("_header.html")-->
<div class="smallBox w268"> <div class="smallBox w268">
<div class="header"> <div class="header">
<h3>{$lang->confirm_delete}</h3> <h3>{$lang->confirm_delete}</h3>
</div> </div>
<form action="./" method="get" onsubmit="return procFilter(this, delete_trackback)"> <form action="./" method="get" onsubmit="return procFilter(this, delete_trackback)">
<input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="document_srl" value="{$document_srl}" /> <input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="trackback_srl" value="{$trackback_srl}" /> <input type="hidden" name="trackback_srl" value="{$trackback_srl}" />
<div class="inputPassword tCenter"> <div class="inputPassword tCenter">
<span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span> <span class="button"><input type="submit" value="{$lang->cmd_delete}" accesskey="s" /></span>
<a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a> <a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
</div> </div>
</form> </form>
</div> </div>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 B

View file

@ -1,26 +1,26 @@
<!--%import("filter/input_password.xml")--> <!--%import("filter/input_password.xml")-->
<!--@if(!$form_include)--><!--#include("header.html")--><!--@end--> <!--@if(!$form_include)--><!--#include("_header.html")--><!--@end-->
<div class="smallBox w400"> <div class="smallBox w400">
<div class="header"> <div class="header">
<h3>{$lang->msg_input_password}</h3> <h3>{$lang->msg_input_password}</h3>
</div> </div>
<form action="./" method="get" onsubmit="return procFilter(this, input_password)"> <form action="./" method="get" onsubmit="return procFilter(this, input_password)">
<input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="document_srl" value="{$document_srl}" /> <input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="comment_srl" value="{$comment_srl}" /> <input type="hidden" name="comment_srl" value="{$comment_srl}" />
<div class="inputPassword"> <div class="inputPassword">
<input type="password" name="password" id="cpw" class="inputTypeText" /> <input type="password" name="password" id="cpw" class="inputTypeText" />
<span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span> <span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span>
<a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a> <a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_cancel}</span></a>
</div> </div>
</form> </form>
</div> </div>
<!--@if(!$form_include)--><!--#include("footer.html")--><!--@end--> <!--@if(!$form_include)--><!--#include("_footer.html")--><!--@end-->

View file

@ -1,5 +1,5 @@
<!--// header.html include --> <!--// header.html include -->
<!--#include("header.html")--> <!--#include("_header.html")-->
<!--// 검색을 위한 xml filter import--> <!--// 검색을 위한 xml filter import-->
<!--%import("filter/search.xml")--> <!--%import("filter/search.xml")-->
@ -24,10 +24,10 @@
<!--#include("./style.list.html")--> <!--#include("./style.list.html")-->
<!--@end--> <!--@end-->
<div class="boardBottom"> <div class="boardNavigation">
<!-- 글쓰기, 목록 버튼 --> <!-- 글쓰기, 목록 버튼 -->
<div class="leftButtonBox"> <div class="buttonLeft">
<!--@if($grant->is_admin)--> <!--@if($grant->is_admin)-->
<a href="{getUrl('','module','document','act','dispDocumentAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a> <a href="{getUrl('','module','document','act','dispDocumentAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
<!--@end--> <!--@end-->
@ -36,11 +36,10 @@
<!--@end--> <!--@end-->
</div> </div>
<div class="rightButtonBox"> <div class="buttonRight">
<a href="{getUrl('act','dispBoardWrite','document_srl','')}" class="button"><span>{$lang->cmd_write}</span></a> <a href="{getUrl('act','dispBoardWrite','document_srl','')}" class="button"><span>{$lang->cmd_write}</span></a>
</div> </div>
<!-- 페이지 네비게이션 --> <!-- 페이지 네비게이션 -->
<div class="pagination a1"> <div class="pagination a1">
<a href="{getUrl('page','','document_srl','','division',$division,'last_division',$last_division)}" class="prevEnd">{$lang->first_page}</a> <a href="{getUrl('page','','document_srl','','division',$division,'last_division',$last_division)}" class="prevEnd">{$lang->first_page}</a>
@ -54,28 +53,28 @@
<a href="{getUrl('page',$page_navigation->last_page,'document_srl','','division',$division,'last_division',$last_division)}" class="nextEnd">{$lang->last_page}</a> <a href="{getUrl('page',$page_navigation->last_page,'document_srl','','division',$division,'last_division',$last_division)}" class="nextEnd">{$lang->last_page}</a>
</div> </div>
</div>
<!-- 검색 --> <!-- 검색 -->
<!--@if($grant->view && $module_info->default_style != 'blog')--> <!--@if($grant->view && $module_info->default_style != 'blog')-->
<div class="boardSearch"> <form action="{getUrl()}" method="get" onsubmit="return procFilter(this, search)" id="fo_search" class="boardSearchForm">
<form action="{getUrl()}" method="get" onsubmit="return procFilter(this, search)" id="fo_search"> <fieldset>
<input type="hidden" name="mid" value="{$mid}" /> <legend>Board Search</legend>
<input type="hidden" name="category" value="{$category}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="category" value="{$category}" />
<select name="search_target">
<!--@foreach($search_option as $key => $val)--> <select name="search_target">
<option value="{$key}" <!--@if($search_target==$key)-->selected="selected"<!--@end-->>{$val}</option> <!--@foreach($search_option as $key => $val)-->
<!--@end--> <option value="{$key}" <!--@if($search_target==$key)-->selected="selected"<!--@end-->>{$val}</option>
</select> <!--@end-->
<input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" class="inputTypeText"/> </select>
<!--@if($last_division)--> <input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" class="inputText"/>
<a href="{getUrl('page',1,'document_srl','','division',$last_division,'last_division','')}" class="button"><span>{$lang->cmd_search_next}</span></a> <!--@if($last_division)-->
<!--@end--> <a href="{getUrl('page',1,'document_srl','','division',$last_division,'last_division','')}" class="button"><span>{$lang->cmd_search_next}</span></a>
<a href="#" onclick="xGetElementById('fo_search').submit();return false;" class="button"><span>{$lang->cmd_search}</span></a> <!--@end-->
<a href="{getUrl('','mid',$mid,'listStyle',$listStyle)}" class="button"><span>{$lang->cmd_cancel}</span></a> <span class="button"><button type="submit" onclick="xGetElementById('fo_search').submit();return false;">{$lang->cmd_search}</button></span>
</form> </fieldset>
</div> </form>
<!--@end--> <!--@end-->
</div>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

View file

@ -1,16 +1,16 @@
<!--#include("header.html")--> <!--#include("_header.html")-->
<div class="smallBox w268"> <div class="smallBox w268">
<div class="tCenter messageBox">{$message}</div> <div class="tCenter messageBox">{$message}</div>
<div class="gap1 tCenter"> <div class="gap1 tCenter">
<!--@if(!$is_logged)--> <!--@if(!$is_logged)-->
<a href="{getUrl('act','dispMemberLoginForm')}" class="button"><span>{$lang->cmd_login}</span></a> <a href="{getUrl('act','dispMemberLoginForm')}" class="button"><span>{$lang->cmd_login}</span></a>
<!--@end--> <!--@end-->
<a href="#" onclick="history.back(); return false;" class="button"><span>{$lang->cmd_back}</span></a> <a href="#" onclick="history.back(); return false;" class="button"><span>{$lang->cmd_back}</span></a>
</div> </div>
</div> </div>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

View file

@ -1,454 +1,454 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<skin version="0.2"> <skin version="0.2">
<title xml:lang="ko">XE 게시판 디폴트 스킨</title> <title xml:lang="ko">Zeroboard XE Default Skin.</title>
<description xml:lang="ko"> <description xml:lang="ko">
XE 게시판의 디폴트 스킨입니다. Zeroboard XE Default Skin.
HTML/CSS : 정찬명 (http://naradesign.net) Front-end : Jeong, Chan Myeong (http://naradesign.net/)
Other : SOL군 (http://ngleader.com) Back-end : Kim, Ye Sol (http://ngleader.com/)
</description> </description>
<version>0.1</version> <version>0.1</version>
<date>2008-10-27</date> <date>2008-10-27</date>
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com"> <author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
<name xml:lang="ko">zero</name> <name xml:lang="ko">zero</name>
</author> </author>
<colorset> <colorset>
<color name="white" src="screenshot/white.gif"> <color name="white" src="screenshot/white.gif">
<title xml:lang="ko">하얀색(기본)</title> <title xml:lang="ko">하얀색(기본)</title>
<title xml:lang="jp">白(デフォルト)</title> <title xml:lang="jp">白(デフォルト)</title>
<title xml:lang="zh-CN">白色(基本)</title> <title xml:lang="zh-CN">白色(基本)</title>
<title xml:lang="en">White (default)</title> <title xml:lang="en">White (default)</title>
<title xml:lang="es">Blanco (por defecto)</title> <title xml:lang="es">Blanco (por defecto)</title>
<title xml:lang="zh-TW">白色(預設)</title> <title xml:lang="zh-TW">白色(預設)</title>
</color> </color>
<color name="black" src="screenshot/black.gif"> <color name="black" src="screenshot/black.gif">
<title xml:lang="ko">검은색</title> <title xml:lang="ko">검은색</title>
<title xml:lang="jp"></title> <title xml:lang="jp"></title>
<title xml:lang="en">Black</title> <title xml:lang="en">Black</title>
<title xml:lang="ru">Черного</title> <title xml:lang="ru">Черного</title>
<title xml:lang="es">Negro</title> <title xml:lang="es">Negro</title>
<title xml:lang="zh-CN">黑色</title> <title xml:lang="zh-CN">黑色</title>
<title xml:lang="zh-TW">黑色</title> <title xml:lang="zh-TW">黑色</title>
</color> </color>
</colorset> </colorset>
<extra_vars> <extra_vars>
<var name="default_style" type="select"> <var name="default_style" type="select">
<title xml:lang="ko">기본 형태</title> <title xml:lang="ko">기본 형태</title>
<title xml:lang="jp">デフォルトスタイル</title> <title xml:lang="jp">デフォルトスタイル</title>
<title xml:lang="zh-CN">默认样式</title> <title xml:lang="zh-CN">默认样式</title>
<title xml:lang="en">Default Form</title> <title xml:lang="en">Default Form</title>
<title xml:lang="es">Formulario por defecto</title> <title xml:lang="es">Formulario por defecto</title>
<title xml:lang="zh-TW">預設樣式</title> <title xml:lang="zh-TW">預設樣式</title>
<description xml:lang="ko"> <description xml:lang="ko">
목록형, 웹진형, 갤러리형, 포럼형의 기본 스타일을 지정할 수 있습니다. 목록형, 웹진형, 갤러리형, 포럼형의 기본 스타일을 지정할 수 있습니다.
포럼형 스타일은 정렬대상을 updated로 하셔야 합니다. 포럼형 스타일은 정렬대상을 updated로 하셔야 합니다.
</description> </description>
<description xml:lang="jp"> <description xml:lang="jp">
リスト型、ウェブジン型、ギャラリー型、フォーラム型の基本スタイルを指定することができます。 リスト型、ウェブジン型、ギャラリー型、フォーラム型の基本スタイルを指定することができます。
フォーラム型のスタイルはソート対象を「updated」にしなければなりません。 フォーラム型のスタイルはソート対象を「updated」にしなければなりません。
</description> </description>
<description xml:lang="zh-CN"> <description xml:lang="zh-CN">
可以把版面指定为默认的目录型,新闻型,相册型及论坛型。 可以把版面指定为默认的目录型,新闻型,相册型及论坛型。
当使用论坛型的时候请把排列对象设置为updated。 当使用论坛型的时候请把排列对象设置为updated。
</description> </description>
<description xml:lang="en"> <description xml:lang="en">
You may select default styles such as list style, webzine style, gallery stylz or forum style. You may select default styles such as list style, webzine style, gallery stylz or forum style.
Align Target for forum style is required to be selected as 'updated'. Align Target for forum style is required to be selected as 'updated'.
</description> </description>
<description xml:lang="es"> <description xml:lang="es">
Usted puede seleccionar por defecto los estilos como el estilo de lista, estilo webzine, galería stylz o estilo foro. Usted puede seleccionar por defecto los estilos como el estilo de lista, estilo webzine, galería stylz o estilo foro.
Alinear Meta para el foro estilo es necesaria para ser seleccionado como 'actualización'. Alinear Meta para el foro estilo es necesaria para ser seleccionado como 'actualización'.
</description> </description>
<description xml:lang="zh-TW"> <description xml:lang="zh-TW">
可選擇列表型、網路雜誌型,相簿型或論壇型當作討論板預設形式 可選擇列表型、網路雜誌型,相簿型或論壇型當作討論板預設形式
當使用論壇型的時候,請把排列目標設定成 updated。 當使用論壇型的時候,請把排列目標設定成 updated。
</description> </description>
<options value="list"> <options value="list">
<title xml:lang="ko">목록</title> <title xml:lang="ko">목록</title>
<title xml:lang="en">list</title> <title xml:lang="en">list</title>
<title xml:lang="jp">リスト</title> <title xml:lang="jp">リスト</title>
<title xml:lang="zh-CN">目录型</title> <title xml:lang="zh-CN">目录型</title>
<title xml:lang="es">list</title> <title xml:lang="es">list</title>
<title xml:lang="zh-TW">列表型</title> <title xml:lang="zh-TW">列表型</title>
</options> </options>
<options value="webzine"> <options value="webzine">
<title xml:lang="ko">웹진</title> <title xml:lang="ko">웹진</title>
<title xml:lang="en">webzine</title> <title xml:lang="en">webzine</title>
<title xml:lang="jp">ウェブジン(webzine)</title> <title xml:lang="jp">ウェブジン(webzine)</title>
<title xml:lang="zh-CN">新闻型</title> <title xml:lang="zh-CN">新闻型</title>
<title xml:lang="es">webzine</title> <title xml:lang="es">webzine</title>
<title xml:lang="zh-TW">雜誌型</title> <title xml:lang="zh-TW">雜誌型</title>
</options> </options>
<options value="gallery"> <options value="gallery">
<title xml:lang="ko">갤러리</title> <title xml:lang="ko">갤러리</title>
<title xml:lang="en">gallery</title> <title xml:lang="en">gallery</title>
<title xml:lang="jp">ギャラリー</title> <title xml:lang="jp">ギャラリー</title>
<title xml:lang="zh-CN">相册型</title> <title xml:lang="zh-CN">相册型</title>
<title xml:lang="es">gallery</title> <title xml:lang="es">gallery</title>
<title xml:lang="zh-TW">相簿型</title> <title xml:lang="zh-TW">相簿型</title>
</options> </options>
<options value="forum"> <options value="forum">
<title xml:lang="ko">포럼</title> <title xml:lang="ko">포럼</title>
<title xml:lang="en">forum</title> <title xml:lang="en">forum</title>
<title xml:lang="jp">フォラム</title> <title xml:lang="jp">フォラム</title>
<title xml:lang="zh-CN">论坛型</title> <title xml:lang="zh-CN">论坛型</title>
<title xml:lang="es">forum</title> <title xml:lang="es">forum</title>
<title xml:lang="zh-TW">論壇型</title> <title xml:lang="zh-TW">論壇型</title>
</options> </options>
<options value="blog"> <options value="blog">
<title xml:lang="ko">블로그</title> <title xml:lang="ko">블로그</title>
<title xml:lang="en">blog</title> <title xml:lang="en">blog</title>
<title xml:lang="jp">ブログ</title> <title xml:lang="jp">ブログ</title>
<title xml:lang="zh-CN">博客型</title> <title xml:lang="zh-CN">博客型</title>
<title xml:lang="es">blog</title> <title xml:lang="es">blog</title>
<title xml:lang="zh-TW">部落格型</title> <title xml:lang="zh-TW">部落格型</title>
</options> </options>
</var> </var>
<var name="display_login_info" type="select"> <var name="display_login_info" type="select">
<title xml:lang="ko">로그인 정보 출력</title> <title xml:lang="ko">로그인 정보 출력</title>
<title xml:lang="zh-CN">显示会员信息组</title> <title xml:lang="zh-CN">显示会员信息组</title>
<title xml:lang="jp">ログイン情報表示</title> <title xml:lang="jp">ログイン情報表示</title>
<title xml:lang="en">Display Login Info</title> <title xml:lang="en">Display Login Info</title>
<title xml:lang="es">Muestra la información de la conección</title> <title xml:lang="es">Muestra la información de la conección</title>
<title xml:lang="zh-TW">顯示登入資料</title> <title xml:lang="zh-TW">顯示登入資料</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="display_setup_button" type="select"> <var name="display_setup_button" type="select">
<title xml:lang="ko">설정 표시</title> <title xml:lang="ko">설정 표시</title>
<title xml:lang="zh-CN">显示管理设置组</title> <title xml:lang="zh-CN">显示管理设置组</title>
<title xml:lang="jp">設定表示</title> <title xml:lang="jp">設定表示</title>
<title xml:lang="en">Display Setup</title> <title xml:lang="en">Display Setup</title>
<title xml:lang="es">Muestra la información de la Configuración</title> <title xml:lang="es">Muestra la información de la Configuración</title>
<title xml:lang="zh-TW">顯示設置</title> <title xml:lang="zh-TW">顯示設置</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="title" type="text"> <var name="title" type="text">
<title xml:lang="ko">게시판 제목</title> <title xml:lang="ko">게시판 제목</title>
<title xml:lang="jp">掲示板タイトル</title> <title xml:lang="jp">掲示板タイトル</title>
<title xml:lang="zh-CN">版面标题</title> <title xml:lang="zh-CN">版面标题</title>
<title xml:lang="en">Title of Board</title> <title xml:lang="en">Title of Board</title>
<title xml:lang="es">Title of Board</title> <title xml:lang="es">Title of Board</title>
<title xml:lang="zh-TW">討論板標題</title> <title xml:lang="zh-TW">討論板標題</title>
<description xml:lang="ko">게시판의 제목을 적어주세요.</description> <description xml:lang="ko">게시판의 제목을 적어주세요.</description>
<description xml:lang="jp">掲示板タイトルを入力してください。</description> <description xml:lang="jp">掲示板タイトルを入力してください。</description>
<description xml:lang="zh-CN">请输入版面标题(留空为不显示)。</description> <description xml:lang="zh-CN">请输入版面标题(留空为不显示)。</description>
<description xml:lang="en">Plase input the title of board.</description> <description xml:lang="en">Plase input the title of board.</description>
<description xml:lang="es">Plase input the title of board.</description> <description xml:lang="es">Plase input the title of board.</description>
<description xml:lang="zh-TW">請輸入討論板標題(留白為隱藏)。</description> <description xml:lang="zh-TW">請輸入討論板標題(留白為隱藏)。</description>
</var> </var>
<var name="sub_title" type="text"> <var name="sub_title" type="text">
<title xml:lang="ko">게시판 부제목</title> <title xml:lang="ko">게시판 부제목</title>
<title xml:lang="jp">掲示板サブタイトル</title> <title xml:lang="jp">掲示板サブタイトル</title>
<title xml:lang="zh-CN">版面副标题</title> <title xml:lang="zh-CN">版面副标题</title>
<title xml:lang="en">Subtitle of Board</title> <title xml:lang="en">Subtitle of Board</title>
<title xml:lang="zh-TW">討論板副標題</title> <title xml:lang="zh-TW">討論板副標題</title>
<description xml:lang="ko">게시판 제목 옆에 나타날 부제목을 적어주세요.</description> <description xml:lang="ko">게시판 제목 옆에 나타날 부제목을 적어주세요.</description>
<description xml:lang="jp">掲示板タイトルの横に表示されるサブタイトルを入力してください。</description> <description xml:lang="jp">掲示板タイトルの横に表示されるサブタイトルを入力してください。</description>
<description xml:lang="zh-CN">请输入版面副标题(留空为不显示)。</description> <description xml:lang="zh-CN">请输入版面副标题(留空为不显示)。</description>
<description xml:lang="en">Please input the subtitle of board which will be displayed beside of board title.</description> <description xml:lang="en">Please input the subtitle of board which will be displayed beside of board title.</description>
<description xml:lang="es">Please input the subtitle of board which will be displayed beside of board title.</description> <description xml:lang="es">Please input the subtitle of board which will be displayed beside of board title.</description>
<description xml:lang="zh-TW">請輸入討論板副標題(留白為隱藏)。</description> <description xml:lang="zh-TW">請輸入討論板副標題(留白為隱藏)。</description>
</var> </var>
<var name="comment" type="textarea"> <var name="comment" type="textarea">
<title xml:lang="ko">게시판 상세 설명</title> <title xml:lang="ko">게시판 상세 설명</title>
<title xml:lang="jp">掲示板の詳細</title> <title xml:lang="jp">掲示板の詳細</title>
<title xml:lang="zh-CN">版面详细说明</title> <title xml:lang="zh-CN">版面详细说明</title>
<title xml:lang="en">Description of Board</title> <title xml:lang="en">Description of Board</title>
<title xml:lang="es">Description of Board</title> <title xml:lang="es">Description of Board</title>
<title xml:lang="zh-TW">討論板說明</title> <title xml:lang="zh-TW">討論板說明</title>
<description xml:lang="ko">게시판 제목 아래 표시될 설명을 입력하실 수 있습니다.</description> <description xml:lang="ko">게시판 제목 아래 표시될 설명을 입력하실 수 있습니다.</description>
<description xml:lang="jp">掲示板タイトルの下に表示される説明文を入力してください。</description> <description xml:lang="jp">掲示板タイトルの下に表示される説明文を入力してください。</description>
<description xml:lang="zh-CN">请输入版面说明(留空为不显示)。</description> <description xml:lang="zh-CN">请输入版面说明(留空为不显示)。</description>
<description xml:lang="en">You may input description which will be displayed under the board title.</description> <description xml:lang="en">You may input description which will be displayed under the board title.</description>
<description xml:lang="es">You may input description which will be displayed under the board title.</description> <description xml:lang="es">You may input description which will be displayed under the board title.</description>
<description xml:lang="zh-TW">請輸入討論板說明(留白為隱藏)。</description> <description xml:lang="zh-TW">請輸入討論板說明(留白為隱藏)。</description>
</var> </var>
<var name="subject_cut_size" type="text"> <var name="subject_cut_size" type="text">
<title xml:lang="ko">제목 글자수</title> <title xml:lang="ko">제목 글자수</title>
<title xml:lang="jp">タイトルの文字数</title> <title xml:lang="jp">タイトルの文字数</title>
<title xml:lang="zh-CN">标题字数</title> <title xml:lang="zh-CN">标题字数</title>
<title xml:lang="en">Length of Subject</title> <title xml:lang="en">Length of Subject</title>
<title xml:lang="es">Length of Subject</title> <title xml:lang="es">Length of Subject</title>
<title xml:lang="zh-TW">標題字數</title> <title xml:lang="zh-TW">標題字數</title>
<description xml:lang="ko">제목 글자수를 지정할 수 있습니다. (0또는 비워주시면 자르지 않습니다)</description> <description xml:lang="ko">제목 글자수를 지정할 수 있습니다. (0또는 비워주시면 자르지 않습니다)</description>
<description xml:lang="jp">タイトルの文字数が指定できます「0」または空欄の場合は、文字数を制限しません</description> <description xml:lang="jp">タイトルの文字数が指定できます「0」または空欄の場合は、文字数を制限しません</description>
<description xml:lang="zh-CN">可以指定标题字数(0或留空为不限)。</description> <description xml:lang="zh-CN">可以指定标题字数(0或留空为不限)。</description>
<description xml:lang="en">You may set length of title. (0 or blank value will not restrict the length)</description> <description xml:lang="en">You may set length of title. (0 or blank value will not restrict the length)</description>
<description xml:lang="es">You may set length of title. (0 or blank value will not restrict the length)</description> <description xml:lang="es">You may set length of title. (0 or blank value will not restrict the length)</description>
<description xml:lang="zh-TW">可指定標題字數(0或留白為不限制)。</description> <description xml:lang="zh-TW">可指定標題字數(0或留白為不限制)。</description>
</var> </var>
<var name="display_number" type="select"> <var name="display_number" type="select">
<title xml:lang="ko">번호 표시</title> <title xml:lang="ko">번호 표시</title>
<title xml:lang="jp">番号表示</title> <title xml:lang="jp">番号表示</title>
<title xml:lang="zh-CN">显示编号</title> <title xml:lang="zh-CN">显示编号</title>
<title xml:lang="en">Dispay Number</title> <title xml:lang="en">Dispay Number</title>
<title xml:lang="es">Dispay Number</title> <title xml:lang="es">Dispay Number</title>
<title xml:lang="zh-TW">顯示編號</title> <title xml:lang="zh-TW">顯示編號</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="display_author" type="select"> <var name="display_author" type="select">
<title xml:lang="ko">글쓴이 표시</title> <title xml:lang="ko">글쓴이 표시</title>
<title xml:lang="jp">投稿者表示</title> <title xml:lang="jp">投稿者表示</title>
<title xml:lang="zh-CN">显示昵称</title> <title xml:lang="zh-CN">显示昵称</title>
<title xml:lang="en">Display Author</title> <title xml:lang="en">Display Author</title>
<title xml:lang="es">Display Author</title> <title xml:lang="es">Display Author</title>
<title xml:lang="zh-TW">顯示暱稱</title> <title xml:lang="zh-TW">顯示暱稱</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="display_regdate" type="select"> <var name="display_regdate" type="select">
<title xml:lang="ko">작성일 표시</title> <title xml:lang="ko">작성일 표시</title>
<title xml:lang="jp">作成日表示</title> <title xml:lang="jp">作成日表示</title>
<title xml:lang="zh-CN">显示发表日期</title> <title xml:lang="zh-CN">显示发表日期</title>
<title xml:lang="en">Display Registered Date</title> <title xml:lang="en">Display Registered Date</title>
<title xml:lang="es">Display Registered Date</title> <title xml:lang="es">Display Registered Date</title>
<title xml:lang="zh-TW">顯示發表日期</title> <title xml:lang="zh-TW">顯示發表日期</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="display_readed_count" type="select"> <var name="display_readed_count" type="select">
<title xml:lang="ko">조회수 표시</title> <title xml:lang="ko">조회수 표시</title>
<title xml:lang="jp">閲覧数表示</title> <title xml:lang="jp">閲覧数表示</title>
<title xml:lang="zh-CN">显示查看</title> <title xml:lang="zh-CN">显示查看</title>
<title xml:lang="en">Display Hit</title> <title xml:lang="en">Display Hit</title>
<title xml:lang="es">Display Hit</title> <title xml:lang="es">Display Hit</title>
<title xml:lang="zh-TW">顯示點擊</title> <title xml:lang="zh-TW">顯示點擊</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="display_voted_count" type="select"> <var name="display_voted_count" type="select">
<title xml:lang="ko">추천수 표시</title> <title xml:lang="ko">추천수 표시</title>
<title xml:lang="jp">推薦数表示</title> <title xml:lang="jp">推薦数表示</title>
<title xml:lang="zh-CN">显示推荐</title> <title xml:lang="zh-CN">显示推荐</title>
<title xml:lang="en">Display Votes</title> <title xml:lang="en">Display Votes</title>
<title xml:lang="es">Display Votes</title> <title xml:lang="es">Display Votes</title>
<title xml:lang="zh-TW">顯示推薦</title> <title xml:lang="zh-TW">顯示推薦</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="display_ip_address" type="select"> <var name="display_ip_address" type="select">
<title xml:lang="ko">아이피주소 표시</title> <title xml:lang="ko">아이피주소 표시</title>
<title xml:lang="en">Display ip address</title> <title xml:lang="en">Display ip address</title>
<title xml:lang="jp">IPアドレス表示</title> <title xml:lang="jp">IPアドレス表示</title>
<title xml:lang="zh-CN">显示IP地址</title> <title xml:lang="zh-CN">显示IP地址</title>
<title xml:lang="es-CN">Display ip address</title> <title xml:lang="es-CN">Display ip address</title>
<title xml:lang="zh-TW">顯示IP地址</title> <title xml:lang="zh-TW">顯示IP地址</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
</var> </var>
<var name="display_last_update" type="select"> <var name="display_last_update" type="select">
<title xml:lang="ko">최근 변경시간 표시</title> <title xml:lang="ko">최근 변경시간 표시</title>
<title xml:lang="jp">最近の変更時間表示</title> <title xml:lang="jp">最近の変更時間表示</title>
<title xml:lang="zh-CN">显示最后更新时间</title> <title xml:lang="zh-CN">显示最后更新时间</title>
<title xml:lang="en">Display Latest Update</title> <title xml:lang="en">Display Latest Update</title>
<title xml:lang="es">Display Latest Update</title> <title xml:lang="es">Display Latest Update</title>
<title xml:lang="zh-TW">顯示最後更新時間</title> <title xml:lang="zh-TW">顯示最後更新時間</title>
<options value="Y"> <options value="Y">
<title xml:lang="ko">출력</title> <title xml:lang="ko">출력</title>
<title xml:lang="en">display</title> <title xml:lang="en">display</title>
<title xml:lang="jp">表示</title> <title xml:lang="jp">表示</title>
<title xml:lang="zh-CN">显示</title> <title xml:lang="zh-CN">显示</title>
<title xml:lang="es">display</title> <title xml:lang="es">display</title>
<title xml:lang="zh-TW">顯示</title> <title xml:lang="zh-TW">顯示</title>
</options> </options>
<options value="N"> <options value="N">
<title xml:lang="ko">출력하지 않음</title> <title xml:lang="ko">출력하지 않음</title>
<title xml:lang="en">not display</title> <title xml:lang="en">not display</title>
<title xml:lang="jp">非表示</title> <title xml:lang="jp">非表示</title>
<title xml:lang="zh-CN">不显示</title> <title xml:lang="zh-CN">不显示</title>
<title xml:lang="es">not display</title> <title xml:lang="es">not display</title>
<title xml:lang="zh-TW">隱藏</title> <title xml:lang="zh-TW">隱藏</title>
</options> </options>
<description /> <description />
</var> </var>
<var name="duration_new" type="text" default="24"> <var name="duration_new" type="text" default="24">
<title xml:lang="ko">new표시 시간 (hours)</title> <title xml:lang="ko">new표시 시간 (hours)</title>
<title xml:lang="jp">Newの表示時間 (Hours)</title> <title xml:lang="jp">Newの表示時間 (Hours)</title>
<title xml:lang="zh-CN">new图标显示时间(hours)</title> <title xml:lang="zh-CN">new图标显示时间(hours)</title>
<title xml:lang="en">Duration of indication for new item</title> <title xml:lang="en">Duration of indication for new item</title>
<title xml:lang="es">Duration of indication for new item</title> <title xml:lang="es">Duration of indication for new item</title>
<title xml:lang="zh-TW">new圖案顯示時間(hours)</title> <title xml:lang="zh-TW">new圖案顯示時間(hours)</title>
<description xml:lang="ko">새로 등록된 게시물의 new 표시시간을 정할 수 있습니다. </description> <description xml:lang="ko">새로 등록된 게시물의 new 표시시간을 정할 수 있습니다. </description>
<description xml:lang="jp">新しく登録された書き込みに対して「New」の表示時間を設定します。 </description> <description xml:lang="jp">新しく登録された書き込みに対して「New」の表示時間を設定します。 </description>
<description xml:lang="zh-CN">可以设置最新更新主题的new图标显示时间。</description> <description xml:lang="zh-CN">可以设置最新更新主题的new图标显示时间。</description>
<description xml:lang="en">You may set the duration of indication for fresh item. </description> <description xml:lang="en">You may set the duration of indication for fresh item. </description>
<description xml:lang="es">You may set the duration of indication for fresh item. </description> <description xml:lang="es">You may set the duration of indication for fresh item. </description>
<description xml:lang="zh-TW">可設置最新更新主題的new圖案顯示時間。</description> <description xml:lang="zh-TW">可設置最新更新主題的new圖案顯示時間。</description>
</var> </var>
<var name="thumbnail_type" type="select"> <var name="thumbnail_type" type="select">
<title xml:lang="ko">썸네일 생성 방법</title> <title xml:lang="ko">썸네일 생성 방법</title>
<title xml:lang="jp">サムネール生成方法</title> <title xml:lang="jp">サムネール生成方法</title>
<title xml:lang="zh-CN">缩略图生成方式</title> <title xml:lang="zh-CN">缩略图生成方式</title>
<title xml:lang="en">Type of Thumbnail</title> <title xml:lang="en">Type of Thumbnail</title>
<title xml:lang="zh-TW">縮圖建立方式</title> <title xml:lang="zh-TW">縮圖建立方式</title>
<description xml:lang="ko">썸네일 생성 방법을 선택할 수 있습니다.</description> <description xml:lang="ko">썸네일 생성 방법을 선택할 수 있습니다.</description>
<description xml:lang="jp">サムネールの生成方法を選択します。</description> <description xml:lang="jp">サムネールの生成方法を選択します。</description>
<description xml:lang="zh-CN">可以选择缩略图生成方式。</description> <description xml:lang="zh-CN">可以选择缩略图生成方式。</description>
<description xml:lang="en">Choose the type to create the thumnail.</description> <description xml:lang="en">Choose the type to create the thumnail.</description>
<description xml:lang="zh-TW">可選擇縮圖建立方式。</description> <description xml:lang="zh-TW">可選擇縮圖建立方式。</description>
<options value="crop"> <options value="crop">
<title xml:lang="ko">꽉 채우기</title> <title xml:lang="ko">꽉 채우기</title>
<title xml:lang="jp">刈り込み</title> <title xml:lang="jp">刈り込み</title>
<title xml:lang="zh-CN">裁减</title> <title xml:lang="zh-CN">裁减</title>
<title xml:lang="en">crop</title> <title xml:lang="en">crop</title>
<title xml:lang="zh-TW">裁減</title> <title xml:lang="zh-TW">裁減</title>
</options> </options>
<options value="ratio"> <options value="ratio">
<title xml:lang="ko">비율 맞추기</title> <title xml:lang="ko">비율 맞추기</title>
<title xml:lang="jp">比率</title> <title xml:lang="jp">比率</title>
<title xml:lang="zh-CN">比例</title> <title xml:lang="zh-CN">比例</title>
<title xml:lang="en">ratio</title> <title xml:lang="en">ratio</title>
<title xml:lang="zh-TW">比例</title> <title xml:lang="zh-TW">比例</title>
</options> </options>
</var> </var>
<var name="thumbnail_width" type="text" default="100"> <var name="thumbnail_width" type="text" default="100">
<title xml:lang="ko">썸네일 가로크기</title> <title xml:lang="ko">썸네일 가로크기</title>
<title xml:lang="jp">サムネールの横幅</title> <title xml:lang="jp">サムネールの横幅</title>
<title xml:lang="zh-CN">缩略图宽度</title> <title xml:lang="zh-CN">缩略图宽度</title>
<title xml:lang="en">Width of Thumbnail</title> <title xml:lang="en">Width of Thumbnail</title>
<title xml:lang="zh-TW">縮圖寬度</title> <title xml:lang="zh-TW">縮圖寬度</title>
<description xml:lang="ko">썸네일의 가로 크기를 지정할 수 있습니다. (기본 100px)</description> <description xml:lang="ko">썸네일의 가로 크기를 지정할 수 있습니다. (기본 100px)</description>
<description xml:lang="jp">サムネールの横幅を指定します(デフォルト 100px)。</description> <description xml:lang="jp">サムネールの横幅を指定します(デフォルト 100px)。</description>
<description xml:lang="zh-CN">可以指定缩略图宽度(默认为 100px)。</description> <description xml:lang="zh-CN">可以指定缩略图宽度(默认为 100px)。</description>
<description xml:lang="en">Set the width of thumbnail. Default is 100px.</description> <description xml:lang="en">Set the width of thumbnail. Default is 100px.</description>
<description xml:lang="zh-TW">可指定縮圖寬度(預設是 100px)。</description> <description xml:lang="zh-TW">可指定縮圖寬度(預設是 100px)。</description>
</var> </var>
<var name="thumbnail_height" type="text" default="100"> <var name="thumbnail_height" type="text" default="100">
<title xml:lang="ko">썸네일 세로크기</title> <title xml:lang="ko">썸네일 세로크기</title>
<title xml:lang="jp">サムネールの縦幅</title> <title xml:lang="jp">サムネールの縦幅</title>
<title xml:lang="zh-CN">缩略图高度</title> <title xml:lang="zh-CN">缩略图高度</title>
<title xml:lang="en">Height of Thumbnail</title> <title xml:lang="en">Height of Thumbnail</title>
<title xml:lang="zh-TW">縮圖高度</title> <title xml:lang="zh-TW">縮圖高度</title>
<description xml:lang="ko">썸네일의 세로 크기를 지정할 수 있습니다. (기본 100px)</description> <description xml:lang="ko">썸네일의 세로 크기를 지정할 수 있습니다. (기본 100px)</description>
<description xml:lang="jp">サムネールの縦幅を指定します(デフォルト 100px)。</description> <description xml:lang="jp">サムネールの縦幅を指定します(デフォルト 100px)。</description>
<description xml:lang="zh-CN">可以指定缩略图高度(默认为 100px)。</description> <description xml:lang="zh-CN">可以指定缩略图高度(默认为 100px)。</description>
<description xml:lang="en">Set the height of thumbnail. Default is 100px.</description> <description xml:lang="en">Set the height of thumbnail. Default is 100px.</description>
<description xml:lang="zh-TW">可指定縮圖高度(預設是 100px)。</description> <description xml:lang="zh-TW">可指定縮圖高度(預設是 100px)。</description>
</var> </var>
</extra_vars> </extra_vars>
</skin> </skin>

View file

@ -1,125 +1,124 @@
<!-- 목록 출력 --> <!-- 목록 출력 -->
{@ $_col_count = 1; } {@ $_col_count = 1; }
<!--@if($module_info->display_number!='N')-->{@ $_col_count++}<!--@end--> <!--@if($module_info->display_number!='N')-->{@ $_col_count++}<!--@end-->
<!--@if($grant->is_admin)-->{@ $_col_count++}<!--@end--> <!--@if($grant->is_admin)-->{@ $_col_count++}<!--@end-->
<!--@if($module_info->display_author!='N')-->{@ $_col_count++}<!--@end--> <!--@if($module_info->display_author!='N')-->{@ $_col_count++}<!--@end-->
<!--@if($module_info->display_readed_count!='N')-->{@ $_col_count++}<!--@end--> <!--@if($module_info->display_readed_count!='N')-->{@ $_col_count++}<!--@end-->
<!--@if($module_info->display_voted_count!='N')-->{@ $_col_count++}<!--@end--> <!--@if($module_info->display_voted_count!='N')-->{@ $_col_count++}<!--@end-->
<!--@if($module_info->display_regdate != 'N')-->{@ $_col_count++}<!--@end--> <!--@if($module_info->display_regdate != 'N')-->{@ $_col_count++}<!--@end-->
<!--@if($module_info->display_last_update == 'Y')-->{@ $_col_count++}<!--@end--> <!--@if($module_info->display_last_update == 'Y')-->{@ $_col_count++}<!--@end-->
<form action="./" method="get"> <form action="./" method="get" class="boardListForm">
<fieldset>
<table cellspacing="0" summary="" class="boardList"> <legend>List of Articles</legend>
<!--@if($_col_count>1)--> <table cellspacing="0" border="1" summary="List of Articles" class="boardList">
<thead> <!--@if($_col_count>1)-->
{@ $no_line_class = " no_line" } <thead>
<tr> {@ $no_line_class = " no_line" }
<!--@if($module_info->display_number!='N')--><th scope="col" class="num{$no_line_class}"><div>{$lang->no}</div></th>{@ $no_line_class=""}<!--@end--> <tr>
<!--@if($module_info->display_number!='N')--><th scope="col">{$lang->no}</th>{@ $no_line_class=""}<!--@end-->
<!--@if($grant->is_admin)--><th scope="col" class="checkbox{$no_line_class}"><input type="checkbox" onclick="clickCheckBoxAll(this.form, 'cart'); return false;" /></th>{@ $no_line_class=""}<!--@end-->
<!--@if($grant->is_admin)--><th scope="col"><input type="checkbox" onclick="clickCheckBoxAll(this.form, 'cart'); return false;" /></th>{@ $no_line_class=""}<!--@end-->
<th scope="col" class="<!--@if($module_info->use_category == 'Y')-->category<!--@else-->title<!--@end-->{$no_line_class}"><div>
<th scope="col">
<!--@if($module_info->use_category == "Y")--> <span class="jumpTo">
<!--// 카테고리 사용시 카테고리 선택 표시 --> <!--@if($module_info->use_category == "Y")-->
<select name="category" id="board_category"> <!--// 카테고리 사용시 카테고리 선택 표시 -->
<option value="">{$lang->category}</option> <select name="category" id="board_category">
<!--@foreach($category_list as $val)--> <option value="">{$lang->category}</option>
<option value="{$val->category_srl}" <!--@if($category==$val->category_srl)-->selected="selected"<!--@end-->>{str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option> <!--@foreach($category_list as $val)-->
<!--@end--> <option value="{$val->category_srl}" <!--@if($category==$val->category_srl)-->selected="selected"<!--@end-->>{str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
</select> <!--@end-->
<input type="button" name="go_button" id="go_button" value="GO" onclick="doChangeCategory(); return false;" class="buttonTypeGo" /> </select>
<!--@else--> <button type="button" name="go_button" id="go_button" onclick="doChangeCategory(); return false;" class="button">Go</button>
{$lang->title} <!--@else-->
<!--@end--> <!--@end-->
</div></th> </span>
{$lang->title}
<!--@if($module_info->display_author!='N')--><th class="author" scope="col"><div>{$lang->writer}</div></th><!--@end--> </th>
<!--@if($module_info->display_readed_count!='N')--><th class="reading" scope="col"><div><a href="{getUrl('sort_index','readed_count','order_type',$order_type)}">{$lang->readed_count}<!--@if($sort_index=='readed_count')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th><!--@end--> <!--@if($module_info->display_author!='N')--><th scope="col">{$lang->writer}</th><!--@end-->
<!--@if($module_info->display_readed_count!='N')--><th scope="col"><a href="{getUrl('sort_index','readed_count','order_type',$order_type)}">{$lang->readed_count}<!--@if($sort_index=='readed_count')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></th><!--@end-->
<!--@if($module_info->display_voted_count!='N')--><th class="recommend" scope="col"><div><a href="{getUrl('sort_index','voted_count','order_type',$order_type)}">{$lang->voted_count}<!--@if($sort_index=='voted_count')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th><!--@end--> <!--@if($module_info->display_voted_count!='N')--><th scope="col"><a href="{getUrl('sort_index','voted_count','order_type',$order_type)}">{$lang->voted_count}<!--@if($sort_index=='voted_count')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></th><!--@end-->
<!--@if($module_info->display_regdate != 'N')--><th scope="col"><a href="{getUrl('sort_index','regdate','order_type',$order_type)}">{$lang->date}<!--@if($sort_index=='regdate')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></th><!--@end-->
<!--@if($module_info->display_regdate != 'N')--><th scope="col" class="date"><div><a href="{getUrl('sort_index','regdate','order_type',$order_type)}">{$lang->date}<!--@if($sort_index=='regdate')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th><!--@end--> <!--@if($module_info->display_last_update=='Y')--><th scope="col"><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_update}<!--@if($sort_index=='last_update')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></th><!--@end-->
</tr>
<!--@if($module_info->display_last_update=='Y')--><th scope="col" class="date"><div><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_update}<!--@if($sort_index=='last_update')--><img src="./images/common/{$order_icon}" alt="" width="5" height="3" class="sort" /><!--@end--></a></div></th><!--@end--> </thead>
</tr> <!--@end-->
</thead>
<!--@end--> <tbody>
<tbody> <!--@if(!$document_list && !$notice_list)-->
<!--// 게시물이 없으면 등록된 글이 없음을 표시 -->
<!--@if(!$document_list && !$notice_list)--> <tr class="bg0 tCenter">
<!--// 게시물이 없으면 등록된 글이 없음을 표시 --> <td colspan="{$_col_count}" class="title">
<tr class="bg0 tCenter"> {$lang->no_documents}
<td colspan="{$_col_count}" class="title"> </td>
{$lang->no_documents} </tr>
</td> <!--@else-->
</tr> <!--// 공지사항 출력 -->
<!--@else--> <!--@foreach($notice_list as $no => $document)-->
<!--// 공지사항 출력 --> <tr class="notice">
<!--@foreach($notice_list as $no => $document)--> <!--@if($module_info->display_number!='N')--><td class="notice"><!--@if($document_srl == $document->document_srl)--><img src="./images/common/iconArrowD8.gif" border="0" alt="" /><!--@else-->{$lang->notice}<!--@end--></td><!--@end-->
<tr class="notice"> <!--@if($grant->is_admin)--><td class="check"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end-->
<!--@if($module_info->display_number!='N')--><td class="notice"><!--@if($document_srl == $document->document_srl)--><img src="./images/common/iconArrowD8.gif" border="0" alt="" /><!--@else-->{$lang->notice}<!--@end--></td><!--@end--> <td class="title">
<!--@if($grant->is_admin)--><td class="checkbox"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end--> <!--@if($module_info->use_category == "Y" && $document->get('category_srl'))-->
<td class="title"> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--> <!--@end-->
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a> <!--@if($document->getCommentCount())-->
<span class="replyNum" title="Replies"><strong>{$document->getCommentCount()}</strong><sup>Replies</sup></span>
<!--@if($document->getCommentCount())--> <!--@end-->
<span class="replyAndTrackback" title="Replies"><img src="./images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
<!--@end--> <!--@if($document->getTrackbackCount())-->
<span class="replyNum" title="Trackbacks"><strong>{$document->getTrackbackCount()}</strong><sup>Tackback</sup></span>
<!--@if($document->getTrackbackCount())--> <!--@end-->
<span class="replyAndTrackback" title="Trackbacks"><img src="./images/{$module_info->colorset}/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
<!--@end--> {$document->printExtraImages(60*60*$module_info->duration_new)}
</td>
{$document->printExtraImages(60*60*$module_info->duration_new)} <!--@if($module_info->display_author!='N')--><td class="author"><a href="#popup_menu_area" class="member_{$document->get('member_srl')}">{$document->getNickName()}</a></td><!--@end-->
</td> <!--@if($module_info->display_readed_count!='N')--><td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td><!--@end-->
<!--@if($module_info->display_author!='N')--><td class="author"><div class="member_{$document->get('member_srl')}">{$document->getNickName()}</div></td><!--@end--> <!--@if($module_info->display_voted_count!='N')--><td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td><!--@end-->
<!--@if($module_info->display_readed_count!='N')--><td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td><!--@end--> <!--@if($module_info->display_regdate!='N')--><td class="date">{$document->getRegdate('Y-m-d')}</td><!--@end-->
<!--@if($module_info->display_voted_count!='N')--><td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td><!--@end--> <!--@if($module_info->display_last_update=='Y')--><td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td><!--@end-->
<!--@if($module_info->display_regdate!='N')--><td class="date">{$document->getRegdate('Y-m-d')}</td><!--@end--> </tr>
<!--@if($module_info->display_last_update=='Y')--><td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td><!--@end--> <!--@end-->
</tr>
<!--@end--> <!--// 일반 글 출력 -->
<!--@foreach($document_list as $no => $document)-->
<!--// 일반 글 출력 --> <tr class="bg{($no+1)%2+1}">
<!--@foreach($document_list as $no => $document)--> <!--@if($module_info->display_number!='N')--><td class="num"><!--@if($document_srl == $document->document_srl)--><img src="./images/common/iconArrowD8.gif" border="0" alt="" /><!--@else-->{$no}<!--@end--></td><!--@end-->
<tr class="bg{($no+1)%2+1}"> <!--@if($grant->is_admin)--><td class="checkbox"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end-->
<!--@if($module_info->display_number!='N')--><td class="num"><!--@if($document_srl == $document->document_srl)--><img src="./images/common/iconArrowD8.gif" border="0" alt="" /><!--@else-->{$no}<!--@end--></td><!--@end--> <td class="title">
<!--@if($grant->is_admin)--><td class="checkbox"><input type="checkbox" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end--> <!--@if($module_info->use_category == "Y" && $document->get('category_srl'))-->
<td class="title"> <strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@if($module_info->use_category == "Y" && $document->get('category_srl'))--> <!--@end-->
<strong class="category">{$category_list[$document->get('category_srl')]->title}</strong>
<!--@end--> <a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a> <!--@if($document->getCommentCount())-->
<span class="replyNum" title="Replies"><strong>{$document->getCommentCount()}</strong><sup>Replies</sup></span>
<!--@if($document->getCommentCount())--> <!--@end-->
<span class="replyAndTrackback" title="Replies"><img src="./images/{$module_info->colorset}/iconReply.gif" alt="" width="12" height="12" class="icon" /> <strong>{$document->getCommentCount()}</strong></span>
<!--@end--> <!--@if($document->getTrackbackCount())-->
<span class="replyNum" title="Trackbacks"><strong>{$document->getTrackbackCount()}</strong><sup>Tackback</sup></span>
<!--@if($document->getTrackbackCount())--> <!--@end-->
<span class="replyAndTrackback" title="Trackbacks"><img src="./images/{$module_info->colorset}/iconTrackback.gif" alt="" width="12" height="13" class="trackback icon" /> <strong>{$document->getTrackbackCount()}</strong></span>
<!--@end--> {$document->printExtraImages(60*60*$module_info->duration_new)}
</td>
{$document->printExtraImages(60*60*$module_info->duration_new)} <!--@if($module_info->display_author!='N')--><td class="author"><a href="#popup_menu_area" class="member_{$document->get('member_srl')}">{$document->getNickName()}</a></td><!--@end-->
</td> <!--@if($module_info->display_readed_count!='N')--><td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td><!--@end-->
<!--@if($module_info->display_author!='N')--><td class="author"><div class="member_{$document->get('member_srl')}">{$document->getNickName()}</div></td><!--@end--> <!--@if($module_info->display_voted_count!='N')--><td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td><!--@end-->
<!--@if($module_info->display_readed_count!='N')--><td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):'&nbsp;'}</td><!--@end--> <!--@if($module_info->display_regdate!='N')--><td class="date">{$document->getRegdate('Y-m-d')}</td><!--@end-->
<!--@if($module_info->display_voted_count!='N')--><td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):'&nbsp;'}</td><!--@end--> <!--@if($module_info->display_last_update=='Y')--><td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td><!--@end-->
<!--@if($module_info->display_regdate!='N')--><td class="date">{$document->getRegdate('Y-m-d')}</td><!--@end--> </tr>
<!--@if($module_info->display_last_update=='Y')--><td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td><!--@end--> <!--@end-->
</tr> <!--@end-->
<!--@end-->
<!--@end--> </tbody>
</table>
</tbody> </fieldset>
</table> </form>
</form>

View file

@ -1,40 +1,40 @@
<!--// header.html include --> <!--// header.html include -->
<!--#include("header.html")--> <!--#include("_header.html")-->
<!-- print tags --> <!-- print tags -->
<div class="tagsBox"> <div class="tagsBox">
<h5><img src="./images/common/iconTag.gif" alt="{$lang->tag}" width="17" height="10" class="tagIcon" /> {$lang->tag} ({count($tag_list)})</h5> <h5><img src="./images/common/iconTag.gif" alt="{$lang->tag}" width="17" height="10" class="tagIcon" /> {$lang->tag} ({count($tag_list)})</h5>
<div class="tags"> <div class="tags">
<!--@foreach($tag_list as $val)--> <!--@foreach($tag_list as $val)-->
<!--@if($val->count>5)--> <!--@if($val->count>5)-->
{@ $tag_class = "tagTypeA" } {@ $tag_class = "tagTypeA" }
<!--@elseif($val->count>3)--> <!--@elseif($val->count>3)-->
{@ $tag_class = "tagTypeB" } {@ $tag_class = "tagTypeB" }
<!--@elseif($val->count>2)--> <!--@elseif($val->count>2)-->
{@ $tag_class = "tagTypeC" } {@ $tag_class = "tagTypeC" }
<!--@elseif($val->count>1)--> <!--@elseif($val->count>1)-->
{@ $tag_class = "tagTypeD" } {@ $tag_class = "tagTypeD" }
<!--@else--> <!--@else-->
{@ $tag_class = "tagTypeE" } {@ $tag_class = "tagTypeE" }
<!--@end--> <!--@end-->
<div <!--@if($tag_class)-->class="{$tag_class}"<!--@end--> > <div <!--@if($tag_class)-->class="{$tag_class}"<!--@end--> >
<!--@if($layout_info->mid)--> <!--@if($layout_info->mid)-->
<a href="{getUrl('','mid',$layout_info->mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a> <a href="{getUrl('','mid',$layout_info->mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
<!--@else--> <!--@else-->
<a href="{getUrl('','mid',$mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a> <a href="{getUrl('','mid',$mid,'search_target','tag','search_keyword',$val->tag)}">{htmlspecialchars($val->tag)}</a>
<!--@end--> <!--@end-->
</div> </div>
<!--@end--> <!--@end-->
<div class="clear"></div> <div class="clear"></div>
</div> </div>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
<div class="rightButtonBox gap1"> <div class="rightButtonBox gap1">
<a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_back}</span></a> <a href="{getUrl('act','')}" class="button"><span>{$lang->cmd_back}</span></a>
</div> </div>
<!--#include("footer.html")--> <!--#include("_footer.html")-->

View file

@ -1,122 +1,122 @@
<!--%import("filter/insert.xml")--> <!--%import("filter/insert.xml")-->
<!--#include("header.html")--> <!--#include("_header.html")-->
<form action="./" method="post" onsubmit="return procFilter(this, window.insert)" id="fo_write"> <form action="./" method="post" onsubmit="return procFilter(this, window.insert)" id="fo_write">
<input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="content" value="{$oDocument->getContentText()}" /> <input type="hidden" name="content" value="{$oDocument->getContentText()}" />
<input type="hidden" name="document_srl" value="{$document_srl}" /> <input type="hidden" name="document_srl" value="{$document_srl}" />
<div class="boardWrite"> <div class="boardWrite">
<!--@if(!$is_logged)--> <!--@if(!$is_logged)-->
<div class="userNameAndPw"> <div class="userNameAndPw">
<label for="userName">{$lang->writer}</label> <label for="userName">{$lang->writer}</label>
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/> <input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
<label for="userPw">{$lang->password}</label> <label for="userPw">{$lang->password}</label>
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" /> <input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
<label for="emailAddress">{$lang->email_address}</label> <label for="emailAddress">{$lang->email_address}</label>
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/> <input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
<label for="homePage">{$lang->homepage}</label> <label for="homePage">{$lang->homepage}</label>
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/> <input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
</div> </div>
<!--@end--> <!--@end-->
<div class="title"> <div class="title">
<!--@if($module_info->use_category=="Y")--> <!--@if($module_info->use_category=="Y")-->
<select name="category_srl" class="category"> <select name="category_srl" class="category">
<option value="">{$lang->category}</option> <option value="">{$lang->category}</option>
<!--@foreach($category_list as $val)--> <!--@foreach($category_list as $val)-->
<option <!--@if(!$val->grant)-->disabled="disabled"<!--@endif--> value="{$val->category_srl}" <!--@if($val->grant&&$val->selected||$val->category_srl==$oDocument->get('category_srl'))-->selected="selected"<!--@endif-->> <option <!--@if(!$val->grant)-->disabled="disabled"<!--@endif--> value="{$val->category_srl}" <!--@if($val->grant&&$val->selected||$val->category_srl==$oDocument->get('category_srl'))-->selected="selected"<!--@endif-->>
{str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} ({$val->document_count}) {str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} ({$val->document_count})
</option> </option>
<!--@endforeach--> <!--@endforeach-->
</select> </select>
<!--@else--> <!--@else-->
<label class="title">{$lang->title}</label> <label class="title">{$lang->title}</label>
<!--@endif--> <!--@endif-->
<input type="text" name="title" class="title inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" /> <input type="text" name="title" class="title inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" />
</div> </div>
<dl class="option"> <dl class="option">
<!--@if($grant->manager)--> <!--@if($grant->manager)-->
{@ $_color = array('555555','222288','226622','2266EE','8866CC','88AA66','EE2222','EE6622','EEAA22','EEEE22') } {@ $_color = array('555555','222288','226622','2266EE','8866CC','88AA66','EE2222','EE6622','EEAA22','EEEE22') }
<dd><select name="title_color" id="title_color" <!--@if($oDocument->get('title_color'))-->style="background-color:#{$oDocument->get('title_color')};"<!--@end--> onchange="this.style.backgroundColor=this.options[this.selectedIndex].style.backgroundColor;"> <dd><select name="title_color" id="title_color" <!--@if($oDocument->get('title_color'))-->style="background-color:#{$oDocument->get('title_color')};"<!--@end--> onchange="this.style.backgroundColor=this.options[this.selectedIndex].style.backgroundColor;">
<option value="" style="background-color:#FFFFFF;">{$lang->title_color}</option> <option value="" style="background-color:#FFFFFF;">{$lang->title_color}</option>
<!--@foreach($_color as $_col)--> <!--@foreach($_color as $_col)-->
<option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}</option> <option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}</option>
<!--@endforeach--> <!--@endforeach-->
</select></dd> </select></dd>
<dd> <dd>
<input type="checkbox" name="title_bold" id="title_bold" value="Y" <!--@if($oDocument->get('title_bold')=='Y')-->checked="checked"<!--@end--> /> <input type="checkbox" name="title_bold" id="title_bold" value="Y" <!--@if($oDocument->get('title_bold')=='Y')-->checked="checked"<!--@end--> />
<label for="title_bold">{$lang->title_bold}</label> <label for="title_bold">{$lang->title_bold}</label>
</dd> </dd>
<dd> <dd>
<input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" /> <input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" />
<label for="is_notice">{$lang->notice}</label> <label for="is_notice">{$lang->notice}</label>
</dd> </dd>
<dd> <dd>
<input type="checkbox" name="lock_comment" value="Y" <!--@if($oDocument->isLocked())-->checked="checked"<!--@end--> id="lock_comment" /> <input type="checkbox" name="lock_comment" value="Y" <!--@if($oDocument->isLocked())-->checked="checked"<!--@end--> id="lock_comment" />
<label for="lock_comment">{$lang->lock_comment}</label> <label for="lock_comment">{$lang->lock_comment}</label>
</dd> </dd>
<!--@endif--> <!--@endif-->
<dd> <dd>
<input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" /> <input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
<label for="is_secret">{$lang->secret}</label> <label for="is_secret">{$lang->secret}</label>
</dd> </dd>
<dd> <dd>
<input type="checkbox" name="allow_comment" value="Y" <!--@if($oDocument->allowComment())-->checked="checked"<!--@end--> id="allow_comment" /> <input type="checkbox" name="allow_comment" value="Y" <!--@if($oDocument->allowComment())-->checked="checked"<!--@end--> id="allow_comment" />
<label for="allow_comment">{$lang->allow_comment}</label> <label for="allow_comment">{$lang->allow_comment}</label>
</dd> </dd>
<dd> <dd>
<input type="checkbox" name="allow_trackback" value="Y" <!--@if($oDocument->allowTrackback())-->checked="checked"<!--@end--> id="allow_trackback" /> <input type="checkbox" name="allow_trackback" value="Y" <!--@if($oDocument->allowTrackback())-->checked="checked"<!--@end--> id="allow_trackback" />
<label for="allow_trackback">{$lang->allow_trackback}</label> <label for="allow_trackback">{$lang->allow_trackback}</label>
</dd> </dd>
<!--@if($is_logged)--> <!--@if($is_logged)-->
<dd> <dd>
<input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" /> <input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
<label for="notify_message">{$lang->notify}</label> <label for="notify_message">{$lang->notify}</label>
</dd> </dd>
<!--@end--> <!--@end-->
</dl> </dl>
<!--@if($module_info->extra_vars)--> <!--@if($module_info->extra_vars)-->
<table cellspacing="0" summary="" class="extraVarsList"> <table cellspacing="0" summary="" class="extraVarsList">
<col width="150" /> <col width="150" />
<col /> <col />
<!--@foreach($module_info->extra_vars as $key => $val)--> <!--@foreach($module_info->extra_vars as $key => $val)-->
<!--@if($val->name)--> <!--@if($val->name)-->
<tr> <tr>
<th scope="row">{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></th> <th scope="row">{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></th>
<td><!--#include("./extra_var_form.html")--></td> <td><!--#include("./extra_var_form.html")--></td>
</tr> </tr>
<!--@endif--> <!--@endif-->
<!--@endforeach--> <!--@endforeach-->
</table> </table>
<!--@endif--> <!--@endif-->
<div class="editor">{$oDocument->getEditor()}</div> <div class="editor">{$oDocument->getEditor()}</div>
<div class="tag"> <div class="tag">
<input type="text" name="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" /> <input type="text" name="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" />
<p class="info">{$lang->about_tag}</p> <p class="info">{$lang->about_tag}</p>
</div> </div>
</div> </div>
<div class="fl gap1"> <div class="fl gap1">
<!--@if($is_logged)--> <!--@if($is_logged)-->
<span class="button"><input type="button" value="{$lang->cmd_temp_save}" onclick="doDocumentSave(this); return false;" /></span> <span class="button"><input type="button" value="{$lang->cmd_temp_save}" onclick="doDocumentSave(this); return false;" /></span>
<span class="button"><input type="button" value="{$lang->cmd_load}" onclick="doDocumentLoad(this); return false;" /></span> <span class="button"><input type="button" value="{$lang->cmd_load}" onclick="doDocumentLoad(this); return false;" /></span>
<!--@end--> <!--@end-->
</div> </div>
<div class="fr gap1"> <div class="fr gap1">
<span class="button"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'" /></span> <span class="button"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'" /></span>
<span class="button"><input type="button" value="{$lang->cmd_preview}" onclick="doDocumentPreview(this); return false;" /></span> <span class="button"><input type="button" value="{$lang->cmd_preview}" onclick="doDocumentPreview(this); return false;" /></span>
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span> <span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</div> </div>
<div class="clear"></div> <div class="clear"></div>
</form> </form>
<!--#include("footer.html")--> <!--#include("_footer.html")-->